summaryrefslogtreecommitdiffabout
path: root/kmicromail/settingsdialog.h
blob: b168226a06aff3ea2edd8258404496616e3f5f86 (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, Qt::WFlags fl = 0 );
    ~SettingsDialog();

private:
    void readConfig();
    void writeConfig();
    QFont mAppFont, mComposeFont, mReadFont;

private slots:   
    void accept();


};



#endif