rviz_visual_tools_gui.h
Go to the documentation of this file.
1 /*********************************************************************
2  * Software License Agreement (BSD License)
3  *
4  * Copyright (c) 2017, PickNik Consulting
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * * Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  * * Redistributions in binary form must reproduce the above
14  * copyright notice, this list of conditions and the following
15  * disclaimer in the documentation and/or other materials provided
16  * with the distribution.
17  * * Neither the name of PickNik Consulting nor the names of its
18  * contributors may be used to endorse or promote products derived
19  * from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  *********************************************************************/
34 
35 /* Author: Dave Coleman
36  Desc: Rviz display panel for controlling and debugging ROS applications
37 */
38 
39 // TODO(dave): convert to flow layout:
40 // http://doc.qt.io/qt-5/qtwidgets-layouts-flowlayout-example.html
41 
42 #ifndef RVIZ_VISUAL_TOOLS__RVIZ_VISUAL_TOOLS_GUI_H
43 #define RVIZ_VISUAL_TOOLS__RVIZ_VISUAL_TOOLS_GUI_H
44 
45 #ifndef Q_MOC_RUN
46 #include <ros/ros.h>
47 
48 #include <rviz/panel.h>
49 #endif
50 
51 #include <QPushButton>
52 #include <QComboBox>
53 
55 
56 class QLineEdit;
57 class QSpinBox;
58 
59 namespace rviz_visual_tools
60 {
62 {
63  Q_OBJECT
64 public:
65  explicit RvizVisualToolsGui(QWidget* parent = 0);
66 
67  virtual void load(const rviz::Config& config);
68  virtual void save(rviz::Config config) const;
69 
70 public Q_SLOTS:
71 
72 protected Q_SLOTS:
73 
74  void moveNext();
75 
76  void moveAuto();
77 
78  void moveFullAuto();
79 
80  void moveStop();
81 
82 protected:
83  QPushButton* btn_next_;
84  QPushButton* btn_auto_;
85  QPushButton* btn_full_auto_;
86  QPushButton* btn_stop_;
87 
89 };
90 
91 } // end namespace rviz_visual_tools
92 
93 #endif // RVIZ_VISUAL_TOOLS__RVIZ_VISUAL_TOOLS_GUI_H
virtual void save(rviz::Config config) const
config
virtual void load(const rviz::Config &config)


rviz_visual_tools
Author(s): Dave Coleman
autogenerated on Mon Feb 25 2019 03:54:12