QTfrontend/ui/widget/hatprompt.cpp
author dag10
Sun, 27 Jan 2013 20:17:30 -0500
changeset 8453 06541556df53
parent 8434 4821897a0f10
child 8488 e72f3398a28b
permissions -rw-r--r--
Reorganized layout and appearance of rooms list page. Creating a new room uses a dialog prompt for the room name, which is preset to whatever your last room name was. Removed dotted rectangle around selected cell in rooms list. Removed bug where gamecfgwidget would be in master mode when joining a game as a slave. Can now join selected room when return is pressed. Can also move room selection while room search box has focus.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     1
/*
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     2
 * Hedgewars, a free turn based strategy game
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     3
 * Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     4
 *
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     8
 *
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    12
 * GNU General Public License for more details.
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    13
 *
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    17
 */
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    18
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    19
#include <QDialog>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    20
#include <QGridLayout>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    21
#include <QHBoxLayout>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    22
#include <QScrollArea>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    23
#include <QPushButton>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    24
#include <QToolButton>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    25
#include <QWidgetItem>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    26
#include <QModelIndex>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    27
#include <QListView>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    28
#include <QLineEdit>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    29
#include <QLabel>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    30
#include <QSortFilterProxyModel>
8453
06541556df53 Reorganized layout and appearance of rooms list page.
dag10
parents: 8434
diff changeset
    31
#include <QFontMetrics>
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    32
#include <QDebug>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    33
8375
af2d2f56bc45 Fix build
unc0rr
parents: 8374
diff changeset
    34
#include "DataManager.h"
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    35
#include "lineeditcursor.h"
8375
af2d2f56bc45 Fix build
unc0rr
parents: 8374
diff changeset
    36
