Salome HOME
MPV: fix for nug IPAL13251
[modules/geom.git] / src / GEOMToolsGUI / GEOMToolsGUI_TransparencyDlg.h
index fbcc4efcd0b73514bcabb2f6ac8225d93273ff5f..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
 //
 //
 //
 #ifndef DIALOGBOX_TRANSPARENCYDLG_H
 #define DIALOGBOX_TRANSPARENCYDLG_H
 
-#include <qvariant.h>
 #include <qdialog.h>
-
-/* #include "SALOME_Selection.h" */
-/* #include "SALOME_InteractiveObject.hxx" */
-/* #include "GEOM_InteractiveObject.hxx" */
-/* #include "GEOM_AISShape.hxx" */
-
-#include "GEOMBase.h"
-
-
-class QVBoxLayout;
-class QHBoxLayout;
-class QGridLayout;
-class QFrame;
-class QLabel;
-class QPushButton;
+#if defined WNT && defined WIN32 && defined SALOME_WNT_EXPORTS
+#define GEOMTOOLSGUI_WNT_EXPORT __declspec( dllexport )
+#else
+#define GEOMTOOLSGUI_WNT_EXPORT
+#endif
 class QSlider;
 
-
-
 //=================================================================================
 // class    : GEOMBase_TransparencyDlg
 // purpose  :
 //          : WARNING : that is a MODAL dialog.
 //=================================================================================
-class GEOMBase_TransparencyDlg : public QDialog
+class GEOMTOOLSGUI_WNT_EXPORT GEOMToolsGUI_TransparencyDlg : public QDialog
 { 
     Q_OBJECT
 
 public:
-    GEOMBase_TransparencyDlg( QWidget* parent = 0,
-                                const char* name = 0,
-                                SALOME_Selection* Sel = 0,
-                                const Handle(AIS_InteractiveContext)& ic = 0,
-                                bool modal = TRUE,
-                                WFlags fl = 0 );
+  GEOMToolsGUI_TransparencyDlg( QWidget* parent );    
+  ~GEOMToolsGUI_TransparencyDlg();
 
-    ~GEOMBase_TransparencyDlg();
+private:
+  void      keyPressEvent(QKeyEvent*);
 
 private :
-
-    GEOMContext*                     myGeomGUI ;     /* Current GeomGUI object     */
-    GEOMBase*                     myGeomBase ;     /* Current GeomGUI object     */
-    bool                             myFirstInit ;   /* Inform for the first init  */
-    SALOME_Selection*                mySel;          /* User selection             */
-    Handle(AIS_InteractiveContext)   myIc ;          /* Interactive context        */
-    
-    QPushButton* buttonOk;
-    QLabel* TextLabelOpaque;
-    QLabel* TextLabelTransparent;
-    QSlider* Slider1;
-
-public slots:
-      
-    void ClickOnOk();
-    void ClickOnClose();
-    void ValueHasChanged( int newValue ) ;
+  bool      myFirstInit ;   /* Inform for the first init  */
+  QSlider*  mySlider; 
+  QString   myHelpFileName;
+
+private slots: 
+  void      ClickOnOk();
+  void      ClickOnClose();
+  void      ClickOnHelp();
+  void      ValueHasChanged( int ) ;
     
-protected:
-    QGridLayout* GEOMBase_TransparencyDlgLayout;
-    QHBoxLayout* Layout1;
-    QHBoxLayout* Layout2;
 };
 
 #endif // DIALOGBOX_TRANSPARENCYDLG_H