Last change
on this file since 111 was 2, checked in by Rick van der Zwet, 15 years ago |
Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)
|
-
Property svn:executable
set to
*
|
File size:
751 bytes
|
Line | |
---|
1 | #ifndef STAPELGROUPBOX_H
|
---|
2 | #define STAPELGROUPBOX_H
|
---|
3 |
|
---|
4 | #include <qgroupbox.h>
|
---|
5 |
|
---|
6 | class QPushButton;
|
---|
7 | class QProgressBar;
|
---|
8 | class QLCDNumber;
|
---|
9 |
|
---|
10 | class StapelGroupBox : public QGroupBox
|
---|
11 | {
|
---|
12 | Q_OBJECT
|
---|
13 |
|
---|
14 | public:
|
---|
15 | StapelGroupBox( QWidget* parent = 0, const char* name = 0 );
|
---|
16 | ~StapelGroupBox();
|
---|
17 |
|
---|
18 |
|
---|
19 | QPushButton* stapelMin1PushButton;
|
---|
20 | QPushButton* stapelMin2PushButton;
|
---|
21 | QProgressBar* stapelProgressBar;
|
---|
22 | QLCDNumber* stapelLCDNumber;
|
---|
23 |
|
---|
24 | void setXY( int X , int Y );
|
---|
25 | void setCaption( int Number );
|
---|
26 | void setRange ( int Min, int Max );
|
---|
27 |
|
---|
28 | int stapelNumber;
|
---|
29 | int stapelAantal;
|
---|
30 | public slots:
|
---|
31 | void button1PressedSlot( );
|
---|
32 | void button2PressedSlot( );
|
---|
33 | signals:
|
---|
34 | void buttonPressed( int, int ); //stapelnummer,aantal
|
---|
35 | };
|
---|
36 |
|
---|
37 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.