File: spin.h

package info (click to toggle)
kdeutils 2%3A980312-6
  • links: PTS
  • area: contrib
  • in suites: hamm
  • size: 5,380 kB
  • ctags: 3,423
  • sloc: cpp: 17,658; ansic: 9,867; sh: 6,347; makefile: 2,060; awk: 378; sed: 111; perl: 108
file content (72 lines) | stat: -rw-r--r-- 1,870 bytes parent folder | download
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*

 $Id: spin.h,v 1.1.1.1 1997/06/30 14:11:34 kulow Exp $

 KNotes - Notes for the KDE Project
 Copyright (C) 1997 Bernd Johannes Wuebben
 
 wuebben@math.cornell.edu
 wuebben@kde.org

 This class is a modified version of a class found in:

 qtremind - an X windows appoint reminder program.
 Copyright (C) 1997  Tom Daley

 This program is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License
 as published by the Free Software Foundation; either version 2
 of the License, or (at your option) any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.


*/


#ifndef _BW_SPIN_H_
#define _BW_SPIN_H_


#include <qlabel.h>
#include <qpushbt.h>

class QtedSetInt : public QWidget {
   Q_OBJECT
   private:
      int _value;
      int _min, _max;
      int _format, _length;
      QTimer *_up_timer_p, *_dn_timer_p;
      QLabel *_label_p;
      QPushButton *_upButton_p, *_dnButton_p;

      void setText(void);
      void incValue(void);
      void decValue(void);
      void setSize(void);
   public:
      enum { ZeroFilled, Centered, RightJustified };
      QtedSetInt(int min, int max, int value, int format = Centered, 
                 QWidget *parent=0, const char *name=0);
      void value(int value);
      int value(void) { return (_value); }
   private slots:
      void upPressed();
      void upReleased();
      void dnPressed();
      void dnReleased();

      void upRepeat();
      void dnRepeat();
};

#endif