My Project  0.0.16
QUCS Mapping
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
vasettingsdialog.h
Go to the documentation of this file.
1 /***************************************************************************
2  vasettingsdialog.h
3  --------------------
4  begin : Sun Oct 26 2009
5  copyright : (C) 2009 by Stefan Jahn
6  email : stefa@lkcc.org
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef VASETTINGSDIALOG_H
19 #define VASETTINGSDIALOG_H
20 
21 #include <qdialog.h>
22 #include <qregexp.h>
23 
24 class TextDoc;
25 class QLineEdit;
26 class QPushButton;
27 class QRegExpValidator;
28 class QLabel;
29 class QCheckBox;
30 class QButtonGroup;
31 
32 class VASettingsDialog : public QDialog {
33 Q_OBJECT
34 public:
37 
38  QLineEdit * IconEdit, * OutputEdit, * NameEdit, * ShortDescEdit,
39  * LongDescEdit;
40  QPushButton * BrowseButt;
41  QLabel * IconButt;
42  QCheckBox * RecreateCheck;
43  QButtonGroup * toggleGroupDev, * toggleGroupTyp;
44 
45 private slots:
46  void slotOk ();
47  void slotBrowse ();
48 
49 private:
50  TextDoc * Doc;
51  QRegExp Expr;
52  QRegExpValidator * Validator;
53 };
54 
55 #endif