GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
QRootDialog.h
Go to the documentation of this file.
1 // $Id: QRootDialog.h 1196 2014-04-10 14:06:24Z linev $
2 //-----------------------------------------------------------------------
3 // The GSI Online Offline Object Oriented (Go4) Project
4 // Experiment Data Processing at EE department, GSI
5 //-----------------------------------------------------------------------
6 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH
7 // Planckstr. 1, 64291 Darmstadt, Germany
8 // Contact: http://go4.gsi.de
9 //-----------------------------------------------------------------------
10 // This software can be used under the license agreements as stated
11 // in Go4License.txt file which is part of the distribution.
12 //-----------------------------------------------------------------------
13 
14 //Author : Denis Bertini 01.11.2000
15 
16 /**************************************************************************
17 * Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI *
18 * Planckstr. 1, 64291 Darmstadt, Germany *
19 * All rights reserved. *
20 * Contact: http://go4.gsi.de *
21 * *
22 * This software can be used under the license agreements as stated in *
23 * Go4License.txt file which is part of the distribution. *
24 ***************************************************************************/
25 
26 #ifndef QROOTDIALOG_H
27 #define QROOTDIALOG_H
28 
29 #include <QtCore/QVector>
30 #include <QDialog>
31 
32 class QLineEdit;
33 class QVBoxLayout;
34 
49 class QRootDialog: public QDialog {
50  Q_OBJECT
51 
52  public:
53  QRootDialog();
54 
55  void addArg(const char* argname, const char* value, const char* type);
56 
57  QString getArg(int n);
58 
59  protected:
60  QVBoxLayout *argLayout;
61 
62  QVector<QLineEdit*> fArgs;
63 };
64 
65 #endif
QVBoxLayout * argLayout
Definition: QRootDialog.h:60
QString getArg(int n)
Definition: QRootDialog.cpp:77
void addArg(const char *argname, const char *value, const char *type)
Definition: QRootDialog.cpp:63
QVector< QLineEdit * > fArgs
Definition: QRootDialog.h:62