My Project  0.0.16
QUCS Mapping
 All Classes Namespaces 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.h>
22 
23 class QVBoxLayout;
24 class QLabel;
25 class QIntValidator;
26 class QCheckBox;
27 class QComboBox;
28 class QPushButton;
29 class QLineEdit;
30 
35 class FillDialog : public QDialog {
36 Q_OBJECT
37 public:
38  FillDialog(const QString& _Caption, bool show=true, QWidget *parent=0);
39  ~FillDialog();
40 
41 public slots:
42  void slotCheckFilled(bool on);
43 
44 private slots:
45  void slotSetColor();
46  void slotSetFillColor();
47 
48 public:
50  QCheckBox *CheckFilled;
51  QLineEdit *LineWidth;
52  QPushButton *ColorButt, *FillColorButt;
53  QComboBox *StyleBox, *FillStyleBox;
54 
55  QVBoxLayout *all;
56  QIntValidator *val100;
57 };
58 
59 #endif