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
34namespace Ui
35{
36 class OpenScenarioView;
37}
38
39/**
40* @class OpenScenarioView
41* @brief View that allows to open a previously saved scenario.
42*/
43class OpenScenarioView : public QDialog
44{
45 Q_OBJECT
46
47public:
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
61signals:
62 void openScenario(int row, int column, QModelIndex parent);
64
65private 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
73private:
74 Ui::OpenScenarioView* ui;
76 ButtonDelegate openButtonDelegate;
77};
uint8_t index
Manages a button.
void openScenario(int row, int column, QModelIndex parent)
OpenScenarioView(QWidget *parent=0)
Constructor that sets up the UI and delegates.
void showAddPackageDialog()
~OpenScenarioView() override
void setModel(FilterableTreeModelSortFilterProxyModelPtr model)
Sets the model of this view.
std::shared_ptr< FilterableTreeModelSortFilterProxyModel > FilterableTreeModelSortFilterProxyModelPtr
ArmarX Headers.