summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/gui/viewmodebutton.h
blob: 48f0e6768cb0f0d35af93e81909f74729ebf696e (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
/*
 * GPLv2 only
 * zecke@handhelds.org
 */

#ifndef PHUNK_VIEW_MODE_BUTTON_H
#define PHUNK_VIEW_MODE_BUTTON_H

#include <qpe/resource.h>

#include <qtoolbutton.h>

class ViewModeButton : public QToolButton {
    Q_OBJECT
public:
    ViewModeButton( QToolBar*,int def=1 );
    ~ViewModeButton();

signals:
    void changeMode( int );
private slots:
    void slotChange( int i );
};

#endif