summaryrefslogtreecommitdiffstats
path: root/kmid/kmidbutton.h
blob: cda01f59980d40231adeaa28da0e8db7f6a984c4 (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
28
29
30
31
32
#include <qpushbutton.h>
#include <qpainter.h>

class KMidButton : public QPushButton
{
protected:
    
    QPixmap pixmap1,pixmap2;

    virtual void drawButton(QPainter *paint)
    {
        if ((isOn())&&(!pixmap1.isNull())) paint->drawPixmap(0,0,pixmap1);
        else if ((!isOn())&&(!pixmap2.isNull())) paint->drawPixmap(0,0,pixmap2);
    };
    
public:
    
    KMidButton (QWidget *parent,const char *name) : QPushButton (parent,name)
    {
    };
    
    ~KMidButton()
    {
    };
    
    void setPixmaps(const QPixmap& p1, const QPixmap& p2)
    {
        pixmap1=p1;
        pixmap2=p2;
    };
    
};