QTfrontend/pageroomslist.h
author Zorg <zorgiepoo@gmail.com>
Wed, 08 Jun 2011 03:36:54 -0400
changeset 5229 148d581b17ab
parent 5205 78138ae93820
child 5259 926958e3e87b
permissions -rw-r--r--
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.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5205
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
     1
/*
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
     2
 * Hedgewars, a free turn based strategy game
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
     3
 * Copyright (c) 2006-2011 Andrey Korotaev <unC0Rr@gmail.com>
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
     4
 *
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
     8
 *
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
    12
 * GNU General Public License for more details.
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
    13
 *
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
    14
 * You should have received a copy of the GNU General Public License
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
    15
 * along with this program; if not, write to the Free Software
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
    17
 */
5204
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_ROOMLIST_H
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    20
#define PAGE_ROOMLIST_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"
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
    23
#include "SDLs.h"
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    24
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    25
class HWChatWidget;
5205
78138ae93820 some headers cleanup and rename of stats and playrecord pages for consistency
koda
parents: 5204
diff changeset
    26
class AmmoSchemeModel;
5204
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    27
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    28
class PageRoomsList : public AbstractPage
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    29
{
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    30
    Q_OBJECT
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    31
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    32
public:
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    33
    PageRoomsList(QWidget* parent, QSettings * config, SDLInteraction * sdli);
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    34
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    35
    QLineEdit * roomName;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    36
    QLineEdit * searchText;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    37
    QTableWidget * roomsList;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    38
    QPushButton * BtnBack;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    39
    QPushButton * BtnCreate;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    40
    QPushButton * BtnJoin;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    41
    QPushButton * BtnRefresh;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    42
    QPushButton * BtnAdmin;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    43
    QPushButton * BtnClear;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    44
    QComboBox * CBState;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    45
    QComboBox * CBRules;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    46
    QComboBox * CBWeapons;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    47
    HWChatWidget * chatWidget;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    48
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    49
private:
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    50
    bool gameInLobby;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    51
    QString gameInLobbyName;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    52
    QStringList listFromServer;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    53
    AmmoSchemeModel * ammoSchemeModel;
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    54
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    55
public slots:
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    56
    void setRoomsList(const QStringList & list);
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    57
    void setAdmin(bool);
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    58
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    59
private slots:
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    60
    void onCreateClick();
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    61
    void onJoinClick();
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    62
    void onRefreshClick();
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    63
    void onClearClick();
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    64
    void onJoinConfirmation(const QString &);
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    65
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    66
signals:
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    67
    void askForCreateRoom(const QString &);
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    68
    void askForJoinRoom(const QString &);
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    69
    void askForRoomList();
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    70
    void askJoinConfirmation(const QString &);
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    71
};
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    72
e1a5f4d5d86a split pages.h into several header files
koda
parents:
diff changeset
    73
#endif