X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_ObjComboBox.h;h=5f983c44acfd78d85ea9b3cbbfc9b92d9d19d978;hb=fce3f1240b6161d7cb837344078e5943b90eca65;hp=0cb5ca386cc1d12b7a37a4f6a53216190a15ee1e;hpb=065b0e007bb1d8d2b4962cfea24d3d476522e028;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_ObjComboBox.h b/src/HYDROGUI/HYDROGUI_ObjComboBox.h index 0cb5ca38..5f983c44 100644 --- a/src/HYDROGUI/HYDROGUI_ObjComboBox.h +++ b/src/HYDROGUI/HYDROGUI_ObjComboBox.h @@ -1,12 +1,8 @@ -// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE -// -// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// +// Copyright (C) 2014-2015 EDF-R&D // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either -// version 2.1 of the License. +// version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -24,12 +20,10 @@ #define HYDROGUI_OBJCOMBOBOX_H #include - -#include +#include class HYDROGUI_Module; class HYDROGUI_ObjComboBoxFilter; - class SUIT_SelectionMgr; class HYDROGUI_ObjComboBox : public QWidget @@ -48,10 +42,12 @@ public: void setObjectFilter( HYDROGUI_ObjComboBoxFilter* ); QString selectedObject() const; - void setSectedObject( const QString& ); + void setSelectedObject( const QString& ); void reset(); + Handle( HYDROData_Entity ) GetObject() const; + signals: void objectSelected( const QString& ); @@ -59,8 +55,10 @@ private slots: void onSelectionChanged(); void onIndexChanged( int ); + void updateSelection(); + protected: - QStringList objectNames() const; + QStringList objectNames( HYDROData_SequenceOfObjects& ) const; SUIT_SelectionMgr* selectionMgr() const; private: @@ -68,6 +66,7 @@ private: QComboBox* myObject; HYDROGUI_Module* myModule; HYDROGUI_ObjComboBoxFilter* myFilter; + HYDROData_SequenceOfObjects myObjects; }; class HYDROGUI_ObjComboBoxFilter @@ -76,6 +75,7 @@ public: HYDROGUI_ObjComboBoxFilter() {}; virtual ~HYDROGUI_ObjComboBoxFilter() {}; + virtual bool isActive( HYDROGUI_ObjComboBox* ) const { return true; }; virtual bool isOk( const Handle(HYDROData_Entity)& ) const = 0; };