aboutsummaryrefslogtreecommitdiff
path: root/libs/installer_bsplugins/src/BSPluginInfo/AuxConflictModel.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/installer_bsplugins/src/BSPluginInfo/AuxConflictModel.h')
-rw-r--r--libs/installer_bsplugins/src/BSPluginInfo/AuxConflictModel.h101
1 files changed, 101 insertions, 0 deletions
diff --git a/libs/installer_bsplugins/src/BSPluginInfo/AuxConflictModel.h b/libs/installer_bsplugins/src/BSPluginInfo/AuxConflictModel.h
new file mode 100644
index 0000000..328a39e
--- /dev/null
+++ b/libs/installer_bsplugins/src/BSPluginInfo/AuxConflictModel.h
@@ -0,0 +1,101 @@
+#ifndef BSPLUGININFO_AUXCONFLICTMODEL_H
+#define BSPLUGININFO_AUXCONFLICTMODEL_H
+
+#include "TESData/PluginList.h"
+
+#include <QAbstractItemModel>
+
+namespace BSPluginInfo
+{
+
+class AuxConflictModel : public QAbstractItemModel
+{
+ Q_OBJECT
+
+public:
+ struct Item
+ {
+ QString name;
+ QList<TESData::TESFileHandle> sortedHandles;
+ };
+
+ explicit AuxConflictModel(const TESData::PluginList* pluginList,
+ QObject* parent = nullptr);
+
+ void appendItem(const QString& name, QList<TESData::TESFileHandle>&& handles);
+
+ QModelIndex index(int row, int column,
+ const QModelIndex& parent = QModelIndex()) const override;
+ QModelIndex parent(const QModelIndex& index) const override;
+ int rowCount(const QModelIndex& parent = QModelIndex()) const override;
+
+protected:
+ const TESData::PluginList* m_PluginList;
+ QList<Item> m_Items;
+};
+
+class AuxWinnerModel final : public AuxConflictModel
+{
+ Q_OBJECT
+
+public:
+ enum EColumn
+ {
+ COL_NAME,
+ COL_LOSERS,
+
+ COL_COUNT
+ };
+
+ using AuxConflictModel::AuxConflictModel;
+
+ int columnCount(const QModelIndex& parent = QModelIndex()) const override;
+ QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
+ QVariant headerData(int section, Qt::Orientation orientation,
+ int role = Qt::DisplayRole) const override;
+};
+
+class AuxLoserModel final : public AuxConflictModel
+{
+ Q_OBJECT
+
+public:
+ enum EColumn
+ {
+ COL_NAME,
+ COL_WINNER,
+
+ COL_COUNT
+ };
+
+ using AuxConflictModel::AuxConflictModel;
+
+ int columnCount(const QModelIndex& parent = QModelIndex()) const override;
+ QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
+ QVariant headerData(int section, Qt::Orientation orientation,
+ int role = Qt::DisplayRole) const override;
+};
+
+class AuxNonConflictModel final : public AuxConflictModel
+{
+ Q_OBJECT
+
+public:
+ enum EColumn
+ {
+ COL_NAME,
+
+ COL_COUNT
+ };
+
+ using AuxConflictModel::AuxConflictModel;
+
+ int columnCount(const QModelIndex& parent = QModelIndex()) const override;
+ QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
+ QVariant headerData(int section, Qt::Orientation orientation,
+ int role = Qt::DisplayRole) const override;
+};
+
+} // namespace BSPluginInfo
+
+#endif // BSPLUGININFO_AUXCONFLICTMODEL_H