10#ifndef ENABLED_PROTOCOLS_MODEL_H
11#define ENABLED_PROTOCOLS_MODEL_H
19#include <QAbstractItemModel>
20#include <QSortFilterProxyModel>
155 QModelIndex
index(
int row,
int column,
156 const QModelIndex &
parent = QModelIndex())
const;
163 QModelIndex
parent(
const QModelIndex &
index)
const;
170 Qt::ItemFlags flags(
const QModelIndex &
index)
const;
178 QVariant data(
const QModelIndex &
index,
int role)
const;
187 bool setData(
const QModelIndex &
index,
const QVariant &value,
int role = Qt::EditRole);
196 QVariant
headerData(
int section, Qt::Orientation orientation,
197 int role = Qt::DisplayRole)
const;
285 virtual bool filterAcceptsRow(
int sourceRow,
const QModelIndex &sourceParent)
const override;
292 virtual Qt::ItemFlags flags(
const QModelIndex &index)
const override;
317 bool lessThan(
const QModelIndex &source_left,
const QModelIndex &source_right)
const override;
335 bool filterAcceptsSelf(
int sourceRow,
const QModelIndex &sourceParent)
const;
343 bool filterAcceptsChild(
int sourceRow,
const QModelIndex &sourceParent)
const;
Represents a protocol item that can be enabled or disabled in a tree model.
Definition enabled_protocols_model.h:26
QString description_
Definition enabled_protocols_model.h:100
QString description() const
Retrieves the description of the protocol.
Definition enabled_protocols_model.h:63
bool enabledInit_
Definition enabled_protocols_model.h:106
bool applyValue()
Applies the current enabled value to the underlying core structures.
Definition enabled_protocols_model.cpp:89
QString name() const
Retrieves the name of the protocol.
Definition enabled_protocols_model.h:57
virtual ~EnabledProtocolItem()
Destroys the EnabledProtocolItem.
Definition enabled_protocols_model.cpp:80
bool enabled_
Definition enabled_protocols_model.h:103
EnableProtocolType type_
Definition enabled_protocols_model.h:109
virtual void applyValuePrivate(bool value)=0
Implements the specific logic to apply the value change to the core.
EnableProtocolType type() const
Retrieves the type of the protocol item.
Definition enabled_protocols_model.cpp:84
QString name_
Definition enabled_protocols_model.h:97
void setEnabled(bool enable)
Sets the enabled state of the protocol.
Definition enabled_protocols_model.h:75
EnableProtocolType
Defines the type of enabled protocol.
Definition enabled_protocols_model.h:32
@ Heuristic
Definition enabled_protocols_model.h:35
@ Any
Definition enabled_protocols_model.h:33
@ Standard
Definition enabled_protocols_model.h:34
bool enabled() const
Checks if the protocol is currently marked as enabled.
Definition enabled_protocols_model.h:69
A tree model managing the list of all standard and heuristic protocols.
Definition enabled_protocols_model.h:116
static void disableProtocol(struct _protocol *protocol)
Disables a specific protocol directly in the core.
Definition enabled_protocols_model.cpp:325
bool setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole)
Sets data in the model for a given index and role.
Definition enabled_protocols_model.cpp:250
QVariant headerData(int section, Qt::Orientation orientation, int role=Qt::DisplayRole) const
Retrieves the header data for a specific section and role.
Definition enabled_protocols_model.cpp:135
QModelIndex parent(const QModelIndex &index) const
Retrieves the parent of a given index.
Definition enabled_protocols_model.cpp:151
void applyChanges(bool writeChanges=true)
Applies pending changes to the core protocol definitions.
Definition enabled_protocols_model.cpp:307
virtual ~EnabledProtocolsModel()
Destroys the EnabledProtocolsModel.
Definition enabled_protocols_model.cpp:108
QModelIndex index(int row, int column, const QModelIndex &parent=QModelIndex()) const
Generates an index for the given row and column.
Definition enabled_protocols_model.cpp:170
int rowCount(const QModelIndex &parent=QModelIndex()) const
Returns the number of rows under a given parent.
Definition enabled_protocols_model.cpp:113
static void saveChanges(bool writeChanges=true)
Triggers the core mechanism to save protocol changes.
Definition enabled_protocols_model.cpp:334
EnableProtocolData
Enumerates the custom data roles for the enabled protocols model.
Definition enabled_protocols_model.h:143
@ DATA_PROTOCOL_TYPE
Definition enabled_protocols_model.h:145
@ DATA_ENABLE
Definition enabled_protocols_model.h:144
void populate()
Populates the model with protocols from the core engine.
Definition enabled_protocols_model.cpp:282
int columnCount(const QModelIndex &parent=QModelIndex()) const
Returns the number of columns under a given parent.
Definition enabled_protocols_model.cpp:130
EnabledProtocolsColumn
Enumerates the columns for the enabled protocols model.
Definition enabled_protocols_model.h:134
@ colLast
Definition enabled_protocols_model.h:137
@ colProtocol
Definition enabled_protocols_model.h:135
@ colDescription
Definition enabled_protocols_model.h:136
A proxy model used for filtering and sorting the enabled protocols model.
Definition enabled_protocols_model.h:246
void setFilter(const QString &filter, EnabledProtocolsProxyModel::SearchType type, EnabledProtocolItem::EnableProtocolType protocolType)
Sets the active filter criteria.
Definition enabled_protocols_model.cpp:474
virtual bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const override
Determines whether a row from the source model should be displayed.
Definition enabled_protocols_model.cpp:389
EnableType
Defines the action type when batch enabling/disabling items.
Definition enabled_protocols_model.h:267
@ Invert
Definition enabled_protocols_model.h:270
@ Enable
Definition enabled_protocols_model.h:268
@ Disable
Definition enabled_protocols_model.h:269
SearchType
Defines the search filtering scope.
Definition enabled_protocols_model.h:254
@ EveryWhere
Definition enabled_protocols_model.h:255
@ OnlyProtocol
Definition enabled_protocols_model.h:256
@ OnlyDescription
Definition enabled_protocols_model.h:257
@ DisabledItems
Definition enabled_protocols_model.h:259
@ EnabledItems
Definition enabled_protocols_model.h:258
void setItemsEnable(EnabledProtocolsProxyModel::EnableType enable, QModelIndex parent=QModelIndex())
Applies an enable/disable action to a parent item and all its children.
Definition enabled_protocols_model.cpp:491
bool lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const override
Compares two source indices to determine their sort order.
Definition enabled_protocols_model.cpp:350
Base class to inherit basic tree item from.
Definition tree_model_helpers.h:25