blob: f43939d78b09bd6ba7fa367f6a34d66d21c2742c (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
//
// C++ Interface: k9settings
//
// Description:
//
//
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2006
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef K9SETTINGS_H
#define K9SETTINGS_H
#include "k9common.h"
#include "kconfigdlg.h"
#include "k9prefdvd.h"
#include "k9prefmpeg4.h"
#include "k9prefmencoder.h"
#include "k9prefpreview.h"
#include "k9prefauthor.h"
#include <kdialogbase.h>
/**
@author Jean-Michel PETIT <k9copy@free.fr>
*/
class k9settings:public KDialogBase{
Q_OBJECT
TQ_OBJECT
public:
k9settings(TQWidget *parent,const TQString &caption);
virtual ~k9settings();
private:
kConfigDlg *m_configDlg;
k9prefDVD *m_prefDVD;
k9prefMPEG4 *m_prefMPEG4;
k9prefMencoder *m_prefMencoder;
k9prefPreview *m_prefPreview;
k9prefAuthor *m_prefAuthor;
private slots:
void slotOkClicked();
void slotApplyClicked();
};
#endif
|