QTfrontend/ui/widget/hatbutton.cpp
author sheepluva
Tue, 04 Feb 2014 19:45:22 +0100
changeset 10108 c68cf030eded
parent 9998 736015b847e3
child 11046 47a8c19ecb60
permissions -rw-r--r--
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

/*
 * Hedgewars, a free turn based strategy game
 * Copyright (c) 2004-2014 Andrey Korotaev <unC0Rr@gmail.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include <QDebug>

#include "hatprompt.h"
#include "HatModel.h"
#include "hatbutton.h"

HatButton::HatButton(QWidget* parent) : QPushButton(parent)
{
    setIconSize(QSize(32, 37));
    setFixedSize(44, 44);

    m_hatModel = 0;
    connect(this, SIGNAL(clicked()), this, SLOT(showPrompt()));
}

void HatButton::setModel(HatModel *model)
{
    m_hatModel = model;

    setCurrentIndex(0);
}

void HatButton::setCurrentIndex(int index)
{
    m_hat = m_hatModel->index(index, 0);
    setWhatsThis(QString(tr("Change hat (%1)")).arg(m_hat.data(Qt::DisplayRole).toString()));
    setToolTip(m_hat.data(Qt::DisplayRole).toString());
    setIcon(m_hat.data(Qt::DecorationRole).value<QIcon>());
}

int HatButton::currentIndex()
{
    return m_hat.row();
}

void HatButton::setCurrentHat(const QString & name)
{
    QList<QStandardItem *> hats = m_hatModel->findItems(name);

    if (hats.count() > 0)
        setCurrentIndex(hats[0]->row());
}

QString HatButton::currentHat() const
{
    return m_hat.data(Qt::DisplayRole).toString();
}

void HatButton::showPrompt()
{
    HatPrompt prompt(currentIndex(), this);
    int hatID = prompt.exec() - 1; // Since 0 means canceled, so all indexes are +1'd
    if (hatID < 0) return;

    setCurrentIndex(hatID);
    emit currentIndexChanged(hatID);
    emit currentHatChanged(currentHat());
}