source: trunk/Taper/src/pref.h@ 5399

Last change on this file since 5399 was 4307, checked in by merck, 20 years ago
new project
File size: 990 bytes
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
14class TaperPrefPageOne;
15class TaperPrefPageTwo;
16
17class TaperPreferences : public KDialogBase
18{
19 Q_OBJECT
20public:
21 TaperPreferences();
22
23private:
24 TaperPrefPageOne *m_pageOne;
25 TaperPrefPageTwo *m_pageTwo;
26};
27
28class TaperPrefPageOne : public QFrame
29{
30 Q_OBJECT
31public:
32 TaperPrefPageOne(QWidget *parent = 0);
33};
34
35class TaperPrefPageTwo : public QFrame
36{
37 Q_OBJECT
38public:
39 TaperPrefPageTwo(QWidget *parent = 0);
40};
41
42#endif // _TAPERPREF_H_
Note: See TracBrowser for help on using the repository browser.