kexi
kexisimpleprintingpart.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KEXISIMPLEPRINTINGPART_H
00021 #define KEXISIMPLEPRINTINGPART_H
00022
00023 #include <kexidialogbase.h>
00024 #include <kexistaticpart.h>
00025 #include <kexipartitem.h>
00026
00027 class KexiMainWin;
00028 namespace KexiDB
00029 {
00030 class QuerySchema;
00031 class Connection;
00032 }
00033
00034 class KexiProject;
00035
00037 class KexiSimplePrintingPart : public KexiPart::StaticPart
00038 {
00039 Q_OBJECT
00040
00041 public:
00042 KexiSimplePrintingPart();
00043 virtual ~KexiSimplePrintingPart();
00044
00045 protected:
00046 virtual KexiViewBase* createView(QWidget *parent, KexiDialogBase* dialog,
00047 KexiPart::Item &item, int viewMode, QMap<QString,QString>* staticObjectArgs);
00048 };
00049
00050 #endif
00051
|