X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_ZLevelsDlg.h;h=466b6042a470f8d618b59be7d9cc6e4e5beb43ab;hb=81c9f5cdf82909d0aebd2c491c50fa7516cc80b7;hp=2ca17ef2a07041c022f90f60e81d3c8f6391bad3;hpb=d07d7ebf5fa5f6a479971cf7d7e56034c6e31db3;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_ZLevelsDlg.h b/src/HYDROGUI/HYDROGUI_ZLevelsDlg.h index 2ca17ef2..466b6042 100644 --- a/src/HYDROGUI/HYDROGUI_ZLevelsDlg.h +++ b/src/HYDROGUI/HYDROGUI_ZLevelsDlg.h @@ -23,39 +23,43 @@ #ifndef HYDROGUI_ZLEVELSPANEL_H #define HYDROGUI_ZLEVELSPANEL_H +#include "HYDROGUI_ListModel.h" + #include +class HYDROGUI_OrderedListWidget; +class HYDROGUI_Module; + class QCheckBox; -class QListView; class QPushButton; + /** * \class HYDROGUI_ZLevelsDlg - * \brief The class representing widget for managing Z levels + * \brief The class representing dialog for managing Z levels */ -class HYDROGUI_ZLevelsDlg : public QDialog +class HYDRO_EXPORT HYDROGUI_ZLevelsDlg : public QDialog { Q_OBJECT public: - HYDROGUI_ZLevelsDlg( QWidget* theParent ); + HYDROGUI_ZLevelsDlg( QWidget* theParent, HYDROGUI_Module* theModule ); virtual ~HYDROGUI_ZLevelsDlg(); - void setObjects( const QList& theObjects ); + void setObjects( const HYDROGUI_ListModel::Object2VisibleList& theObjects ); + HYDROGUI_ListModel::ObjectList getObjects() const; + +signals: + void applyOrder(); private slots: - void onMove( int theType ); - void OnStateChanged(); + void onStateChanged(); private: - QListView* myList; - QPushButton* myTop; - QPushButton* myUp; - QPushButton* myDown; - QPushButton* myBottom; - QCheckBox* myAllObjects; - QPushButton* myApply; - QPushButton* myClose; + HYDROGUI_OrderedListWidget* myListWidget; ///< the ordered list widget + QCheckBox* myAllObjects; ///< the show all objects button + QPushButton* myApply; ///< the apply changes button + QPushButton* myClose; ///< the close dialog button }; #endif