X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_OrderedListWidget.h;h=d0ac12626a2134e7c6d19c12fe5a69c01395aef8;hb=dbee981213585cb317e098b0d2a288761cd3d37b;hp=e199fb7aae73a05fe3629589e0b122b5cd65a25e;hpb=b2233da52b04287386cc17b1c1d40b19fdbc13a7;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_OrderedListWidget.h b/src/HYDROGUI/HYDROGUI_OrderedListWidget.h index e199fb7a..d0ac1262 100644 --- a/src/HYDROGUI/HYDROGUI_OrderedListWidget.h +++ b/src/HYDROGUI/HYDROGUI_OrderedListWidget.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 @@ -42,19 +38,31 @@ class HYDRO_EXPORT HYDROGUI_OrderedListWidget : public QWidget Q_OBJECT public: - HYDROGUI_OrderedListWidget( QWidget* theParent ); + HYDROGUI_OrderedListWidget( QWidget* theParent, int theArrowIconSize = 32 ); virtual ~HYDROGUI_OrderedListWidget(); void setObjects( const HYDROGUI_ListModel::Object2VisibleList& theObjects ); HYDROGUI_ListModel::ObjectList getObjects() const; + void addObject( const HYDROGUI_ListModel::Object2Visible& theObject ); + void removeObjectByName( const QString& theObjectName ); + void setHiddenObjectsShown( const bool theIsToShow ); + void setVisibilityIconShown( const bool theIsToShow ); + + void setOrderingEnabled( const bool theIsToEnable ); QStringList getSelectedEntries() const; void setSelectedEntries( const QStringList& theEntries ) const; + QStringList getSelectedNames() const; + QStringList getAllNames() const; + + void undoLastMove(); + signals: void selectionChanged(); + void orderChanged(); private slots: void onMove( int theType ); @@ -62,6 +70,8 @@ private slots: private: HYDROGUI_ListModel* getSourceModel() const; + QModelIndexList getSelectedIndexes() const; + private: QListView* myList; ///< the list view QPushButton* myTop; ///< the move on top button @@ -70,6 +80,7 @@ private: QPushButton* myBottom; ///< the move on bottom button bool myIsHiddenObjectsShown; ///< defines whether to include hidden objects in the list + bool myIsVisibilityIconShown; ///< defines whether to show visibility icon (eye icon) }; #endif