Salome HOME
0055f285ace434005140a9b792027470c460141f
[modules/yacs.git] / src / genericgui / EditionScript.hxx
1 // Copyright (C) 2006-2014  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, or (at your option) any later version.
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 class FormContainer;
29
30 #if HAS_QSCI4>0
31 class QsciScintilla;
32 #endif
33
34 namespace YACS
35 {
36   namespace HMI
37   {
38     class EditionScript: public EditionElementaryNode
39     {
40       Q_OBJECT
41
42     public slots:
43       virtual void onApply();
44       virtual void onCancel();
45       virtual void onScriptModified();
46       virtual void onEdit();
47       virtual void on_tb_options_toggled(bool checked);
48       virtual void on_remote_toggled(bool checked);
49       virtual void fillContainerPanel();
50       virtual void changeContainer(int);
51       virtual void update(GuiEvent event, int type, Subject* son);
52
53     public:
54       EditionScript(Subject* subject,
55                   QWidget* parent = 0,
56                   const char* name = 0);
57       virtual ~EditionScript();
58       virtual void synchronize();
59
60     protected:
61       SubjectInlineNode *_subInlineNode;
62
63 #if HAS_QSCI4>0
64       QsciScintilla* _sci;
65 #else
66       QTextEdit* _sci;
67 #endif
68       QVBoxLayout* _glayout;
69       QVBoxLayout* _portslayout;
70       QPushButton* _editor;
71       bool _checked;
72       bool _remote;
73       QFrame *fr_options;
74       QFrame *fr_container;
75       ComboBox* cb_container;
76       QRadioButton* radiolocal;
77       QRadioButton* radioremote;
78       FormContainer* formcontainer;
79     };
80   }
81 }
82 #endif