]> Shamusworld >> Repos - architektonas/blob - src/widgets/qg_scrollbar.cpp
Initial import
[architektonas] / src / widgets / qg_scrollbar.cpp
1 // qg_scrollbar.cpp
2 //
3 // Originally part of QCad Community Edition by Andrew Mustun
4 // Extensively rewritten and refactored by James L. Hammons
5 // (C) 2010 Underground Software
6 //
7 // JLH = James L. Hammons <jlhamm@acm.org>
8 //
9 // Who  When        What
10 // ---  ----------  -----------------------------------------------------------
11 // JLH  05/08/2010  Moved implementation from header to this file. :-)
12 //
13
14 // This class seems worse than useless to me; probably will end up removing it
15 // at some point. :-P
16
17 #include "qg_scrollbar.h"
18
19 QG_ScrollBar::QG_ScrollBar(QWidget * parent/*= 0*/, const char */*name = 0*/):
20 //      QScrollBar(parent, name)
21         QScrollBar(parent)
22 {
23 }
24
25 QG_ScrollBar::QG_ScrollBar(Qt::Orientation orientation, QWidget * parent/*= 0*/, const char */*name = 0*/):
26 //      QScrollBar(orientation, parent, name)
27         QScrollBar(orientation, parent)
28 {
29 }
30
31 void QG_ScrollBar::slotWheelEvent(QWheelEvent * e)
32 {
33         wheelEvent(e);
34 }