QTfrontend/ui/widget/qpushbuttonwithsound.cpp
author nemo
Sat, 01 Mar 2014 14:52:36 -0500
changeset 10171 00f41ff0bf2d
parent 10108 c68cf030eded
child 11046 47a8c19ecb60
permissions -rw-r--r--
Script might well override a static map, but can't risk it not doing it, and preview completely failing. Better to just not try it for static maps. Some script cfg might help. Could also avoid unnnecessary preview regenerations even if the script was doing nothing at all.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7793
3c21da93db9f add standard copyright header
koda
parents: 6930
diff changeset
     1
/*
3c21da93db9f add standard copyright header
koda
parents: 6930
diff changeset
     2
 * Hedgewars, a free turn based strategy game
9998
736015b847e3 update copyright to 2014
sheepluva
parents: 9080
diff changeset
     3
 * Copyright (c) 2004-2014 Andrey Korotaev <unC0Rr@gmail.com>
7793
3c21da93db9f add standard copyright header
koda
parents: 6930
diff changeset
     4
 *
3c21da93db9f add standard copyright header
koda
parents: 6930
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
3c21da93db9f add standard copyright header
koda
parents: 6930
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
3c21da93db9f add standard copyright header
koda
parents: 6930
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
3c21da93db9f add standard copyright header
koda
parents: 6930
diff changeset
     8
 *
3c21da93db9f add standard copyright header
koda
parents: 6930
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
3c21da93db9f add standard copyright header
koda
parents: 6930
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
3c21da93db9f add standard copyright header
koda
parents: 6930
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
3c21da93db9f add standard copyright header
koda
parents: 6930
diff changeset
    12
 * GNU General Public License for more details.
3c21da93db9f add standard copyright header
koda
parents: 6930
diff changeset
    13
 *
3c21da93db9f add standard copyright header
koda
parents: 6930
diff changeset
    14
 * You should have received a copy of the GNU General Public License
3c21da93db9f add standard copyright header
koda
parents: 6930
diff changeset
    15
 * along with this program; if not, write to the Free Software
10108
c68cf030eded update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents: 9998
diff changeset
    16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
7793
3c21da93db9f add standard copyright header
koda
parents: 6930
diff changeset
    17
 */
3c21da93db9f add standard copyright header
koda
parents: 6930
diff changeset
    18
6700
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    19
#include <QDir>
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    20
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    21
#include "qpushbuttonwithsound.h"
6930
d187ea93fc4f renaming HWDataManager -> DataManager
sheepluva
parents: 6700
diff changeset
    22
#include "DataManager.h"
6700
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    23
#include "SDLInteraction.h"
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    24
#include "hwform.h"
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    25
#include "gameuiconfig.h"
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    26
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    27
QPushButtonWithSound::QPushButtonWithSound(QWidget *parent) :
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    28
    QPushButton(parent),
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    29
    isSoundEnabled(true)
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    30
{
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    31
    connect(this, SIGNAL(clicked()), this, SLOT(buttonClicked()));
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    32
}
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    33
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    34
void QPushButtonWithSound::buttonClicked()
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    35
{
8326
023a71940f26 Don't play sounds in chat if sound is disabled, try to prevent sound crashes by checking for audio init failure.
nemo
parents: 8049
diff changeset
    36
    if ( !isSoundEnabled )
6700
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    37
        return;
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    38
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    39
    if (this->isEnabled())
8049
133e22b5c410 Get rid of DataManager::findFileForRead
unc0rr
parents: 7794
diff changeset
    40
        SDLInteraction::instance().playSoundFile("/Sounds/roperelease.ogg");
6700
e04da46ee43c the most important commit of the year
koda
parents: 6584
diff changeset
    41
}