X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_TwoImagesDlg.h;h=76dbe97c99f4950445095ab25571370ea8f77bed;hb=a1431f03eac1d1aed4203d0568d987c41ce939b3;hp=441a0ad6d40f2f5de9ada612bc06de3c764cd183;hpb=3769dbcedaa689e15ad79a619acd6f8bc21f47c6;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_TwoImagesDlg.h b/src/HYDROGUI/HYDROGUI_TwoImagesDlg.h index 441a0ad6..76dbe97c 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,18 +37,61 @@ 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(); - QString GetName() const; - void GetSelectedImages( QString& theEntry1, QString& theEntry2 ) const; + void reset(); + + void setMode( const int theMode, const bool theIsEdit ); + + bool isModifySelected() const; + + void setImageName( const QString& theName ); + QString getImageName() 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; + +signals: + /** Signal is emitted if the name has already been selected + * in other selector of the same parent widget. + * @param theName the selected object name + */ + void alreadySelected( const QString& theName ); + +protected slots: + void onModifySelectedImage( bool theState ); private: - QLineEdit* myName; - HYDROGUI_ObjSelector *myImage1, *myImage2; - QRadioButton *myTransparent, *myColor; - HYDROGUI_ColorWidget* myColorBox; + 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; }; #endif