source: trunk/source/interfaces/basic/include/G4UIQt.hh@ 1238

Last change on this file since 1238 was 1237, checked in by garnier, 16 years ago

debug mode

  • Property svn:mime-type set to text/cpp
File size: 6.7 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
27// $Id: G4UIQt.hh,v 1.17 2010/01/06 14:13:08 lgarnier Exp $
28// GEANT4 tag $Name: laurent-QtUI_with_tabs_v1 $
29//
30#ifndef G4UIQt_h
31#define G4UIQt_h
32
33#if defined(G4UI_BUILD_QT_SESSION) || defined(G4UI_USE_QT)
34
35#include <map>
36
37#include "G4VBasicShell.hh"
38#include "G4VInteractiveSession.hh"
39
40#include <qobject.h>
41#include <qmap.h>
42#include <qstringlist.h>
43#include <qtabwidget.h>
44
45class QMainWindow;
46class QLineEdit;
47class G4UIsession;
48#if QT_VERSION < 0x040000
49class QListView;
50class QListViewItem;
51#else
52class QListWidget;
53class QTreeWidget;
54class QTreeWidgetItem;
55#endif
56class QTextEdit;
57class QLabel;
58class QResizeEvent;
59class QToolBox;
60class QStringList;
61class QSplitter;
62
63// Class description :
64//
65// G4UIQt : class to handle a Qt interactive session.
66// G4UIQt is the Qt version of G4UIterminal.
67//
68// A command box is at disposal for entering/recalling Geant4 commands.
69// A menubar could be customized through the AddMenu, AddButton methods.
70// Note that there are corresponding Geant4 commands to add a
71// menus in the menubar and add buttons in a menu.
72// Ex :
73// /gui/addMenu test Test
74// /gui/addButton test Init /run/initialize
75// /gui/addButton test "Set gun" "/control/execute gun.g4m"
76// /gui/addButton test "Run one event" "/run/beamOn 1"
77//
78// Command completion, by typing "tab" key, is available on the
79// command line.
80//
81// Class description - end :
82
83class G4QTabWidget : public QTabWidget {
84public :
85 G4QTabWidget();
86 G4QTabWidget(QSplitter*&);
87 void paintEvent ( QPaintEvent * event );
88 inline void setTabSelected() { tabSelected = true; };
89 inline void unselectTab() { tabSelected = false; };
90 inline bool isTabSelected() { return tabSelected; };
91 bool tabSelected;
92};
93
94class G4UIQt : public QObject, public G4VBasicShell, public G4VInteractiveSession {
95 Q_OBJECT
96
97public: // With description
98 G4UIQt(int,char**);
99 // (argv, argc) or (0, NULL) had to be given.
100 G4UIsession* SessionStart();
101 // To enter interactive X loop ; waiting/executing command,...
102 void AddMenu(const char*,const char*);
103 // To add a pulldown menu in the menu bar.
104 // First argument is the name of the menu.
105 // Second argument is the label of the cascade button.
106 // Ex : AddMenu("my_menu","My menu")
107 void AddButton(const char*,const char*,const char*);
108 // To add a push button in a pulldown menu.
109 // First argument is the name of the menu.
110 // Second argument is the label of the button.
111 // Third argument is the Geant4 command executed when the button is fired.
112 // Ex : AddButton("my_menu","Run","/run/beamOn 1");
113
114 bool AddTabWidget(QWidget*,QString,int,int);
115 // To add a tab for vis openGL Qt driver
116
117 bool IsSplitterReleased();
118
119public:
120 ~G4UIQt();
121 void Prompt(G4String);
122 void SessionTerminate();
123 void PauseSessionStart(G4String);
124 G4int ReceiveG4cout(G4String);
125 G4int ReceiveG4cerr(G4String);
126 // G4String GetCommand(Widget);
127
128private:
129 void SecondaryLoop(G4String); // a VIRER
130 void CreateHelpWidget();
131#if QT_VERSION < 0x040000
132 QListView * CreateHelpTree();
133#else
134 QTreeWidget * CreateHelpTree();
135#endif
136 void ExitHelp();
137
138#if QT_VERSION < 0x040000
139 void CreateChildTree(QListViewItem*,G4UIcommandTree*);
140 QListViewItem* FindTreeItem(QListViewItem *,const QString&);
141#else
142 void CreateChildTree(QTreeWidgetItem*,G4UIcommandTree*);
143 QTreeWidgetItem* FindTreeItem(QTreeWidgetItem *,const QString&);
144#endif
145
146 QString GetCommandList(const G4UIcommand*);
147
148 G4bool GetHelpChoice(G4int&) ;// have to be implemeted because we heritate from G4VBasicShell
149 bool eventFilter(QObject*,QEvent*);
150 void ActivateCommand(G4String);
151 QMap<int,QString> LookForHelpStringInChildTree(G4UIcommandTree *,const QString&);
152
153 void CreateVisParametersTBWidget();
154 void CreateViewComponentsTBWidget();
155 void CreateHelpTBWidget();
156 void CreateCoutTBWidget();
157 void CreateHistoryTBWidget();
158 void OpenHelpTreeOnCommand(const QString &);
159
160private:
161
162 // Widget form,shell,command,menuBar,text;
163 // std::map<QAction*,G4String, std::less<QAction*> > commands;
164 // static void commandEnteredCallback(Widget,XtPointer,XtPointer);
165 // static void keyHandler(Widget,XtPointer,XEvent*,Boolean*);
166 QMainWindow * fMainWindow;
167 QLabel *fCommandLabel;
168 QLineEdit * fCommandArea;
169 QTextEdit *fCoutTBTextArea;
170 QTextEdit *fHelpArea;
171 QToolBox* fToolBox;
172 QStringList fG4cout;
173 QLineEdit * fCoutFilter;
174
175#if QT_VERSION < 0x040000
176 QListView *fHistoryTBTableList;
177 QListView *fHelpTreeWidget;
178#else
179 QListWidget *fHistoryTBTableList;
180 QTreeWidget *fHelpTreeWidget;
181#endif
182 QWidget* fHelpTBWidget;
183 QWidget* fHistoryTBWidget;
184 QWidget* fCoutTBWidget;
185 QWidget* fVisParametersTBWidget;
186 QWidget* fViewComponentsTBWidget;
187 QLineEdit* helpLine;
188 G4QTabWidget* fTabWidget;
189 QString fCoutText;
190
191private slots :
192 void ExitSession();
193 void ClearButtonCallback();
194 void CommandEnteredCallback();
195 void ButtonCallback(const QString&);
196 void HelpTreeClicCallback();
197 void HelpTreeDoubleClicCallback();
198 void ShowHelpCallback();
199 void CommandHistoryCallback();
200 void LookForHelpStringCallback();
201 void UpdateTabWidget(int);
202 void ResizeTabWidget( QResizeEvent* );
203 void CoutFilterCallback(const QString&);
204};
205
206#endif
207
208#endif
209
Note: See TracBrowser for help on using the repository browser.