#include "HatModel.h"
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    37
#include "hatprompt.h"
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    38
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    39
HatPrompt::HatPrompt(int currentIndex, QWidget* parent) : QDialog(parent)
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    40
{
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    41
    setModal(true);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    42
    setWindowFlags(Qt::Sheet);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    43
    setWindowModality(Qt::WindowModal);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    44
    setMinimumSize(550, 430);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    45
    resize(550, 430);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    46
    setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    47
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    48
    setStyleSheet("QPushButton { padding: 5px; margin-top: 10px; }");
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    49
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    50
    // Hat model, and a model for setting a filter
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    51
    HatModel * hatModel = DataManager::instance().hatModel();
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    52
    filterModel = new QSortFilterProxyModel();
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    53
    filterModel->setSourceModel(hatModel);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    54
    filterModel->setFilterCaseSensitivity(Qt::CaseInsensitive);
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    55
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    56
    // Grid
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    57
    QGridLayout * dialogLayout = new QGridLayout(this);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    58
    dialogLayout->setSpacing(0);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    59
    dialogLayout->setColumnStretch(1, 1);
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    60
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    61
    QHBoxLayout * topLayout = new QHBoxLayout();
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    62
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    63
    // Help/prompt message at top
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    64
    QLabel * lblDesc = new QLabel(tr("Select a hat"));
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    65
    lblDesc->setObjectName("lblDesc");
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    66
    lblDesc->setStyleSheet("#lblDesc { color: #130F2A; background: #F6CB1C; border: solid 4px #F6CB1C; border-top-left-radius: 10px; padding: 4px 10px;}");
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    67
    lblDesc->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    68
    lblDesc->setFixedHeight(24);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    69
    lblDesc->setMinimumWidth(0);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    70
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    71
    // Filter text box
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    72
    QWidget * filterContainer = new QWidget();
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    73
    filterContainer->setFixedHeight(24);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    74
    filterContainer->setObjectName("filterContainer");
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    75
    filterContainer->setStyleSheet("#filterContainer { background: #F6CB1C; border-top-right-radius: 10px; padding: 3px; }");
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    76
    filterContainer->setFixedWidth(250);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    77
    txtFilter = new LineEditCursor(filterContainer);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    78
    txtFilter->setFixedWidth(250);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    79
    txtFilter->setFocus();
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    80
    txtFilter->setFixedHeight(22);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    81
    connect(txtFilter, SIGNAL(textChanged(const QString &)), this, SLOT(filterChanged(const QString &)));
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    82
    connect(txtFilter, SIGNAL(moveUp()), this, SLOT(moveUp()));
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    83
    connect(txtFilter, SIGNAL(moveDown()), this, SLOT(moveDown()));
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    84
    connect(txtFilter, SIGNAL(moveLeft()), this, SLOT(moveLeft()));
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    85
    connect(txtFilter, SIGNAL(moveRight()), this, SLOT(moveRight()));
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    86
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    87
    // Filter label
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    88
    QLabel * lblFilter = new QLabel(tr("Filter: "), txtFilter);
8453
06541556df53 Reorganized layout and appearance of rooms list page.
dag10
parents: 8434
diff changeset
    89
    QFontMetrics lblMetrics(lblFilter->font());
06541556df53 Reorganized layout and appearance of rooms list page.
dag10
parents: 8434
diff changeset
    90
    int lblFilterWidth = lblMetrics.width(lblFilter->text());
06541556df53 Reorganized layout and appearance of rooms list page.
dag10
parents: 8434
diff changeset
    91
    lblFilter->setStyleSheet(QString("background: none; margin-left: -%1px; margin-top: 4px;").arg(lblFilterWidth + 5));
06541556df53 Reorganized layout and appearance of rooms list page.
dag10
parents: 8434
diff changeset
    92
    txtFilter->setStyleSheet(QString("LineEditCursor, QLabel { border-width: 0px; border-radius: 6px; margin-top: 3px; margin-right: 3px; padding-left: %1px; padding-bottom: 2px; background-color: rgb(23, 11, 54); } LineEditCursor:hover, LineEditCursor:focus { background-color: rgb(13, 5, 68); }").arg(lblFilterWidth + 5));
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    93
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    94
    // Corner widget
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    95
    QLabel * corner = new QLabel();
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    96
    corner->setPixmap(QPixmap(QString::fromUtf8(":/res/inverse-corner-bl.png")));
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    97
    corner->setFixedSize(10, 10);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    98
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    99
    // Add widgets to top layout
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   100
    topLayout->addWidget(lblDesc);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   101
    topLayout->addWidget(filterContainer);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   102
    topLayout->addWidget(corner, 0, Qt::AlignBottom);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   103
    topLayout->addStretch(1);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   104
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   105
    // Cancel button (closes dialog)
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   106
    QPushButton * btnCancel = new QPushButton(tr("Cancel"));
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   107
    connect(btnCancel, SIGNAL(clicked()), this, SLOT(reject()));
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   108
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   109
    // Select button
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   110
    QPushButton * btnSelect = new QPushButton(tr("Use selected hat"));
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   111
    btnSelect->setDefault(true);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   112
    connect(btnSelect, SIGNAL(clicked()), this, SLOT(onAccepted()));
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   113
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   114
    // Add hats
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   115
    list = new HatListView();
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   116
    list->setModel(filterModel);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   117
    list->setViewMode(QListView::IconMode);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   118
    list->setResizeMode(QListView::Adjust);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   119
    list->setMovement(QListView::Static);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   120
    list->setEditTriggers(QAbstractItemView::NoEditTriggers);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   121
    list->setSpacing(8);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   122
    list->setWordWrap(true);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   123
    list->setSelectionMode(QAbstractItemView::SingleSelection);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   124
    list->setObjectName("hatList");
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   125
    list->setCurrentIndex(filterModel->index(currentIndex, 0));
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   126
    connect(list, SIGNAL(activated(const QModelIndex &)), this, SLOT(hatChosen(const QModelIndex &)));
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   127
    connect(list, SIGNAL(clicked(const QModelIndex &)), this, SLOT(hatChosen(const QModelIndex &)));
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   128
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   129
    // Add elements to layouts
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   130
    dialogLayout->addLayout(topLayout, 0, 0, 1, 3);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   131
    dialogLayout->addWidget(list, 1, 0, 1, 3);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   132
    dialogLayout->addWidget(btnCancel, 2, 0, 1, 1, Qt::AlignLeft);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   133
    dialogLayout->addWidget(btnSelect, 2, 2, 1, 1, Qt::AlignRight);
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   134
}
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   135
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   136
void HatPrompt::moveUp()
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   137
{
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   138
    list->setCurrentIndex(list->moveCursor(QAbstractItemView::MoveUp, Qt::NoModifier));
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   139
}
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   140
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   141
void HatPrompt::moveDown()
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   142
{
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   143
    list->setCurrentIndex(list->moveCursor(QAbstractItemView::MoveDown, Qt::NoModifier));
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   144
}
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   145
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   146
void HatPrompt::moveLeft()
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   147
{
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   148
    list->setCurrentIndex(list->moveCursor(QAbstractItemView::MoveLeft, Qt::NoModifier));
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   149
}
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   150
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   151
void HatPrompt::moveRight()
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   152
{
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   153
    list->setCurrentIndex(list->moveCursor(QAbstractItemView::MoveRight, Qt::NoModifier));
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   154
}
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   155
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   156
void HatPrompt::onAccepted()
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   157
{
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   158
    hatChosen(list->currentIndex());
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   159
}
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   160
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   161
// When a hat is selected
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   162
void HatPrompt::hatChosen(const QModelIndex & index)
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   163
{
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   164
    done(filterModel->mapToSource(index).row() + 1); // Since returning 0 means canceled
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   165
}
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   166
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   167
// When the text in the filter text box is changed
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   168
void HatPrompt::filterChanged(const QString & text)
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
   169
{
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   170
    filterModel->setFilterFixedString(text);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
   171
    list->setCurrentIndex(filterModel->index(0, 0));
8375
af2d2f56bc45 Fix build
unc0rr
parents: 8374
diff changeset
   172
}