Salome HOME
9ccaafd3576cde1a0504db9fb44b2b3f225bd1be
[modules/gui.git] / src / LightApp / LightApp_PreferencesDlg.h
1 // File:      LightApp_PreferencesDlg.h
2 // Author:    Sergey TELKOV
3
4 #ifndef LIGHTAPP_PREFERENCESDLG_H
5 #define LIGHTAPP_PREFERENCESDLG_H
6
7 #include <LightApp.h>
8
9 #include <QtxDialog.h>
10
11 class LightApp_Preferences;
12
13 class LIGHTAPP_EXPORT LightApp_PreferencesDlg : public QtxDialog
14 {
15   Q_OBJECT
16
17 public:
18   LightApp_PreferencesDlg( LightApp_Preferences*, QWidget* = 0 );
19   virtual ~LightApp_PreferencesDlg();
20
21   virtual void          show();
22   virtual void          accept();
23   virtual void          reject();
24
25 private slots:
26   void                  onHelp();
27   void                  onApply();
28
29 private:
30   LightApp_Preferences* myPrefs;
31 };
32
33 #endif