mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-28 08:48:48 +02:00
98 lines
2.3 KiB
C++
98 lines
2.3 KiB
C++
/*
|
|
* rewardswidget.h, part of VCMI engine
|
|
*
|
|
* Authors: listed in file AUTHORS in main folder
|
|
*
|
|
* License: GNU General Public License v2.0 or later
|
|
* Full text of license available in license.txt file, in main folder
|
|
*
|
|
*/
|
|
#pragma once
|
|
#include "../StdInc.h"
|
|
#include <QDialog>
|
|
#include "../lib/mapObjects/CGPandoraBox.h"
|
|
#include "../lib/mapObjects/CQuest.h"
|
|
|
|
namespace Ui {
|
|
class RewardsWidget;
|
|
}
|
|
|
|
const std::array<std::string, 10> rewardTypes{"Experience", "Mana", "Morale", "Luck", "Resource", "Primary skill", "Secondary skill", "Artifact", "Spell", "Creature"};
|
|
|
|
class RewardsWidget : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum RewardType
|
|
{
|
|
EXPERIENCE = 0, MANA, MORALE, LUCK, RESOURCE, PRIMARY_SKILL, SECONDARY_SKILL, ARTIFACT, SPELL, CREATURE
|
|
};
|
|
|
|
explicit RewardsWidget(const CMap &, CGPandoraBox &, QWidget *parent = nullptr);
|
|
explicit RewardsWidget(const CMap &, CGSeerHut &, QWidget *parent = nullptr);
|
|
~RewardsWidget();
|
|
|
|
void obtainData();
|
|
bool commitChanges();
|
|
|
|
private slots:
|
|
void on_rewardType_activated(int index);
|
|
|
|
void on_rewardList_activated(int index);
|
|
|
|
void on_buttonAdd_clicked();
|
|
|
|
void on_buttonRemove_clicked();
|
|
|
|
void on_buttonClear_clicked();
|
|
|
|
void on_rewardsTable_itemSelectionChanged();
|
|
|
|
private:
|
|
void addReward(RewardType typeId, int listId, int amount);
|
|
QList<QString> getListForType(RewardType typeId);
|
|
|
|
Ui::RewardsWidget *ui;
|
|
CGPandoraBox * pandora;
|
|
CGSeerHut * seerhut;
|
|
const CMap & map;
|
|
int rewards = 0;
|
|
};
|
|
|
|
class RewardsDelegate : public QStyledItemDelegate
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
using QStyledItemDelegate::QStyledItemDelegate;
|
|
|
|
void setEditorData(QWidget *editor, const QModelIndex &index) const override;
|
|
void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override;
|
|
};
|
|
|
|
class RewardsPandoraDelegate : public RewardsDelegate
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
RewardsPandoraDelegate(const CMap &, CGPandoraBox &);
|
|
|
|
QWidget * createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
|
|
|
|
private:
|
|
CGPandoraBox & pandora;
|
|
const CMap & map;
|
|
};
|
|
|
|
class RewardsSeerhutDelegate : public RewardsDelegate
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
RewardsSeerhutDelegate(const CMap &, CGSeerHut &);
|
|
|
|
QWidget * createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
|
|
|
|
private:
|
|
CGSeerHut & seerhut;
|
|
const CMap & map;
|
|
};
|