]> Shamusworld >> Repos - architektonas/blob - src/mainapp/qc_graphicview.h
066f06f9168abb3937432e26783691df37c2af28
[architektonas] / src / mainapp / qc_graphicview.h
1 #ifndef QC_GRAPHICVIEW_H
2 #define QC_GRAPHICVIEW_H
3
4 #include <QtCore>
5
6 // Q*G*_graphicview... How retarded is this...
7 //very
8 #include "qg_graphicview.h"
9
10 class RS_Document;
11
12 /**
13  * A view widget for the visualisation of drawings.
14  * Very thin wrapper for QCad specific settings.
15  *
16  * @author Andrew Mustun
17  */
18 class QC_GraphicView: public QG_GraphicView
19 {
20         public:
21                 QC_GraphicView(RS_Document * doc, QWidget * parent = 0);
22                 virtual ~QC_GraphicView();
23
24                 virtual void drawIt();
25
26         private:
27                 //RS_Document* document;
28 };
29
30 #endif