QTfrontend/ui/widget/qpushbuttonwithsound.h
author Xeli
Tue, 24 Jan 2012 03:38:18 +0100
changeset 6595 f567d52183ec
parent 6577 9e49e6a8585b
child 6616 f77bb02b669f
permissions -rw-r--r--
add the android support package for Fragments and the like

#ifndef QPUSHBUTTONWITHSOUND_H
#define QPUSHBUTTONWITHSOUND_H

#include <QPushButton>

class QPushButtonWithSound : public QPushButton
{
    Q_OBJECT
public:
    explicit QPushButtonWithSound(QWidget *parent = 0);
    bool isSoundEnabled;
signals:
    
public slots:
private slots:
    void buttonClicked();
    
};

#endif // QPUSHBUTTONWITHSOUND_H