Salome HOME
new presentation using DTM
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ProfileDlg.h
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #ifndef HYDROGUI_PROFILEDLG_H
20 #define HYDROGUI_PROFILEDLG_H
21
22 #include "HYDROGUI_ViewerDlg.h"
23
24 #include <AIS_InteractiveContext.hxx>
25
26 class CurveCreator_Widget;
27 class CurveCreator_ICurve;
28 class OCCViewer_ViewManager;
29 class SUIT_ViewWindow;
30 class QGroupBox;
31 class QLineEdit;
32 class QLabel;
33
34 class HYDROGUI_ProfileDlg : public HYDROGUI_ViewerDlg
35 {
36   Q_OBJECT
37
38 public:
39   HYDROGUI_ProfileDlg( HYDROGUI_Module* theModule, const QString& theTitle );
40   virtual ~HYDROGUI_ProfileDlg();
41
42   void  setProfileName( const QString& theName );
43   QString getProfileName() const;
44         
45   void  setProfile( CurveCreator_ICurve* theProfile );
46
47   void  reset();
48
49   QList<int> getSelectedSections();
50
51   void  deleteSelected();
52   bool  deleteEnabled();
53
54 protected slots:
55   void processStartedSubOperation( QWidget*, bool );
56   void processFinishedSubOperation( QWidget* );
57
58 signals:
59   void                  createPreview( QString );
60   void                  selectionChanged();
61   void                  widgetCreated(QWidget*);
62   void                  subOperationStarted(QWidget*);
63   void                  subOperationFinished(QWidget*);
64
65 protected:
66   virtual Handle(AIS_Trihedron) trihedron();
67
68 private:
69   QLineEdit*             myName;
70   CurveCreator_Widget*   myEditorWidget;
71   QGroupBox*             myAddElementBox;
72 };
73
74 #endif