]> Shamusworld >> Repos - architektonas/blob - src/mainapp/qc_dialogfactory.h
Fixed problem with MDI activation.
[architektonas] / src / mainapp / qc_dialogfactory.h
1 #ifndef QC_DIALOGFACTORY_H
2 #define QC_DIALOGFACTORY_H
3
4 #include "qg_dialogfactory.h"
5
6 /**
7  * This is the QCad specific implementation of a widget which can create and
8  * show dialogs. Some functions cannot be implemented on the
9  * qcadguiqt library level and need to be implemented here,
10  * on the application level.
11  */
12 class QC_DialogFactory: public QG_DialogFactory
13 {
14         public:
15                 QC_DialogFactory(QWidget * parent, QToolBar * ow);
16                 virtual ~QC_DialogFactory();
17
18                 virtual void requestEditBlockWindow(BlockList * blockList = NULL);
19                 virtual void closeEditBlockWindow(Block * block = NULL);
20 };
21
22 #endif