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