Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[modules/gui.git] / src / LightApp / LightApp_AboutDlg.h
1 // File:      LightApp_AboutDlg.h
2 // Created:   03.06.2005 13:49:25
3 // Author:    Sergey TELKOV
4 // Copyright (C) CEA 2005
5
6 #ifndef LIGHTAPP_ABOUTDLG_H
7 #define LIGHTAPP_ABOUTDLG_H
8
9 #include "LightApp.h"
10
11 #include <QtxDialog.h>
12
13 class QLabel;
14
15 /*!
16   \class LightApp_AboutDlg
17   LightApp help about dialog
18 */
19 class LIGHTAPP_EXPORT LightApp_AboutDlg : public QtxDialog
20 {
21   Q_OBJECT
22
23 public:
24   LightApp_AboutDlg( const QString&, const QString&, QWidget* = 0 );
25   virtual ~LightApp_AboutDlg();
26
27 protected:
28   virtual void mousePressEvent( QMouseEvent* );
29
30 private:
31   void checkLabel( QLabel* ) const;
32   void changeFont( QWidget*, const bool = false, const bool = false,
33                    const bool = false, const int = 0 ) const;
34 };
35
36 #endif