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

Last change on this file since 1249 was 1249, checked in by garnier, 14 years ago

Help update

  • Property svn:mime-type set to text/cpp
File size: 6.9 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.18 2010/04/26 15:46:00 lgarnier Exp $
28// GEANT4 tag $Name:  $
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  void InitHelpTree();
132  void FillHelpTree();
133  void ExitHelp();
134
135#if QT_VERSION < 0x040000
136  void CreateChildTree(QListViewItem*,G4UIcommandTree*);
137  QListViewItem* FindTreeItem(QListViewItem *,const QString&);
138#else
139  void CreateChildTree(QTreeWidgetItem*,G4UIcommandTree*);
140  QTreeWidgetItem* FindTreeItem(QTreeWidgetItem *,const QString&);
141#endif
142
143  QString GetCommandList(const G4UIcommand*);
144
145  G4bool GetHelpChoice(G4int&) ;// have to be implemeted because we heritate from G4VBasicShell
146  bool eventFilter(QObject*,QEvent*);
147  void ActivateCommand(G4String);
148  QMap<int,QString> LookForHelpStringInChildTree(G4UIcommandTree *,const QString&);
149
150  void CreateVisParametersTBWidget();
151  void CreateViewComponentsTBWidget();
152  void CreateHelpTBWidget();
153  void CreateCoutTBWidget();
154  void CreateHistoryTBWidget();
155  void OpenHelpTreeOnCommand(const QString &);
156  QString GetShortCommandPath(QString);
157#if QT_VERSION < 0x040000
158  QString GetLongCommandPath(QListViewItem*);
159#else
160  QString GetLongCommandPath(QTreeWidgetItem*);
161#endif
162
163private:
164
165  //  Widget form,shell,command,menuBar,text;
166  //  std::map<QAction*,G4String, std::less<QAction*> > commands;
167  //  static void commandEnteredCallback(Widget,XtPointer,XtPointer);
168  //  static void keyHandler(Widget,XtPointer,XEvent*,Boolean*);
169  QMainWindow * fMainWindow;
170  QLabel *fCommandLabel;
171  QLineEdit * fCommandArea;
172  QTextEdit *fCoutTBTextArea;
173  QTextEdit *fHelpArea;
174  QToolBox* fToolBox;
175  QStringList fG4cout;
176  QLineEdit * fCoutFilter;
177
178#if QT_VERSION < 0x040000
179  QListView *fHistoryTBTableList;
180  QListView *fHelpTreeWidget;
181#else
182  QListWidget *fHistoryTBTableList;
183  QTreeWidget *fHelpTreeWidget;
184#endif
185  QWidget* fHelpTBWidget;
186  QWidget* fHistoryTBWidget;
187  QWidget* fCoutTBWidget;
188  QWidget* fVisParametersTBWidget;
189  QWidget* fViewComponentsTBWidget;
190  QLineEdit* fHelpLine;
191  G4QTabWidget* fTabWidget;
192  QString fCoutText;
193  QLabel *fEmptyViewerTabLabel;
194  QSplitter * fMyVSplitter;
195  QSplitter * fHelpVSplitter;
196
197private slots :
198  void ExitSession();
199  void ClearButtonCallback();
200  void CommandEnteredCallback();
201  void ButtonCallback(const QString&);
202  void HelpTreeClicCallback();
203  void HelpTreeDoubleClicCallback();
204  void ShowHelpCallback();
205  void CommandHistoryCallback();
206  void LookForHelpStringCallback();
207  void UpdateTabWidget(int);
208  void ResizeTabWidget( QResizeEvent* );
209  void CoutFilterCallback(const QString&);
210  void TabCloseCallback(int);
211  void ToolBoxActivated(int);
212};
213
214#endif
215
216#endif
217
Note: See TracBrowser for help on using the repository browser.