X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FGEOMToolsGUI%2FGEOMToolsGUI_TransparencyDlg.h;h=44e6bda8366c8167badcb3578b4e9c0b85789006;hb=8d94e7dd809e3c7663fa15591cf79a04968b9f39;hp=e0dff7b5bb6626465ccae544fd4d07a815d7aca4;hpb=732211808796539fcf1de34e06038e7fb015ece9;p=modules%2Fgeom.git diff --git a/src/GEOMToolsGUI/GEOMToolsGUI_TransparencyDlg.h b/src/GEOMToolsGUI/GEOMToolsGUI_TransparencyDlg.h index e0dff7b5b..44e6bda83 100644 --- a/src/GEOMToolsGUI/GEOMToolsGUI_TransparencyDlg.h +++ b/src/GEOMToolsGUI/GEOMToolsGUI_TransparencyDlg.h @@ -17,7 +17,7 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // // // @@ -30,7 +30,11 @@ #define DIALOGBOX_TRANSPARENCYDLG_H #include - +#if defined WNT && defined WIN32 && defined SALOME_WNT_EXPORTS +#define GEOMTOOLSGUI_WNT_EXPORT __declspec( dllexport ) +#else +#define GEOMTOOLSGUI_WNT_EXPORT +#endif class QSlider; //================================================================================= @@ -38,7 +42,7 @@ class QSlider; // purpose : // : WARNING : that is a MODAL dialog. //================================================================================= -class GEOMToolsGUI_TransparencyDlg : public QDialog +class GEOMTOOLSGUI_WNT_EXPORT GEOMToolsGUI_TransparencyDlg : public QDialog { Q_OBJECT @@ -46,13 +50,18 @@ public: GEOMToolsGUI_TransparencyDlg( QWidget* parent ); ~GEOMToolsGUI_TransparencyDlg(); +private: + void keyPressEvent(QKeyEvent*); + private : bool myFirstInit ; /* Inform for the first init */ QSlider* mySlider; + QString myHelpFileName; -private slots: +private slots: void ClickOnOk(); void ClickOnClose(); + void ClickOnHelp(); void ValueHasChanged( int ) ; };