X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_TwoImagesDlg.h;h=5f9522664c3e884009ee329203c5681691e4d76b;hb=de7cf9bb0a7a41d6487013c87f4a54d0664cd303;hp=e9d38d53a4d44ee49ded02396bd94a558b83fa6b;hpb=0b4df27e9f347d6187dbf30bacf80b45c21813d4;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_TwoImagesDlg.h b/src/HYDROGUI/HYDROGUI_TwoImagesDlg.h index e9d38d53..5f952266 100644 --- a/src/HYDROGUI/HYDROGUI_TwoImagesDlg.h +++ b/src/HYDROGUI/HYDROGUI_TwoImagesDlg.h @@ -25,6 +25,8 @@ #include "HYDROGUI_InputPanel.h" +class QCheckBox; +class QLabel; class QLineEdit; class QRadioButton; @@ -35,22 +37,51 @@ class HYDROGUI_TwoImagesDlg : public HYDROGUI_InputPanel { Q_OBJECT +public: + enum Mode { TwoImages = 0, ImageAndPolyline }; + public: HYDROGUI_TwoImagesDlg( HYDROGUI_Module* theModule, const QString& theTitle ); virtual ~HYDROGUI_TwoImagesDlg(); void reset(); + void setMode( const int theMode, const bool theIsEdit ); + + bool isModifySelected() const; + void setImageName( const QString& theName ); QString getImageName() const; - bool getSelectedImages( QString& theName1, - QString& theName2 ) const; + void setSelectedObjects( const QString& theName1, + const QString& theName2 ); + bool getSelectedObjects( QString& theName1, + QString& theName2 ) const; + + void setPreselectedObject( const QString& theName ); + + void setColor( const QColor& theColor ); + QColor getColor() const; + +protected slots: + void onModifySelectedImage( bool theState ); private: + int myMode; + bool myIsEdit; + QLineEdit* myImageName; + QCheckBox* myModifySelectedImage; + + QLabel* myImage1Label; HYDROGUI_ObjSelector* myImage1; + + QLabel* myImage2Label; HYDROGUI_ObjSelector* myImage2; + + QLabel* myPolylineLabel; + HYDROGUI_ObjSelector* myPolyline; + QRadioButton* myTransparent; QRadioButton* myColor; HYDROGUI_ColorWidget* myColorBox;