blob: 32a9e9098edd8e1b6162cd07dc93e2d615c81312 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef _KNUMINPUTTEST_H
#define _KNUMINPUTTEST_H
#include <tqwidget.h>
class KIntNumInput;
class KDoubleNumInput;
class TopLevel : public TQWidget
{
Q_OBJECT
public:
TopLevel( TQWidget *parent=0, const char *name=0 );
protected:
KIntNumInput* i1, *i2, *i3, *i4, *i5, *i6, *i7;
KDoubleNumInput* d1, *d2, *d3, *d4, *d5, *d6, *d7;
protected slots:
void slotPrint( int );
void slotPrint( double );
};
#endif
|