Cute Chess  0.1
engineoptionmodel.h
1 /*
2  This file is part of Cute Chess.
3 
4  Cute Chess is free software: you can redistribute it and/or modify
5  it under the terms of the GNU General Public License as published by
6  the Free Software Foundation, either version 3 of the License, or
7  (at your option) any later version.
8 
9  Cute Chess is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with Cute Chess. If not, see <http://www.gnu.org/licenses/>.
16 */
17 
18 #ifndef ENGINE_OPTION_MODEL_H
19 #define ENGINE_OPTION_MODEL_H
20 
21 #include <QAbstractItemModel>
22 
23 class EngineOption;
24 
26 {
27  Q_OBJECT
28 
29  public:
30  EngineOptionModel(QObject* parent = nullptr);
31  EngineOptionModel(QList<EngineOption*> options, QObject* parent = nullptr);
32 
33  void setOptions(const QList<EngineOption*>& options);
34 
35  // Inherited from QAbstractItemModel
36  virtual QModelIndex index(int row, int column,
37  const QModelIndex& parent = QModelIndex()) const;
38  virtual QModelIndex parent(const QModelIndex& index) const;
39  virtual int rowCount(const QModelIndex& parent = QModelIndex()) const;
40  virtual int columnCount(const QModelIndex& parent = QModelIndex()) const;
41  virtual QVariant data(const QModelIndex& index, int role) const;
42  virtual QVariant headerData(int section, Qt::Orientation orientation,
43  int role = Qt::DisplayRole) const;
44  virtual Qt::ItemFlags flags(const QModelIndex& index) const;
45  virtual bool setData(const QModelIndex& index, const QVariant& value,
46  int role = Qt::EditRole);
47 
48  private:
49  QList<EngineOption*> m_options;
50 };
51 
52 #endif // ENGINE_OPTION_MODEL_H
Definition: engineoptionmodel.h:25
Definition: engineoption.h:24