summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/gui/viewmodebutton.h
blob: 16378880dd7fd580f93c48c6937643fcadc99599 (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 <opie2/oresource.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