summaryrefslogtreecommitdiffstats
path: root/tdeui/tests/knuminputtest.h
blob: e5d1c6d7fac7f53f69722af87abcdb31265ad608 (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
{
    TQ_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