QTfrontend/ui/widget/qpushbuttonwithsound.h
author Wuzzy <Wuzzy2@mail.ru>
Mon, 16 Sep 2019 17:33:49 +0200
changeset 15431 8504fee3b601
parent 11046 47a8c19ecb60
permissions -rw-r--r--
Racer: Fix weird water splashes after waypoint placement Does not affect official racer, as only waypoint placement is touched. The reason was that the air attack gear sometimes was not deleted fast enough so it might occassionally drop some air bombs (these are deleted now). Also, the airplane position was set to water level, which caused another water splash.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7793
3c21da93db9f add standard copyright header
koda
parents: 6700
diff changeset
     1
/*
3c21da93db9f add standard copyright header
koda
parents: 6700
diff changeset
     2
 * Hedgewars, a free turn based strategy game
11046
47a8c19ecb60 more copyright fixes
sheepluva
parents: 10108
diff changeset
     3
 * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
7793
3c21da93db9f add standard copyright header
koda
parents: 6700
diff changeset
     4
 *
3c21da93db9f add standard copyright header
koda
parents: 6700
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
3c21da93db9f add standard copyright header
koda
parents: 6700
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
3c21da93db9f add standard copyright header
koda
parents: 6700
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
3c21da93db9f add standard copyright header
koda
parents: 6700
diff changeset
     8
 *
3c21da93db9f add standard copyright header
koda
parents: 6700
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
3c21da93db9f add standard copyright header
koda
parents: 6700
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
3c21da93db9f add standard copyright header
koda
parents: 6700
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
3c21da93db9f add standard copyright header
koda
parents: 6700
diff changeset
    12
 * GNU General Public License for more details.
3c21da93db9f add standard copyright header
koda
parents: 6700
diff changeset
    13
 *
3c21da93db9f add standard copyright header
koda
parents: 6700
diff changeset
    14
 * You should have received a copy of the GNU General Public License
3c21da93db9f add standard copyright header
koda
parents: 6700
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: 6700
diff changeset
    17
 */
3c21da93db9f add standard copyright header
koda
parents: 6700
diff changeset
    18
6700
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    19
#ifndef QPUSHBUTTONWITHSOUND_H
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    20
#define QPUSHBUTTONWITHSOUND_H
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    21
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    22
#include <QPushButton>
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    23
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    24
class QPushButtonWithSound : public QPushButton
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    25
{
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    26
        Q_OBJECT
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    27
    public:
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    28
        explicit QPushButtonWithSound(QWidget *parent = 0);
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    29
        bool isSoundEnabled;
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    30
    signals:
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    31
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    32
    public slots:
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    33
    private slots:
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    34
        void buttonClicked();
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    35
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    36
};
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    37
e04da46ee43c the most important commit of the year
koda
parents: 6616
diff changeset
    38
#endif // QPUSHBUTTONWITHSOUND_H