Qucs-GUI  0.0.18
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
filldialog.h
Go to the documentation of this file.
1 /***************************************************************************
2  filldialog.h - description
3  -------------------
4  begin : Thu May 20 2004
5  copyright : (C) 2003 by Michael Margraf
6  email : michael.margraf@alumni.tu-berlin.de
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 FILLDIALOG_H
19 #define FILLDIALOG_H
20 
21 #include <QDialog>
22 #include <QLabel>
23 #include <QVBoxLayout>
24 
25 class QVBoxLayout;
26 class QLabel;
27 class QIntValidator;
28 class QCheckBox;
29 class QComboBox;
30 class QPushButton;
31 class QLineEdit;
32 
37 class FillDialog : public QDialog {
38 Q_OBJECT
39 public:
40  FillDialog(const QString& _Caption, bool show=true, QWidget *parent=0);
41  ~FillDialog();
42 
43 public slots:
44  void slotCheckFilled(bool on);
45 
46 private slots:
47  void slotSetColor();
48  void slotSetFillColor();
49 
50 public:
52  QCheckBox *CheckFilled;
53  QLineEdit *LineWidth;
54  QPushButton *ColorButt, *FillColorButt;
55  QComboBox *StyleBox, *FillStyleBox;
56 
57  QVBoxLayout *all;
58  QIntValidator *val100;
59 };
60 
61 #endif
QIntValidator * val100
Definition: filldialog.h:58
QVBoxLayout * all
Definition: filldialog.h:57
QCheckBox * CheckFilled
Definition: filldialog.h:52
FillDialog(const QString &_Caption, bool show=true, QWidget *parent=0)
Definition: filldialog.cpp:33
QLineEdit * LineWidth
Definition: filldialog.h:53
void slotCheckFilled(bool on)
Definition: filldialog.cpp:156
QLabel * FillLabel1
Definition: filldialog.h:51
QPushButton * FillColorButt
Definition: filldialog.h:54
QPushButton * ColorButt
Definition: filldialog.h:54
QLabel * FillLabel2
Definition: filldialog.h:51
QComboBox * StyleBox
Definition: filldialog.h:55
void slotSetFillColor()
Definition: filldialog.cpp:148
void slotSetColor()
Definition: filldialog.cpp:141
QComboBox * FillStyleBox
Definition: filldialog.h:55