Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #include <OGRE/OgreLogManager.h>
00034
00035 #include <QCloseEvent>
00036 #include <QMenuBar>
00037
00038 #include <pluginlib/class_list_macros.h>
00039 #include <boost/program_options.hpp>
00040
00041 #include <rqt_rviz/rviz.h>
00042
00043
00044 namespace rqt_rviz {
00045
00046 RViz::RViz()
00047 : rqt_gui_cpp::Plugin()
00048 , context_(0)
00049 , widget_(0)
00050 , log_(0)
00051 , hide_menu_(false)
00052 , ogre_log_(false)
00053 {
00054 setObjectName("RViz");
00055 }
00056
00057 RViz::~RViz()
00058 {
00059 Ogre::LogManager* log_manager = Ogre::LogManager::getSingletonPtr();
00060 if (log_manager && log_)
00061 {
00062 log_manager->destroyLog(log_);
00063 }
00064 }
00065
00066 void RViz::initPlugin(qt_gui_cpp::PluginContext& context)
00067 {
00068 context_ = &context;
00069
00070 parseArguments();
00071
00072
00073 Ogre::LogManager* log_manager = Ogre::LogManager::getSingletonPtr();
00074 if (!log_manager)
00075 {
00076 log_manager = new Ogre::LogManager();
00077 }
00078 QString filename = QString("rqt_rviz_ogre") + (context.serialNumber() > 1 ? QString::number(context.serialNumber()) : QString("")) + QString(".log");
00079 log_ = log_manager->createLog(filename.toStdString().c_str(), false, false, !ogre_log_);
00080
00081 widget_ = new rviz::VisualizationFrame();
00082
00083
00084 QMenuBar* menu_bar = new QMenuBar();
00085 menu_bar->setNativeMenuBar(false);
00086 menu_bar->setVisible(!hide_menu_);
00087 widget_->setMenuBar(menu_bar);
00088
00089 widget_->initialize(display_config_.c_str());
00090
00091
00092 QMenu* menu = 0;
00093 {
00094
00095 const QObjectList& children = menu_bar->children();
00096 for (QObjectList::const_iterator it = children.begin(); !menu && it != children.end(); it++)
00097 {
00098 menu = dynamic_cast<QMenu*>(*it);
00099 }
00100 }
00101 if (menu)
00102 {
00103
00104 const QObjectList& children = menu->children();
00105 if (!children.empty())
00106 {
00107 QAction* action = dynamic_cast<QAction*>(children.last());
00108 if (action)
00109 {
00110 action->setVisible(false);
00111 }
00112 }
00113 }
00114
00115 widget_->setWindowTitle("RViz[*]");
00116 if (context.serialNumber() != 1)
00117 {
00118 widget_->setWindowTitle(widget_->windowTitle() + " (" + QString::number(context.serialNumber()) + ")");
00119 }
00120 context.addWidget(widget_);
00121
00122
00123 widget_->installEventFilter(this);
00124 }
00125
00126 void RViz::parseArguments()
00127 {
00128 namespace po = boost::program_options;
00129
00130 const QStringList& qargv = context_->argv();
00131
00132 const int argc = qargv.count();
00133
00134
00135
00136
00137 std::vector<QByteArray> argv_array;
00138 const char *argv[argc+1];
00139 argv[0] = "";
00140
00141 for (int i = 0; i < argc; ++i)
00142 {
00143 argv_array.push_back(qargv.at(i).toLocal8Bit());
00144 argv[i+1] = argv_array[i].constData();
00145 }
00146
00147 po::variables_map vm;
00148 po::options_description options;
00149 options.add_options()
00150 ("display-config,d", po::value<std::string>(), "")
00151 ("hide-menu,m", "")
00152 ("ogre-log,l", "");
00153
00154 try
00155 {
00156 po::store(po::parse_command_line(argc+1, argv, options), vm);
00157 po::notify(vm);
00158
00159 if (vm.count("hide-menu"))
00160 {
00161 hide_menu_ = true;
00162 }
00163
00164 if (vm.count("display-config"))
00165 {
00166 display_config_ = vm["display-config"].as<std::string>();
00167 }
00168
00169 if (vm.count("ogre-log"))
00170 {
00171 ogre_log_ = true;
00172 }
00173 }
00174 catch (std::exception& e)
00175 {
00176 ROS_ERROR("Error parsing command line: %s", e.what());
00177 }
00178 }
00179
00180 bool RViz::eventFilter(QObject* watched, QEvent* event)
00181 {
00182 if (watched == widget_ && event->type() == QEvent::Close)
00183 {
00184 event->ignore();
00185 context_->closePlugin();
00186 return true;
00187 }
00188
00189 return QObject::eventFilter(watched, event);
00190 }
00191
00192 }
00193
00194 PLUGINLIB_EXPORT_CLASS(rqt_rviz::RViz, rqt_gui_cpp::Plugin)