blob: 5d2412477a21bc901ec6ff520d31850f5618043d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#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 QWidget
{
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
|