Salome HOME
b221a81e9ea5a9b387929fa54d7538caff0a58bd
[modules/visu.git] / src / VISUGUI / VisuGUI_ShrinkFactorDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : VisuGUI_ShrinkFactorDlg.h
23 //  Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
24 //
25
26 #ifndef VISUGUI_SHRINKFACTORDLG_H
27 #define VISUGUI_SHRINKFACTORDLG_H
28
29 // QT Includes
30 #include <QDialog>
31
32 class QLabel;
33 class QPushButton;
34 class QSpinBox;
35 class QGroupBox;
36 class LightApp_SelectionMgr;
37 class SalomeApp_Module;
38 class SVTK_Selector;
39 class SVTK_ViewWindow;
40 class VisuGUI;
41
42 //=================================================================================
43 // class    : VisuGUI_ShrinkFactorDlg
44 // purpose  :
45 //=================================================================================
46 class VisuGUI_ShrinkFactorDlg : public QDialog
47
48   Q_OBJECT
49
50 public:
51   VisuGUI_ShrinkFactorDlg( VisuGUI* = 0, 
52                            bool modal = false );
53
54   ~VisuGUI_ShrinkFactorDlg();
55
56 private:
57   void                    keyPressEvent( QKeyEvent* );
58
59 private :
60   LightApp_SelectionMgr*  mySelectionMgr;
61   SVTK_ViewWindow*        myViewWindow;
62   const SalomeApp_Module* myModule;
63
64   QGroupBox*              GroupC1;
65   QPushButton*            buttonOk;
66   QPushButton*            buttonHelp;
67   QLabel*                 ValueLab;
68   QSpinBox*               ValueSpin;
69
70 public slots:
71   void help(); 
72   void setShrinkFactor();
73   void onSelectionChanged();
74 };
75
76 #endif // VISUGUI_SHRINKFACTORDLG_H