QTfrontend/ui/widget/hatbutton.cpp
author sheepluva
Fri, 17 Jan 2014 01:06:54 +0100
changeset 9998 736015b847e3
parent 9738 18bb6d1fc9d9
child 10108 c68cf030eded
permissions -rw-r--r--
update copyright to 2014
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: 9738
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
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 <QDebug>
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    20
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    21
#include "hatprompt.h"
8375
af2d2f56bc45 Fix build
unc0rr
parents: 8374
diff changeset
    22
#include "HatModel.h"
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    23
#include "hatbutton.h"
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    24
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    25
HatButton::HatButton(QWidget* parent) : QPushButton(parent)
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    26
{
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    27
    setIconSize(QSize(32, 37));
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    28
    setFixedSize(44, 44);
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    29
9738
18bb6d1fc9d9 Load hats into the model lazily
unc0rr
parents: 9080
diff changeset
    30
    m_hatModel = 0;
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    31
    connect(this, SIGNAL(clicked()), this, SLOT(showPrompt()));
9738
18bb6d1fc9d9 Load hats into the model lazily
unc0rr
parents: 9080
diff changeset
    32
}
18bb6d1fc9d9 Load hats into the model lazily
unc0rr
parents: 9080
diff changeset
    33
18bb6d1fc9d9 Load hats into the model lazily
unc0rr
parents: 9080
diff changeset
    34
void HatButton::setModel(HatModel *model)
18bb6d1fc9d9 Load hats into the model lazily
unc0rr
parents: 9080
diff changeset
    35
{
18bb6d1fc9d9 Load hats into the model lazily
unc0rr
parents: 9080
diff changeset
    36
    m_hatModel = model;
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    37
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    38
    setCurrentIndex(0);
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    39
}
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    40
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    41
void HatButton::setCurrentIndex(int index)
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    42
{
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    43
    m_hat = m_hatModel->index(index, 0);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    44
    setWhatsThis(QString(tr("Change hat (%1)")).arg(m_hat.data(Qt::DisplayRole).toString()));
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    45
    setToolTip(m_hat.data(Qt::DisplayRole).toString());
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    46
    setIcon(m_hat.data(Qt::DecorationRole).value<QIcon>());
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    47
}
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    48
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    49
int HatButton::currentIndex()
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    50
{
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    51
    return m_hat.row();
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    52
}
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    53
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    54
void HatButton::setCurrentHat(const QString & name)
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    55
{
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    56
    QList<QStandardItem *> hats = m_hatModel->findItems(name);
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    57
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    58
    if (hats.count() > 0)
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    59
        setCurrentIndex(hats[0]->row());
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    60
}
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    61
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    62
QString HatButton::currentHat() const
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    63
{
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    64
    return m_hat.data(Qt::DisplayRole).toString();
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    65
}
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    66
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    67
void HatButton::showPrompt()
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    68
{
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    69
    HatPrompt prompt(currentIndex(), this);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    70
    int hatID = prompt.exec() - 1; // Since 0 means canceled, so all indexes are +1'd
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    71
    if (hatID < 0) return;
8374
3a1708759c4f Hat selection reworked
dag10
parents:
diff changeset
    72
8434
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    73
    setCurrentIndex(hatID);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    74
    emit currentIndexChanged(hatID);
4821897a0f10 big indentation/whitespaces cleanup
sheepluva
parents: 8375
diff changeset
    75
    emit currentHatChanged(currentHat());
8375
af2d2f56bc45 Fix build
unc0rr
parents: 8374
diff changeset
    76
}