API Documentation
Loading...
Searching...
No Matches
FontEditor.h
Go to the documentation of this file.
1#pragma once
2#include "DLLInfo.h"
3#include <NDEVR/String.h>
4#include <QWidget>
5namespace Ui
6{
7 class FontEditorUI;
8}
9namespace NDEVR
10{
11 struct Font;
12 class NDEVR_WIDGETS_API FontEditor : public QWidget
13 {
14 Q_OBJECT
15 public:
16 FontEditor(QWidget* parent);
17 void setFont(const Font& font);
18 void setFontID(const String& app_font);
19 Font getFont() const;
20 protected slots:
21 void fontEditedSlot();
22 signals:
23 void fontEdited();
24 protected:
25 Ui::FontEditorUI* ui;
27 };
28}
#define NDEVR_WIDGETS_API
Definition DLLInfo.h:81
Definition FontEditor.h:13
Ui::FontEditorUI * ui
Definition FontEditor.h:25
String m_app_font
Definition FontEditor.h:26
Definition String.h:40
Definition ACIColor.h:37
Definition FontEditor.h:6
Definition Font.h:41