QTfrontend/ui/widget/qpushbuttonwithsound.h
author nemo
Mon, 04 Jun 2012 19:36:55 -0400
changeset 7181 0791c1f2734c
parent 6700 e04da46ee43c
child 7793 3c21da93db9f
permissions -rw-r--r--
Welp. We have a bit of a problem here. Reverting the move of nextturn. But this causes a desync in scripting unless we can find a better fix.

#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