X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_ZLevelsDlg.h;h=217cfba9f099bd5eaaa4054f3e7a154516af2756;hb=7bc13643f345b813472c30c65307ea78c12df428;hp=6d249784d0c866adbc2981164c0398f2454535be;hpb=c8f802c68e6dd3e0c7b41897fc45d812e4b523ed;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_ZLevelsDlg.h b/src/HYDROGUI/HYDROGUI_ZLevelsDlg.h index 6d249784..217cfba9 100644 --- a/src/HYDROGUI/HYDROGUI_ZLevelsDlg.h +++ b/src/HYDROGUI/HYDROGUI_ZLevelsDlg.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 @@ -23,45 +19,45 @@ #ifndef HYDROGUI_ZLEVELSPANEL_H #define HYDROGUI_ZLEVELSPANEL_H -#include "HYDROGUI_ZLevelsModel.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 HYDROGUI_ZLevelsModel::Object2VisibleList& theObjects ); - HYDROGUI_ZLevelsModel::ObjectList getObjects() const; + void setObjects( const HYDROGUI_ListModel::Object2VisibleList& theObjects ); + HYDROGUI_ListModel::ObjectList getObjects() const; -private slots: - void onMove( int theType ); - void OnStateChanged(); +signals: + void applyOrderAndClose(); + void applyOrder(); -private: - HYDROGUI_ZLevelsModel* getListSourceModel() const; +private slots: + 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* myApplyAndClose; ///< the apply changes and close dialog button + QPushButton* myApply; ///< the apply changes button + QPushButton* myClose; ///< the close dialog button }; #endif