X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_DataObject.h;h=6ffeaa1eed17ecf1a0e33710bbba4258d8174289;hb=f34b90e9e4e02ba65419134d5d37a2e42aecfabf;hp=6ea1038d70d820e7cee5abb4a1be76197eee187e;hpb=abe63c42525c9299302649cdb5dcff4f83368c26;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_DataObject.h b/src/HYDROGUI/HYDROGUI_DataObject.h index 6ea1038d..6ffeaa1e 100644 --- a/src/HYDROGUI/HYDROGUI_DataObject.h +++ b/src/HYDROGUI/HYDROGUI_DataObject.h @@ -47,7 +47,12 @@ public: //! Column id enum { RefObjectId = RefEntryId + 1, //!< Ref.Object column - BathymetryId //!< Bathymetry column + AltitudeObjId //!< Altitude column + }; + + //! Role + enum { + IsInOperationRole = Qtx::AppropriateRole + 100 //!< Filter value role }; /** @@ -55,10 +60,12 @@ public: * \param theParent parent data object * \param theData reference to the corresponding object from data structure * \param theParentEntry entry of the parent data object (for reference objects) + * \param theIsInOperation if true then the tree is used for a browser within an operation, it is false by default */ - HYDROGUI_DataObject( SUIT_DataObject* theParent, + HYDROGUI_DataObject( SUIT_DataObject* theParent, Handle(HYDROData_Entity) theData, - const QString& theParentEntry ); + const QString& theParentEntry, + const bool theIsInOperation = false ); /** * Returns the unique object identifier string. @@ -80,6 +87,21 @@ public: */ virtual QFont font( const int = SUIT_DataObject::NameId ) const; + /** + * Returns the object color. + */ + virtual QColor color( const ColorRole, const int = NameId ) const; + + /** + * Returns the object icon. + */ + virtual QPixmap icon( const int = NameId ) const; + + /** + * Returns true if renaming is allowed for the object. + */ + virtual bool renameAllowed( const int = NameId ) const; + /** * Returns the model data object. */ @@ -100,20 +122,31 @@ public: */ static QString dataObjectEntry( const Handle(HYDROData_Entity)& theObject, const bool theWithPrefix = true ); + /** + * Sets the validity flag: if object is valid or not. + * \param theIsValid is true for valid objects, false for invalid + */ + void setIsValid( const bool theIsValid ); /** - * Returns the text for the specified column. + * Returns the validity flag: is object valid or not + * \return false if object is not valid */ - virtual QString text( const int = NameId ) const; + bool isValid() const; /** - * Returns the color for the specified column. + * Returns the usage within active operation flag: + * is the object is used in the local tree of an active operation dialog or not. + * \return false if the object is used in the main object browser tree */ - virtual QColor color( const ColorRole, const int = NameId ) const; + bool isInOperation() const { return myIsInOperation; } protected: Handle(HYDROData_Entity) myData; ///< object from data model QString myParentEntry; + bool myIsValid; ///< indicates if the object is valid + bool myIsInOperation; ///< indicates if the object is used within an active operation + QPixmap myIcon; }; /** @@ -132,10 +165,12 @@ public: * Constructor. * \param theParent parent data object * \param theName displayed name + * \param theIsInOperation if true then the tree is used for a browser within an operation, it is false by default */ HYDROGUI_NamedObject( SUIT_DataObject* theParent, - const QString& theName, - const QString& theParentEntry ); + const QString& theName, + const QString& theParentEntry, + const bool theIsInOperation = false ); /** * Returns the unique object identifier string. @@ -147,9 +182,50 @@ public: */ virtual QString name() const; + /** + * Returns the font of displayed object name. + */ + virtual QFont font( const int = SUIT_DataObject::NameId ) const; + + /** + * Returns the object icon. + */ + virtual QPixmap icon( const int = NameId ) const; + + /** + * Returns the usage within active operation flag: + * is the object is used in the local tree of an active operation dialog or not. + * \return false if the object is used in the main object browser tree + */ + bool isInOperation() const { return myIsInOperation; } + private: QString myName; ///< name in the OB QString myParentEntry; + QPixmap myIcon; + bool myIsInOperation; ///< indicates if the object is used within an active operation +}; + +/** + * \brief Module data object, used for dropping items in the object browser. + * + * It inherits NamedObject with only difference - it accepts dropping. + */ +class HYDROGUI_DropTargetObject : public HYDROGUI_NamedObject +{ +public: + /** + * Constructor. + * \param theParent parent data object + * \param theName displayed name + * \param theIsInOperation if true then the tree is used for a browser within an operation, it is false by default + */ + HYDROGUI_DropTargetObject( SUIT_DataObject* theParent, + const QString& theName, + const QString& theParentEntry, + const bool theIsInOperation = false ); + + bool isDropAccepted() const { return true; } }; #endif