Salome HOME
New Help for KERNEL & GUI.
[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   Descr: Salome help about dialog
15 */
16
17 class QLabel;
18
19 class SALOMEAPP_EXPORT SalomeApp_AboutDlg : public QtxDialog
20 {
21   Q_OBJECT
22
23 public:
24   SalomeApp_AboutDlg( const QString&, const QString&, QWidget* = 0 );
25   virtual ~SalomeApp_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