QTfrontend/ui/widget/qpushbuttonwithsound.h
author nemo
Mon, 30 Jan 2012 17:32:18 -0500
changeset 6616 f77bb02b669f
parent 6577 9e49e6a8585b
child 6700 e04da46ee43c
permissions -rw-r--r--
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"

#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