00001 // ***************************************************************************** 00002 // 00003 // Copyright (c) 2014, Southwest Research Institute® (SwRI®) 00004 // All rights reserved. 00005 // 00006 // Redistribution and use in source and binary forms, with or without 00007 // modification, are permitted provided that the following conditions are met: 00008 // * Redistributions of source code must retain the above copyright 00009 // notice, this list of conditions and the following disclaimer. 00010 // * Redistributions in binary form must reproduce the above copyright 00011 // notice, this list of conditions and the following disclaimer in the 00012 // documentation and/or other materials provided with the distribution. 00013 // * Neither the name of Southwest Research Institute® (SwRI®) nor the 00014 // names of its contributors may be used to endorse or promote products 00015 // derived from this software without specific prior written permission. 00016 // 00017 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00018 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00019 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00020 // ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY 00021 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 00022 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00023 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 00024 // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 00025 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00026 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00027 // 00028 // ***************************************************************************** 00029 00030 #ifndef MAPVIZ_RQT_MAPVIZ_H 00031 #define MAPVIZ_RQT_MAPVIZ_H 00032 00033 /* 00034 * The RQT GUI CPP files use the Qt macros "slots" and "signals". These conflict 00035 * with Boost macros of the same name; normally we fix this by adding "-DQT_NO_KEYWORDS" 00036 * in our CMakeLists file, then using Q_SLOTS and Q_SIGNALS in our source code instead. 00037 * Since we can't edit the ROS source code, though, we need to define those macros before 00038 * we include the ROS headers and then undefine them afterwards. 00039 */ 00040 #define slots 00041 #define signals 00042 #include <rqt_gui_cpp/plugin.h> 00043 #undef slots 00044 #undef signals 00045 00046 #include "mapviz.h" 00047 00048 namespace mapviz 00049 { 00050 class RqtMapviz : public rqt_gui_cpp::Plugin 00051 { 00052 Q_OBJECT 00053 public: 00054 RqtMapviz(); 00055 virtual void initPlugin(qt_gui_cpp::PluginContext& context); 00056 virtual void shutdownPlugin(); 00057 virtual void saveSettings(qt_gui_cpp::Settings& plugin_settings, qt_gui_cpp::Settings& instance_settings) const; 00058 virtual void restoreSettings(const qt_gui_cpp::Settings& plugin_settings, const qt_gui_cpp::Settings& instance_settings); 00059 private: 00060 Mapviz* widget_; 00061 }; 00062 } 00063 00064 #endif //MAPVIZ_RQT_MAPVIZ_H