X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_ObjSelector.h;h=63cf857d6a491f94cf2a19aa59de82f68ee89449;hb=f34b90e9e4e02ba65419134d5d37a2e42aecfabf;hp=7327df516017f2cbb64f01df7297e69048297342;hpb=0b4df27e9f347d6187dbf30bacf80b45c21813d4;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_ObjSelector.h b/src/HYDROGUI/HYDROGUI_ObjSelector.h index 7327df51..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,13 +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; @@ -51,8 +73,12 @@ protected slots: private: HYDROGUI_Module* myModule; + ObjectKind myObjectKind; + QToolButton* myBtn; QLineEdit* myObjName; + + int myObjectFlags; }; #endif