1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-26 08:41:13 +02:00
vcmi/mapeditor/inspector/herospellwidget.h
2024-03-24 10:01:20 +01:00

57 lines
1.2 KiB
C++

/*
* herospellwidget.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 HeroSpellWidget;
}
class HeroSpellWidget : public QDialog
{
Q_OBJECT
public:
explicit HeroSpellWidget(CGHeroInstance &, QWidget * parent = nullptr);
~HeroSpellWidget();
void obtainData();
void commitChanges();
private slots:
void on_customizeSpells_toggled(bool checked);
private:
Ui::HeroSpellWidget * ui;
CGHeroInstance & hero;
void initSpellLists();
};
class HeroSpellDelegate : public QStyledItemDelegate
{
Q_OBJECT
public:
using QStyledItemDelegate::QStyledItemDelegate;
HeroSpellDelegate(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;
};