]> SALOME platform Git repositories - modules/yacs.git/blob - src/genericgui/ValueDelegate.hxx
Salome HOME
mergefrom branch BR_V511_PR tag mergeto_trunk_03feb09
[modules/yacs.git] / src / genericgui / ValueDelegate.hxx
1 //  Copyright (C) 2006-2008  CEA/DEN, EDF R&D
2 //
3 //  This library is free software; you can redistribute it and/or
4 //  modify it under the terms of the GNU Lesser General Public
5 //  License as published by the Free Software Foundation; either
6 //  version 2.1 of the License.
7 //
8 //  This library is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 //  Lesser General Public License for more details.
12 //
13 //  You should have received a copy of the GNU Lesser General Public
14 //  License along with this library; if not, write to the Free Software
15 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 #ifndef _VALUEDELEGATE_HXX
20 #define _VALUEDELEGATE_HXX
21
22 #include "CaseSwitch.hxx"
23
24 #include <QItemDelegate>
25 #include <QModelIndex>
26 #include <QObject>
27 #include <QLineEdit>
28 #include <QSpinBox>
29 #include <QVariant>
30 #include <set>
31
32 namespace YACS
33 {
34   namespace HMI
35   {
36     class Subject;
37     class ValueDelegate;
38
39     class GenericEditor
40     {
41     public:
42       GenericEditor();
43       virtual ~GenericEditor();
44       virtual void setSubject(Subject* subject);
45       virtual void setColumn(int column);
46       virtual void setDelegate(const ValueDelegate* delegate);
47       virtual QString GetStrValue();
48       virtual Subject* getSubject();
49       virtual int getColumnInSubject();
50       virtual void setData(QVariant val);
51       virtual bool firstSetData();
52     protected:
53       Subject* _subject;
54       int _column;
55       const ValueDelegate* _delegate;
56       bool _first;
57     };
58
59     class GeneralEditor: public QLineEdit, public GenericEditor
60     {
61       Q_OBJECT
62       
63     public:
64       GeneralEditor(Subject* subject,
65                     const ValueDelegate* delegate,
66                     int column = 0,
67                     QWidget* parent = 0);
68       virtual ~GeneralEditor();
69       virtual QString GetStrValue();
70       virtual void setData(QVariant val);
71     };
72
73     class IntEditor: public QSpinBox, public GenericEditor
74     {
75       Q_OBJECT
76       
77     public:
78       IntEditor(Subject* subject,
79                 const ValueDelegate* delegate,
80                 int column = 0,
81                 QWidget* parent = 0);
82       virtual ~IntEditor();
83       virtual QString GetStrValue();
84       virtual void setData(QVariant val);
85     };
86
87     class CaseSwitchEditor: public CaseSwitch, public GenericEditor
88     {
89       Q_OBJECT
90
91     public:
92       CaseSwitchEditor(Subject* subject,
93                        const ValueDelegate* delegate,
94                        int column = 0,
95                        QWidget* parent = 0);
96       virtual ~CaseSwitchEditor();
97       virtual QString GetStrValue();
98       virtual void setData(QVariant val);
99     };
100
101     class ValueDelegate : public QItemDelegate
102     {
103       Q_OBJECT
104       
105     public:
106       ValueDelegate(QObject *parent = 0);
107       virtual ~ValueDelegate();
108       
109       virtual QWidget *createEditor(QWidget *parent,
110                                     const QStyleOptionViewItem &option,
111                                     const QModelIndex &index) const;
112       
113       virtual void setEditorData(QWidget *editor,
114                                  const QModelIndex &index) const;
115       virtual void setModelData(QWidget *editor,
116                                 QAbstractItemModel *model,
117                                 const QModelIndex &index) const;
118       
119       virtual void updateEditorGeometry(QWidget *editor,
120                                         const QStyleOptionViewItem &option,
121                                         const QModelIndex &index) const;
122       virtual void setResultEditing(QWidget *editor, bool isOk);
123
124     protected:
125       mutable std::map<Subject*, std::string> _errorMap;
126
127     };
128   }
129 }
130 #endif