Line | |
---|
1 | /***************************************************************************
|
---|
2 | * Copyright (C) 2004 by Martin Merck *
|
---|
3 | * merck@astro.uni-wuerzburg.de *
|
---|
4 | *
|
---|
5 | * This software is part of the MAGIC software. *
|
---|
6 | ***************************************************************************/
|
---|
7 |
|
---|
8 | #ifndef _TAPERPREF_H_
|
---|
9 | #define _TAPERPREF_H_
|
---|
10 |
|
---|
11 | #include <kdialogbase.h>
|
---|
12 | #include <qframe.h>
|
---|
13 |
|
---|
14 | class TaperPrefPageOne;
|
---|
15 | class TaperPrefPageTwo;
|
---|
16 |
|
---|
17 | class TaperPreferences : public KDialogBase
|
---|
18 | {
|
---|
19 | Q_OBJECT
|
---|
20 | public:
|
---|
21 | TaperPreferences();
|
---|
22 |
|
---|
23 | private:
|
---|
24 | TaperPrefPageOne *m_pageOne;
|
---|
25 | TaperPrefPageTwo *m_pageTwo;
|
---|
26 | };
|
---|
27 |
|
---|
28 | class TaperPrefPageOne : public QFrame
|
---|
29 | {
|
---|
30 | Q_OBJECT
|
---|
31 | public:
|
---|
32 | TaperPrefPageOne(QWidget *parent = 0);
|
---|
33 | };
|
---|
34 |
|
---|
35 | class TaperPrefPageTwo : public QFrame
|
---|
36 | {
|
---|
37 | Q_OBJECT
|
---|
38 | public:
|
---|
39 | TaperPrefPageTwo(QWidget *parent = 0);
|
---|
40 | };
|
---|
41 |
|
---|
42 | #endif // _TAPERPREF_H_
|
---|
Note:
See
TracBrowser
for help on using the repository browser.