CuteHMI - Graphical User Interface (CuteHMI.GUI.1)
Fonts.hpp
1#ifndef H_EXTENSIONS_CUTEHMI_GUI_1_INCLUDE_CUTEHMI_GUI_FONTS_HPP
2#define H_EXTENSIONS_CUTEHMI_GUI_1_INCLUDE_CUTEHMI_GUI_FONTS_HPP
3
4#include "internal/common.hpp"
5
6#include <QObject>
7#include <QFont>
8#include <QQmlEngine>
9
10namespace cutehmi {
11namespace gui {
12
13class CUTEHMI_GUI_API Fonts:
14 public QObject
15{
16 Q_OBJECT
17 QML_NAMED_ELEMENT(Fonts)
18
19 public:
23 Q_PROPERTY(QFont monospace READ monospace WRITE setMonospace NOTIFY monospaceChanged RESET resetMonospace)
24
25
28 Q_PROPERTY(QFont standard READ standard WRITE setStandard NOTIFY standardChanged RESET resetStandard)
29
30 Fonts(QObject * parent = nullptr);
31
32 QFont monospace() const;
33
34 void setMonospace(QFont monospace);
35
36 void resetMonospace();
37
38 QFont standard() const;
39
40 void setStandard(QFont standard);
41
42 void resetStandard();
43
44 signals:
46
48
49 protected:
50 QFont & DefaultMonospace();
51
52 QFont & DefaultStandard();
53
54 private:
55 struct Members {
56 QFont monospace;
57 QFont standard;
58 };
59
61};
62
63}
64}
65
66#endif
67
68//(c)C: Copyright © 2020-2022, Michał Policht <michal@policht.pl>. All rights reserved.
69//(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
70//(c)C: This file is a part of CuteHMI.
71//(c)C: CuteHMI is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
72//(c)C: CuteHMI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
73//(c)C: You should have received a copy of the GNU Lesser General Public License along with CuteHMI. If not, see <https://www.gnu.org/licenses/>.
74//(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
75//(c)C: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
76//(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
77//(c)C: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Definition: Fonts.hpp:15