source: liacs/pm/qt-nim/stapelGroupBox.h@ 63

Last change on this file since 63 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: 729 bytes
Line 
1#ifndef STAPELGROUPBOX_H
2#define STAPELGROUPBOX_H
3
4#include <qgroupbox.h>
5
6class QPushButton;
7class QProgressBar;
8class QLCDNumber;
9
10class StapelGroupBox : public QGroupBox
11{
12 Q_OBJECT
13
14public:
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
30public slots:
31 void button1PressedSlot( );
32 void button2PressedSlot( );
33signals:
34 void buttonPressed( int, int ); //stapelnummer,aantal
35};
36
37#endif
Note: See TracBrowser for help on using the repository browser.