summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/quick_button.h
blob: d3eb1bbc6193c9223b92063eb270e0f53f383de1 (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
#ifndef QUICK_BUTTON_H
#define QUICK_BUTTON_H

#include <qframe.h>

class QuickButton : public QFrame {

    Q_OBJECT

public:
    QuickButton( QWidget *parent = 0 );
    ~QuickButton();

 signals:

    void keyPressed( ushort, ushort, bool, bool, bool );

private slots:
    void hitEnter();
    void hitSpace();
    void hitTab();
    void hitPaste();
    void hitUp();
    void hitDown();
};

#endif