openscenariomodel.h
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * Copyright (C) 2011-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5  *
6  * ArmarX is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * ArmarX is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  *
18  * @package ArmarXCore::core
19  * @author Cedric Seehausen (usdnr at kit dot edu)
20  * @date 2016
21  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22  * GNU General Public License
23  */
24 
25 
26 #pragma once
27 
28 #include <memory>
29 
30 #include "../gui/treemodel.h"
31 #include "openscenarioitem.h"
32 
33 /**
34 * @class OpenScenarioModel
35 * @brief Model used by the OpenScenarioView
36 */
38 {
39 public:
40  /**
41  * Constructor that sets up the root of this model.
42  */
44 
45  /**
46  * Returns the data of the item at the given index of the given role.
47  * @param index index of the item
48  * @param role role of the item
49  */
50  QVariant data(const QModelIndex& index, int role) const override;
51 
52  /**
53  * Deletes the current root and replaces it with a new one, as if this model was newly constructed.
54  */
55  void clear() override;
56 
57  /**
58  * Updates this model.
59  */
60  void update();
61 
63 };
64 
65 using OpenScenarioModelPtr = std::shared_ptr<OpenScenarioModel>;
TreeModel::index
QModelIndex index(int row, int column, const QModelIndex &parent=QModelIndex()) const override
Definition: treemodel.cpp:99
OpenScenarioModel
Model used by the OpenScenarioView.
Definition: openscenariomodel.h:37
OpenScenarioModel::update
void update()
Updates this model.
Definition: openscenariomodel.cpp:83
TreeModel
Definition: treemodel.h:36
OpenScenarioModel::getRootItem
OpenScenarioItem * getRootItem()
Definition: openscenariomodel.cpp:92
openscenarioitem.h
OpenScenarioModel::OpenScenarioModel
OpenScenarioModel()
Constructor that sets up the root of this model.
Definition: openscenariomodel.cpp:28
OpenScenarioModelPtr
std::shared_ptr< OpenScenarioModel > OpenScenarioModelPtr
Definition: openscenariomodel.h:65
OpenScenarioModel::clear
void clear() override
Deletes the current root and replaces it with a new one, as if this model was newly constructed.
Definition: openscenariomodel.cpp:75
OpenScenarioModel::data
QVariant data(const QModelIndex &index, int role) const override
Returns the data of the item at the given index of the given role.
Definition: openscenariomodel.cpp:34
OpenScenarioItem
Item in the TreeItemView. Every item represents a Scenario.
Definition: openscenarioitem.h:38