LibrePCB Developers Documentation
strokefontpool.h
Go to the documentation of this file.
1/*
2 * LibrePCB - Professional EDA for everyone!
3 * Copyright (C) 2013 LibrePCB Developers, see AUTHORS.md for contributors.
4 * https://librepcb.org/
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef LIBREPCB_CORE_STROKEFONTPOOL_H
21#define LIBREPCB_CORE_STROKEFONTPOOL_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include "strokefont.h"
27
28#include <QtCore>
29
30#include <memory>
31
32/*******************************************************************************
33 * Namespace / Forward Declarations
34 ******************************************************************************/
35namespace librepcb {
36
37class FileSystem;
38
39/*******************************************************************************
40 * Class StrokeFontPool
41 ******************************************************************************/
42
46class StrokeFontPool final {
47 Q_DECLARE_TR_FUNCTIONS(StrokeFontPool)
48
49public:
50 // Constructors / Destructor
51 explicit StrokeFontPool(const FileSystem& directory) noexcept;
52 StrokeFontPool(const StrokeFontPool& other) = delete;
53 ~StrokeFontPool() noexcept;
54
55 // Getters
56 bool exists(const QString& filename) const noexcept;
57 const StrokeFont& getFont(const QString& filename) const;
58
59 // Operator Overloadings
60 StrokeFontPool& operator=(const StrokeFontPool& rhs) noexcept;
61
62private: // Data
63 QHash<QString, std::shared_ptr<StrokeFont>> mFonts;
64};
65
66/*******************************************************************************
67 * End of File
68 ******************************************************************************/
69
70} // namespace librepcb
71
72#endif
Base class / interface for all file system implementations.
Definition: filesystem.h:45
The StrokeFont class.
Definition: strokefont.h:56
The StrokeFontPool class.
Definition: strokefontpool.h:46
StrokeFontPool(const StrokeFontPool &other)=delete
QHash< QString, std::shared_ptr< StrokeFont > > mFonts
Definition: strokefontpool.h:63
const StrokeFont & getFont(const QString &filename) const
Definition: strokefontpool.cpp:66
StrokeFontPool(const FileSystem &directory) noexcept
Definition: strokefontpool.cpp:38
~StrokeFontPool() noexcept
Definition: strokefontpool.cpp:55
bool exists(const QString &filename) const noexcept
Definition: strokefontpool.cpp:62
Definition: occmodel.cpp:77