mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-24 22:14:36 +02:00
66 lines
1.4 KiB
C++
66 lines
1.4 KiB
C++
|
/*
|
||
|
* heroartifactswidget.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 <QDialog>
|
||
|
#include "../../lib/mapObjects/CGHeroInstance.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class HeroArtifactsWidget;
|
||
|
}
|
||
|
|
||
|
class HeroArtifactsWidget : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit HeroArtifactsWidget(CGHeroInstance &, QWidget *parent = nullptr);
|
||
|
~HeroArtifactsWidget();
|
||
|
|
||
|
void obtainData();
|
||
|
void commitChanges();
|
||
|
|
||
|
private slots:
|
||
|
void onSaveArtifact(int32_t artifactIndex, ArtifactPosition slot);
|
||
|
|
||
|
void on_addButton_clicked();
|
||
|
|
||
|
void on_removeButton_clicked();
|
||
|
|
||
|
private:
|
||
|
enum Column
|
||
|
{
|
||
|
SLOT, ARTIFACT
|
||
|
};
|
||
|
Ui::HeroArtifactsWidget * ui;
|
||
|
|
||
|
CGHeroInstance & hero;
|
||
|
CArtifactFittingSet fittingSet;
|
||
|
|
||
|
void addArtifactToTable(int32_t artifactIndex, ArtifactPosition slot);
|
||
|
|
||
|
};
|
||
|
|
||
|
class HeroArtifactsDelegate : public QStyledItemDelegate
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
using QStyledItemDelegate::QStyledItemDelegate;
|
||
|
|
||
|
HeroArtifactsDelegate(CGHeroInstance &);
|
||
|
|
||
|
QWidget * createEditor(QWidget * parent, const QStyleOptionViewItem & option, const QModelIndex & index) const override;
|
||
|
void setEditorData(QWidget * editor, const QModelIndex & index) const override;
|
||
|
void setModelData(QWidget * editor, QAbstractItemModel * model, const QModelIndex & index) const override;
|
||
|
|
||
|
private:
|
||
|
CGHeroInstance & hero;
|
||
|
};
|