Salome HOME
Final version of "Profile interpolation".
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ObjSelector.h
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef HYDROGUI_OBJSELECTOR_H
24 #define HYDROGUI_OBJSELECTOR_H
25
26 #include <HYDROData_Object.h>
27
28 #include <QAbstractButton>
29
30 class QToolButton;
31 class QLineEdit;
32 class HYDROGUI_Module;
33
34 class HYDROGUI_ObjSelector : public QAbstractButton
35 {
36   Q_OBJECT
37
38 public:
39   enum ObjectFlags {
40     NoFlags        = 0x00000000,
41     ClosedPolyline = 0x00000001
42   };
43
44 public:
45   HYDROGUI_ObjSelector( HYDROGUI_Module* theModule,
46                         const ObjectKind theObjectKind,
47                         QWidget* theParent, 
48                         const int theObjectFlags = NoFlags );
49   virtual ~HYDROGUI_ObjSelector();
50
51   void Clear();
52   void SetChecked( const bool );
53
54   void SetName( const QString& );
55   QString GetName() const;
56
57 signals:
58   /** Signal is emitted if the name has already been selected 
59    *  in other selector of the same parent widget. 
60    * @param theName the selected object name
61    */
62   void alreadySelected( const QString& theName );
63
64   void selectionChanged();
65
66 protected:
67   virtual void paintEvent( QPaintEvent* );
68   virtual bool hitButton( const QPoint& thePnt ) const;
69
70 protected slots:
71   void OnToggled( bool );
72   void OnSelectionChanged();
73
74 private:
75   HYDROGUI_Module* myModule;
76   ObjectKind myObjectKind;
77
78   QToolButton* myBtn;
79   QLineEdit* myObjName;
80
81   int myObjectFlags;
82 };
83
84 #endif