blob: 042b69fc2857bbc0182ed9b489d15878545b6513 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#ifndef SETTINGS_DIALOG_H
#define SETTINGS_DIALOG_H
#include <qwidget.h>
#include <qfont.h>
#include "settingsdialogui.h"
class SettingsDialog : public SettingsDialogUI {
Q_OBJECT
public:
SettingsDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
~SettingsDialog();
private:
void readConfig();
void writeConfig();
QFont mAppFont, mComposeFont, mReadFont;
private slots:
void accept();
};
#endif
|