QTfrontend/pageoptions.h
author sheepluva
Sun, 11 Sep 2011 15:18:46 +0200
changeset 5849 b84b41aba275
parent 5229 148d581b17ab
child 5877 514b639c40da
permissions -rw-r--r--
fix for issue #269
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     1
/*
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     2
 * Hedgewars, a free turn based strategy game
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     3
 * Copyright (c) 2006-2011 Andrey Korotaev <unC0Rr@gmail.com>
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     4
 *
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     8
 *
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    12
 * GNU General Public License for more details.
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    13
 *
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    17
 */
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    18
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    19
#ifndef PAGE_OPTIONS_H
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    20
#define PAGE_OPTIONS_H
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    21
5205
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
    22
#include "AbstractPage.h"
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    23
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    24
class FPSEdit;
5205
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
    25
class IconedGroupBox;
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    26
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    27
class PageOptions : public AbstractPage
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    28
{
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    29
    Q_OBJECT
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    30
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    31
public:
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    32
    PageOptions(QWidget* parent = 0);
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    33
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    34
    QCheckBox *WeaponTooltip;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    35
    QPushButton *WeaponNew;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    36
    QPushButton *WeaponEdit;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    37
    QPushButton *WeaponDelete;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    38
    QComboBox *WeaponsName;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    39
    QPushButton *SchemeNew;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    40
    QPushButton *SchemeEdit;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    41
    QPushButton *SchemeDelete;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    42
    QComboBox *SchemesName;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    43
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    44
    QComboBox *CBLanguage;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    45
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    46
    QPushButton *BtnBack;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    47
    IconedGroupBox *teamsBox;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    48
    QPushButton *BtnNewTeam;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    49
    QPushButton *BtnEditTeam;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    50
    QPushButton *BtnDeleteTeam;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    51
    QPushButton *BtnAssociateFiles;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    52
    QLabel *LblNoEditTeam;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    53
    QComboBox *CBTeamName;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    54
    IconedGroupBox *AGGroupBox;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    55
    QComboBox *CBResolution;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    56
    QComboBox *CBStereoMode;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    57
    QCheckBox *CBEnableSound;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    58
    QCheckBox *CBEnableFrontendSound;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    59
    QCheckBox *CBEnableMusic;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    60
    QCheckBox *CBEnableFrontendMusic;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    61
    QCheckBox *CBFullscreen;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    62
    QCheckBox *CBFrontendFullscreen;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    63
    QCheckBox *CBShowFPS;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    64
    QCheckBox *CBAltDamage;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    65
    QCheckBox *CBNameWithDate;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    66
#ifdef __APPLE__
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    67
    QCheckBox *CBAutoUpdate;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    68
#endif
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    69
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    70
    FPSEdit *fpsedit;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    71
    QPushButton *BtnSaveOptions;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    72
    QLabel *labelNN;
5229
148d581b17ab Attempt to fix issue 125. The password pop-up doesn't appear every time when going into the official server anymore, now it only does it when the password is blank. If a user enters an invalid password, the password is set blank to avoid the user going back to the official server just to be rejected. When entering an invalid password, the unknown error dialog doesn't show up anymore, but the connection lost to server one still does. This fixes the bug where the user would be spammed with error messages. The user can also now change his password in the settings page.
Zorg <zorgiepoo@gmail.com>
parents: 5205
diff changeset
    73
    QLabel *labelNetPassword;
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    74
    QSpinBox * volumeBox;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    75
    QLineEdit *editNetNick;
5229
148d581b17ab Attempt to fix issue 125. The password pop-up doesn't appear every time when going into the official server anymore, now it only does it when the password is blank. If a user enters an invalid password, the password is set blank to avoid the user going back to the official server just to be rejected. When entering an invalid password, the unknown error dialog doesn't show up anymore, but the connection lost to server one still does. This fixes the bug where the user would be spammed with error messages. The user can also now change his password in the settings page.
Zorg <zorgiepoo@gmail.com>
parents: 5205
diff changeset
    76
    QLineEdit *editNetPassword;
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    77
    QSlider *SLQuality;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    78
    QCheckBox *CBFrontendEffects;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    79
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    80
private:
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    81
    bool previousFullscreenValue;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    82
    int previousResolutionIndex;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    83
    int previousQuality;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    84
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    85
private slots:
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    86
    void forceFullscreen(int index);
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    87
    void setFullscreen(void);
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    88
    void trimNetNick();
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    89
};
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    90
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    91
#endif
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    92