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