QTfrontend/ui/widget/hatprompt.h
author nemo
Sat, 01 Mar 2014 14:52:36 -0500
changeset 10171 00f41ff0bf2d
parent 10108 c68cf030eded
child 11046 47a8c19ecb60
permissions -rw-r--r--
Script might well override a static map, but can't risk it not doing it, and preview completely failing. Better to just not try it for static maps. Some script cfg might help. Could also avoid unnnecessary preview regenerations even if the script was doing nothing at all.
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
9998
736015b847e3 update copyright to 2014
sheepluva
parents: 9080
diff changeset
     3
 * Copyright (c) 2004-2014 Andrey Korotaev <unC0Rr@gmail.com>
8374
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
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
8374
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
{
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8385
diff changeset
    33
    friend class HatPrompt;
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    34
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8385
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){}
8623
93645b4ba0de Possibly fixed issue 533.
dag10
parents: 8434
diff changeset
    37
        void moveUp();
93645b4ba0de Possibly fixed issue 533.
dag10
parents: 8434
diff changeset
    38
        void moveDown();
93645b4ba0de Possibly fixed issue 533.
dag10
parents: 8434
diff changeset
    39
        void moveLeft();
93645b4ba0de Possibly fixed issue 533.
dag10
parents: 8434
diff changeset
    40
        void moveRight();
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    41
};
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    42
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    43
class HatPrompt : public QDialog
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    44
{
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    45
        Q_OBJECT
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    46
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    47
    public:
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    48
        HatPrompt(int currentIndex = 0, QWidget* parent = 0);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    49
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    50
    private:
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    51
        LineEditCursor * txtFilter;
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    52
        HatListView * list;
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    53
        QSortFilterProxyModel * filterModel;
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    54
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    55
    private slots:
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8385
diff changeset
    56
        void onAccepted();
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    57
        void hatChosen(const QModelIndex & index);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    58
        void filterChanged(const QString & text);
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    59
        void moveUp();
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    60
        void moveDown();
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    61
        void moveLeft();
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    62
        void moveRight();
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    63
};
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    64
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    65
#endif // HATPROMPT_H