Vesna
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
CustomStyledDialog.h
Go to the documentation of this file.
1 #ifndef CUSTOMSTYLEDDIALOG_H
2 #define CUSTOMSTYLEDDIALOG_H
3 
4 #include <QDialog>
5 
11 class CustomStyledDialog : public QDialog
12 {
13 protected:
14  explicit CustomStyledDialog( QWidget *parent = 0 );
15  virtual ~CustomStyledDialog();
16 
17  virtual void paintEvent( QPaintEvent */*event*/ );
18 };
19 
20 #endif // CUSTOMSTYLEDDIALOG_H
CustomStyledDialog(QWidget *parent=0)
Definition: CustomStyledDialog.cpp:6
The CustomStyledDialog class use this class for custom styled dialogs bc QT has bug and do not paint ...
Definition: CustomStyledDialog.h:11
virtual ~CustomStyledDialog()
Definition: CustomStyledDialog.cpp:12
virtual void paintEvent(QPaintEvent *)
Definition: CustomStyledDialog.cpp:17