openscenarioview.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 
29 #include "buttondelegate.h"
30 #include "openscenariomodel.h"
31 #include <QDialog>
32 
33 namespace Ui
34 {
35  class OpenScenarioView;
36 }
37 
38 /**
39 * @class OpenScenarioView
40 * @brief View that allows to open a previously saved scenario.
41 */
42 class OpenScenarioView : public QDialog
43 {
44  Q_OBJECT
45 
46 public:
47  /**
48  * Constructor that sets up the UI and delegates.
49  * @param parent parent widget
50  */
51  explicit OpenScenarioView(QWidget* parent = 0);
52  ~OpenScenarioView() override;
53 
54  /**
55  * Sets the model of this view.
56  * @param model new model
57  */
59 
60 signals:
61  void openScenario(int row, int column, QModelIndex parent);
62  void showAddPackageDialog();
63 
64 private slots:
65  void openButtonClicked(int row, int column, QModelIndex parent);
66  void on_lineEdit_textEdited(const QString& text);
67 
68  void on_treeView_doubleClicked(const QModelIndex& index);
69 
70  void on_openPackageButton_clicked();
71 
72 private:
73  Ui::OpenScenarioView* ui;
75  ButtonDelegate openButtonDelegate;
76 };
77 
buttondelegate.h
index
uint8_t index
Definition: EtherCATFrame.h:59
filterabletreemodelsortfilterproxymodel.h
OpenScenarioView::OpenScenarioView
OpenScenarioView(QWidget *parent=0)
Constructor that sets up the UI and delegates.
Definition: openscenarioview.cpp:29
openscenariomodel.h
Ui
ArmarX Headers.
Definition: ArmarXMainWindow.h:58
ButtonDelegate
Manages a button.
Definition: buttondelegate.h:40
FilterableTreeModelSortFilterProxyModelPtr
std::shared_ptr< FilterableTreeModelSortFilterProxyModel > FilterableTreeModelSortFilterProxyModelPtr
Definition: filterabletreemodelsortfilterproxymodel.h:65
OpenScenarioView::openScenario
void openScenario(int row, int column, QModelIndex parent)
OpenScenarioView::~OpenScenarioView
~OpenScenarioView() override
Definition: openscenarioview.cpp:42
OpenScenarioView::setModel
void setModel(FilterableTreeModelSortFilterProxyModelPtr model)
Sets the model of this view.
Definition: openscenarioview.cpp:47
OpenScenarioView::showAddPackageDialog
void showAddPackageDialog()
OpenScenarioView
View that allows to open a previously saved scenario.
Definition: openscenarioview.h:42