Salome HOME
MPV: fix for nug IPAL13251
[modules/geom.git] / src / GEOMToolsGUI / GEOMToolsGUI_TransparencyDlg.h
index e0dff7b5bb6626465ccae544fd4d07a815d7aca4..44e6bda8366c8167badcb3578b4e9c0b85789006 100644 (file)
@@ -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
 //
 //
 //
 #define DIALOGBOX_TRANSPARENCYDLG_H
 
 #include <qdialog.h>
-
+#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 ) ;
     
 };