blob: bd6e9006c18165be59e75a994b8a69b380d57072 (
plain)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2006 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/
#ifndef CSRCOLLBUTTON_H
#define CSRCOLLBUTTON_H
#include <qwidget.h>
#include <qtoolbutton.h>
class QMouseEvent;
/** This Class implements the direct chooser button used in the KeyChooser Widget
* @author The BibleTime team
*/
class CScrollButton : public QToolButton {
Q_OBJECT
public:
/**
* The constructor
*/
CScrollButton(QWidget *parent=0, const char *name=0);
const bool isLocked() const;
signals:
/**
* is emitted when the button enters locked state
*/
void lock()
;
/**
* is emitted when the button leaves locked state
*/
void unlock();
/**
* indicates a change the user made by moving the mouse
* @param count the number of items to be changed in the KeyChooser ComboBox
*/
void change_requested(int count);
protected slots:
/*
* used to process the button press events
*/
void was_pressed();
/**
* used to process the button release events
*/
void was_released();
protected:
/**
* Reimplementation from @ref QWidget#mouseMoveEvent - processes
* the mouse move events
*/
virtual void mouseMoveEvent( QMouseEvent* e );
/**
* used to find the lock point - the middle of the button
* @return the lock point
*/
const QPoint get_lock_Point() const;
/**
* If the wheel of the mouse is used while the mouse stays over our scrollbutton the content is
* scrolled like the mouse was pressed and moved.
*/
virtual void wheelEvent( QWheelEvent* e );
private:
/**
* Indicates whether the button is in locked state or not
*/
bool m_isLocked;
/**
* stores the lock point
*/
QPoint lock_Point;
};
#endif
|