summaryrefslogtreecommitdiffstats
path: root/kdeprint/tests/drawdemo.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdeprint/tests/drawdemo.h')
-rw-r--r--kdeprint/tests/drawdemo.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/kdeprint/tests/drawdemo.h b/kdeprint/tests/drawdemo.h
deleted file mode 100644
index 963da64db..000000000
--- a/kdeprint/tests/drawdemo.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef DRAWDEMO_H
-#define DRAWDEMO_H
-
-//
-// DrawView has installable draw routines, just add a function pointer
-// and a text in the table above.
-//
-
-class DrawView : public TQWidget
-{
- Q_OBJECT
-public:
- DrawView();
- ~DrawView();
-public slots:
- void updateIt( int );
- void printIt();
-protected:
- void drawIt( TQPainter * );
- void paintEvent( TQPaintEvent * );
- void resizeEvent( TQResizeEvent * );
-private:
- KPrinter *printer;
- TQButtonGroup *bgroup;
- QPushButton *print;
- int drawindex;
- int maxindex;
-};
-
-#endif