Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/yacs.git] / src / genericgui / EditionScript.hxx
1 // Copyright (C) 2006-2012  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
20 #ifndef _EDITIONSCRIPT_HXX_
21 #define _EDITIONSCRIPT_HXX_
22
23 #include "yacsconfig.h"
24 #include "EditionElementaryNode.hxx"
25 #include "FormComponent.hxx"
26 #include <QRadioButton>
27
28 #if HAS_QSCI4>0
29 class QsciScintilla;
30 #endif
31
32 namespace YACS
33 {
34   namespace HMI
35   {
36     class EditionScript: public EditionElementaryNode
37     {
38       Q_OBJECT
39
40     public slots:
41       virtual void onApply();
42       virtual void onCancel();
43       virtual void onScriptModified();
44       virtual void onEdit();
45       virtual void on_tb_options_toggled(bool checked);
46       virtual void on_remote_toggled(bool checked);
47       virtual void fillContainerPanel();
48       virtual void changeContainer(int);
49       virtual void update(GuiEvent event, int type, Subject* son);
50
51     public:
52       EditionScript(Subject* subject,
53                   QWidget* parent = 0,
54                   const char* name = 0);
55       virtual ~EditionScript();
56       virtual void synchronize();
57
58     protected:
59       SubjectInlineNode *_subInlineNode;
60
61 #if HAS_QSCI4>0
62       QsciScintilla* _sci;
63 #else
64       QTextEdit* _sci;
65 #endif
66       QVBoxLayout* _glayout;
67       QVBoxLayout* _portslayout;
68       QPushButton* _editor;
69       bool _checked;
70       bool _remote;
71       QFrame *fr_options;
72       QFrame *fr_container;
73       ComboBox* cb_container;
74       QRadioButton* radiolocal;
75       QRadioButton* radioremote;
76     };
77   }
78 }
79 #endif