mirror-chatterino2/src/controllers/commands/CommandModel.hpp

28 lines
715 B
C++
Raw Normal View History

#pragma once
#include <QObject>
2018-06-26 14:09:39 +02:00
#include "controllers/commands/Command.hpp"
2018-06-26 15:33:51 +02:00
#include "common/SignalVectorModel.hpp"
namespace chatterino {
class CommandController;
class CommandModel : public util::SignalVectorModel<Command>
{
explicit CommandModel(QObject *parent);
protected:
// turn a vector item into a model row
virtual Command getItemFromRow(std::vector<QStandardItem *> &row,
const Command &command) override;
// turns a row in the model into a vector item
virtual void getRowFromItem(const Command &item, std::vector<QStandardItem *> &row) override;
friend class CommandController;
};
} // namespace chatterino