QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RHeaderDialog.h
Go to the documentation of this file.
1 #ifndef RHEADERDIALOG_H_
2 #define RHEADERDIALOG_H_
3 
4 #include <QDialog>
5 #include <QMetaType>
6 
14 class RHeaderDialog: public QDialog {
15  Q_OBJECT
16 
17 public:
18  RHeaderDialog(QWidget* parent=0);
19  virtual ~RHeaderDialog();
20 
21  static RHeaderDialog *createHeaderDialog(const QString &basePath, const QString &uiFile, QWidget *parent = NULL);
22 
23  void setTitle(const QString &title);
24  void setText(const QString &text, bool error = false);
25 };
26 
28 
29 #endif