~ubuntu-branches/ubuntu/intrepid/digikam/intrepid

« back to all changes in this revision

Viewing changes to digikam/libs/widgets/common/statuszoombar.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2008-07-17 20:25:39 UTC
  • mfrom: (1.2.15 upstream) (3.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080717202539-6n7dtirbkoo7qvhd
Tags: 2:0.9.4-1
* New upstream release
  - digiKam 0.9.4 Release Plan (KDE3) ~ 13 July 08 (Closes: #490144)
* DEB_CONFIGURE_EXTRA_FLAGS := --without-included-sqlite3
* Debhelper compatibility level V7
* Install pixmaps in debian/*.install
* Add debian/digikam.lintian-overrides

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#ifndef STATUSSTATUSBAR_H
25
25
#define STATUSSTATUSBAR_H
26
26
 
 
27
// Qt includes.
 
28
 
 
29
#include <qslider.h>
 
30
#include <qevent.h>
 
31
 
27
32
// KDE includes.
28
33
 
29
34
#include <qhbox.h>
38
43
 
39
44
class StatusZoomBarPriv;
40
45
 
 
46
 
 
47
class DIGIKAM_EXPORT QSliderReverseWheel : public QSlider
 
48
{
 
49
 
 
50
public:
 
51
 
 
52
    QSliderReverseWheel(QWidget *parent=0);
 
53
    ~QSliderReverseWheel();
 
54
 
 
55
private:
 
56
 
 
57
    void wheelEvent(QWheelEvent *e);
 
58
};
 
59
 
 
60
// ----------------------------------------------------------------------
 
61
 
41
62
class DIGIKAM_EXPORT StatusZoomBar : public QHBox
42
63
{
43
64