QTfrontend/ui/widget/hatprompt.h
author dag10
Mon, 21 Jan 2013 21:52:49 -0500
changeset 8424 225ede46e3dc
parent 8385 9e8924ff9813
child 8434 4821897a0f10
permissions -rw-r--r--
On pagenetgame, when window is too small the map/game options becomes a tabbed interface to allow for a few lines of chat to always be visible. Restored HWForm's min height to 580. Fixed the 2px alignment issue with the map list and map previews' top edges that unC0Rr was whining about. <3
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
#ifndef HATPROMPT_H
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    20
#define HATPROMPT_H
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    21
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    22
#include <QWidget>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    23
#include <QDialog>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    24
#include <QListView>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    25
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    26
class QLineEdit;
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    27
class QModelIndex;
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    28
class QSortFilterProxyModel;
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    29
class LineEditCursor;
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    30
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    31
class HatListView : public QListView
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    32
{
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    33
	friend class HatPrompt;
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    34
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    35
	public:
8385
9e8924ff9813 Convert feedback page to dialog (+some fixes from unC0Rr)
dag10
parents: 8374
diff changeset
    36
        HatListView(QWidget* parent = 0) : QListView(parent){}
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    37
};
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    38
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    39
class HatPrompt : public QDialog
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    40
{
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    41
        Q_OBJECT
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    42
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    43
    public:
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    44
        HatPrompt(int currentIndex = 0, QWidget* parent = 0);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    45
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    46
    private:
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    47
        LineEditCursor * txtFilter;
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    48
        HatListView * list;
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    49
        QSortFilterProxyModel * filterModel;
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    50
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    51
    private slots:
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    52
    	void onAccepted();
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    53
        void hatChosen(const QModelIndex & index);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    54
        void filterChanged(const QString & text);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    55
        void moveUp();
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    56
        void moveDown();
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    57
        void moveLeft();
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    58
        void moveRight();
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    59
};
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    60
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    61
#endif // HATPROMPT_H