QTfrontend/ui/widget/qpushbuttonwithsound.cpp
author unc0rr
Tue, 03 Jul 2012 22:44:50 +0400
changeset 7335 3c6f08af7dac
parent 6930 d187ea93fc4f
child 7793 3c21da93db9f
permissions -rw-r--r--
- Don't call Length() on variable size arrays - Make pas2c fail on such calls

#include <QMessageBox>
#include <QDir>

#include "qpushbuttonwithsound.h"
#include "DataManager.h"
#include "SDLInteraction.h"
#include "hwform.h"
#include "gameuiconfig.h"

QPushButtonWithSound::QPushButtonWithSound(QWidget *parent) :
    QPushButton(parent),
    isSoundEnabled(true)
{
    connect(this, SIGNAL(clicked()), this, SLOT(buttonClicked()));
}

void QPushButtonWithSound::buttonClicked()
{
    if ( !isSoundEnabled || !HWForm::config->isFrontendSoundEnabled())
        return;

    DataManager & dataMgr = DataManager::instance();

    if (this->isEnabled())
        SDLInteraction::instance().playSoundFile(dataMgr.findFileForRead("Sounds/roperelease.ogg"));
}