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