X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_ObjSelector.h;h=63cf857d6a491f94cf2a19aa59de82f68ee89449;hb=f34b90e9e4e02ba65419134d5d37a2e42aecfabf;hp=b3e1019e62de7484b45a35788e03c686f4dace4a;hpb=d6aeef5b61d85b44493cd5d93ed9870cc513e68f;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_ObjSelector.h b/src/HYDROGUI/HYDROGUI_ObjSelector.h index b3e1019e..63cf857d 100644 --- a/src/HYDROGUI/HYDROGUI_ObjSelector.h +++ b/src/HYDROGUI/HYDROGUI_ObjSelector.h @@ -23,6 +23,8 @@ #ifndef HYDROGUI_OBJSELECTOR_H #define HYDROGUI_OBJSELECTOR_H +#include + #include class QToolButton; @@ -34,11 +36,33 @@ class HYDROGUI_ObjSelector : public QAbstractButton Q_OBJECT public: - HYDROGUI_ObjSelector( HYDROGUI_Module* theModule, QWidget* theParent ); + enum ObjectFlags { + NoFlags = 0x00000000, + ClosedPolyline = 0x00000001 + }; + +public: + HYDROGUI_ObjSelector( HYDROGUI_Module* theModule, + const ObjectKind theObjectKind, + QWidget* theParent, + const int theObjectFlags = NoFlags ); virtual ~HYDROGUI_ObjSelector(); + void Clear(); + void SetChecked( const bool ); + + void SetName( const QString& ); QString GetName() 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 ); + + void selectionChanged(); + protected: virtual void paintEvent( QPaintEvent* ); virtual bool hitButton( const QPoint& thePnt ) const; @@ -49,8 +73,12 @@ protected slots: private: HYDROGUI_Module* myModule; + ObjectKind myObjectKind; + QToolButton* myBtn; QLineEdit* myObjName; + + int myObjectFlags; }; #endif