diff --git a/examples/README.md b/examples/README.md index 66d367799..e429d7f12 100644 --- a/examples/README.md +++ b/examples/README.md @@ -1,17 +1,17 @@ -This directory contains examples which are not shipped with Ignition GUI +This directory contains examples which are not shipped with Gazebo GUI # Standalone Examples of how to build and run standalone applications which use -Ignition-GUI as a library +Gazebo GUI as a library # Plugin -Examples of how to build plugins which can then be used with Ignition GUI's +Examples of how to build plugins which can then be used with Gazebo GUI's command line tool, or used by standalone applications. # Config -Example configuration files which can be used with Ignition GUI's command +Example configuration files which can be used with Gazebo GUI's command line tool or with standalone applications diff --git a/examples/config/plugin_params.config b/examples/config/plugin_params.config index 8f6e60850..46fb98998 100644 --- a/examples/config/plugin_params.config +++ b/examples/config/plugin_params.config @@ -6,7 +6,7 @@ diff --git a/examples/plugin/custom_context_menu/CMakeLists.txt b/examples/plugin/custom_context_menu/CMakeLists.txt index 37a3a1ac5..37bd86e68 100644 --- a/examples/plugin/custom_context_menu/CMakeLists.txt +++ b/examples/plugin/custom_context_menu/CMakeLists.txt @@ -17,7 +17,7 @@ find_package (Qt5 REQUIRED ) -# Find the Ignition gui library +# Find the Gazebo GUI library find_package(ignition-gui7 REQUIRED) find_package(ignition-common5 REQUIRED) diff --git a/examples/plugin/dialog_from_plugin/CMakeLists.txt b/examples/plugin/dialog_from_plugin/CMakeLists.txt index f44d96b03..f0036cb9e 100644 --- a/examples/plugin/dialog_from_plugin/CMakeLists.txt +++ b/examples/plugin/dialog_from_plugin/CMakeLists.txt @@ -17,7 +17,7 @@ find_package (Qt5 REQUIRED ) -# Find the Ignition gui library +# Find the Gazebo GUI library find_package(ignition-gui7 REQUIRED) find_package(ignition-common5 REQUIRED) diff --git a/examples/plugin/hello_plugin/CMakeLists.txt b/examples/plugin/hello_plugin/CMakeLists.txt index 44a9a4119..f53511e9e 100644 --- a/examples/plugin/hello_plugin/CMakeLists.txt +++ b/examples/plugin/hello_plugin/CMakeLists.txt @@ -17,7 +17,7 @@ find_package (Qt5 REQUIRED ) -# Find the Ignition gui library +# Find the Gazebo GUI library find_package(ignition-gui7 REQUIRED) find_package(ignition-common5 REQUIRED) diff --git a/examples/plugin/hello_plugin/HelloPlugin.hh b/examples/plugin/hello_plugin/HelloPlugin.hh index 144937d75..5b4f105cb 100644 --- a/examples/plugin/hello_plugin/HelloPlugin.hh +++ b/examples/plugin/hello_plugin/HelloPlugin.hh @@ -37,7 +37,7 @@ namespace ignition /// \brief Destructor public: virtual ~HelloPlugin(); - /// \brief Called by Ignition GUI when plugin is instantiated. + /// \brief Called by Gazebo GUI when plugin is instantiated. /// \param[in] _pluginElem XML configuration for this plugin. public: virtual void LoadConfig(const tinyxml2::XMLElement *_pluginElem) override; diff --git a/examples/plugin/ign_components/README.md b/examples/plugin/ign_components/README.md index 9737c224d..d946455c0 100644 --- a/examples/plugin/ign_components/README.md +++ b/examples/plugin/ign_components/README.md @@ -1,4 +1,4 @@ -Demo of QML components provided by Ignition GUI which can be +Demo of QML components provided by Gazebo GUI which can be useful for downstream developers. ## Build diff --git a/examples/plugin/multiple_qml/CMakeLists.txt b/examples/plugin/multiple_qml/CMakeLists.txt index ba0baf53e..61d214ff2 100644 --- a/examples/plugin/multiple_qml/CMakeLists.txt +++ b/examples/plugin/multiple_qml/CMakeLists.txt @@ -17,7 +17,7 @@ find_package (Qt5 REQUIRED ) -# Find the Ignition gui library +# Find the Gazebo GUI library find_package(ignition-gui7 REQUIRED) find_package(ignition-common5 REQUIRED) diff --git a/examples/standalone/custom_drawer/CMakeLists.txt b/examples/standalone/custom_drawer/CMakeLists.txt index d0503d1d9..e304088b7 100644 --- a/examples/standalone/custom_drawer/CMakeLists.txt +++ b/examples/standalone/custom_drawer/CMakeLists.txt @@ -17,7 +17,7 @@ find_package (Qt5 REQUIRED ) -# Find the Ignition gui library +# Find the Gazebo GUI library find_package(ignition-gui7 REQUIRED) QT5_ADD_RESOURCES(resources_RCC custom_drawer.qrc) diff --git a/examples/standalone/custom_drawer/CustomDrawer.qml b/examples/standalone/custom_drawer/CustomDrawer.qml index 6ac642687..dcbf089a5 100644 --- a/examples/standalone/custom_drawer/CustomDrawer.qml +++ b/examples/standalone/custom_drawer/CustomDrawer.qml @@ -50,7 +50,7 @@ Rectangle { actionElement: "cppActionFromQml" } - // Actions provided by Ignition GUI, with custom titles + // Actions provided by Gazebo GUI, with custom titles ListElement { title: "Call default action (Style)" actionElement: "styleSettings" diff --git a/examples/standalone/dialogs/CMakeLists.txt b/examples/standalone/dialogs/CMakeLists.txt index c8277c19f..389fe3eed 100644 --- a/examples/standalone/dialogs/CMakeLists.txt +++ b/examples/standalone/dialogs/CMakeLists.txt @@ -17,7 +17,7 @@ find_package (Qt5 REQUIRED ) -# Find the Ignition gui library +# Find the Gazebo GUI library find_package(ignition-gui7 REQUIRED) set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${IGNITION-GUI_CXX_FLAGS}") diff --git a/examples/standalone/marker/README.md b/examples/standalone/marker/README.md index a0c5bd565..6beea4cb6 100644 --- a/examples/standalone/marker/README.md +++ b/examples/standalone/marker/README.md @@ -1,7 +1,7 @@ -# Ignition Visualization Marker Example +# Gazebo Visualization Marker Example This example demonstrates how to create, modify, and delete visualization -markers in Ignition GUI. +markers in Gazebo GUI. ## Build Instructions @@ -19,4 +19,4 @@ Launch ign gazebo unpaused then from the build directory above: ./marker The terminal will output messages indicating visualization changes that -will occur in Ignition GUI's render window. +will occur in Gazebo GUI's render window. diff --git a/examples/standalone/scene_provider/README.md b/examples/standalone/scene_provider/README.md index d60425399..d434dd970 100644 --- a/examples/standalone/scene_provider/README.md +++ b/examples/standalone/scene_provider/README.md @@ -1,11 +1,11 @@ ## Scene provider This example demonstrates how to populate and update a 3D scene using -Ignition Transport. +Gazebo Transport. This example is meant to be used with `examples/config/scened.config`, which loads the `Scene3D` plugin to create the scene, and the `TransportSceneManager` -plugin to update the scene using Ignition Transport. +plugin to update the scene using Gazebo Transport. ## Build diff --git a/examples/standalone/window/CMakeLists.txt b/examples/standalone/window/CMakeLists.txt index 24ee52ae4..b5036e370 100644 --- a/examples/standalone/window/CMakeLists.txt +++ b/examples/standalone/window/CMakeLists.txt @@ -17,7 +17,7 @@ find_package (Qt5 REQUIRED ) -# Find the Ignition gui library +# Find the Gazebo GUI library find_package(ignition-gui7 REQUIRED) set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${IGNITION-GUI_CXX_FLAGS}") diff --git a/include/gz/gui/Application.hh b/include/gz/gui/Application.hh index c947abeef..334a5ef85 100644 --- a/include/gz/gui/Application.hh +++ b/include/gz/gui/Application.hh @@ -57,7 +57,7 @@ namespace ignition kDialog = 1 }; - /// \brief An Ignition GUI application loads a QML engine and + /// \brief A Gazebo GUI application loads a QML engine and /// provides an API to load plugins and configuration files. The application /// supports either running a single main window or several plugins as /// standalone dialogs. @@ -139,7 +139,7 @@ namespace ignition /// 1. Paths given by the environment variable /// 2. Paths added by calling addPluginPath /// 3. Path ~/.gz/gui/plugins - /// 4. The path where Ignition GUI plugins are installed + /// 4. The path where Gazebo GUI plugins are installed /// /// \return A vector of pairs, where each pair contains: /// * A path diff --git a/include/gz/gui/Conversions.hh b/include/gz/gui/Conversions.hh index 2b566237f..f32bd6652 100644 --- a/include/gz/gui/Conversions.hh +++ b/include/gz/gui/Conversions.hh @@ -44,62 +44,62 @@ namespace ignition namespace gui { /// \brief Return the equivalent Qt color - /// \param[in] _color Ignition color to convert + /// \param[in] _color Gazebo color to convert /// \return Qt color value IGNITION_GUI_VISIBLE QColor convert(const math::Color &_color); - /// \brief Return the equivalent Ignition color + /// \brief Return the equivalent Gazebo color /// \param[in] _color Qt color to convert - /// \return Ignition color value + /// \return Gazebo color value IGNITION_GUI_VISIBLE math::Color convert(const QColor &_color); /// \brief Return the equivalent QPointF. - /// \param[in] _pt Ignition vector to convert. + /// \param[in] _pt Gazebo vector to convert. /// \return QPointF. IGNITION_GUI_VISIBLE QPointF convert(const math::Vector2d &_pt); - /// \brief Return the equivalent Ignition vector. + /// \brief Return the equivalent Gazebo vector. /// \param[in] _pt QPointF to convert - /// \return Ignition Vector2d. + /// \return Gazebo Vector2d. IGNITION_GUI_VISIBLE math::Vector2d convert(const QPointF &_pt); /// \brief Return the equivalent Qt vector 3d. - /// \param[in] _vec Ignition vector 3d to convert. + /// \param[in] _vec Gazebo vector 3d to convert. /// \return Qt vector 3d value. IGNITION_GUI_VISIBLE QVector3D convert(const math::Vector3d &_vec); - /// \brief Return the equivalent Ignition vector 3d. + /// \brief Return the equivalent Gazebo vector 3d. /// \param[in] _vec Qt vector 3d to convert. - /// \return Ignition vector 3d value + /// \return Gazebo vector 3d value IGNITION_GUI_VISIBLE math::Vector3d convert(const QVector3D &_vec); - /// \brief Return the equivalent Ignition mouse event. + /// \brief Return the equivalent Gazebo mouse event. /// /// Note that there isn't a 1-1 mapping between these types, so fields such /// as common::MouseEvent::PressPos need to be set afterwards. /// \param[in] _e Qt mouse event - /// \return Ignition mouse event + /// \return Gazebo mouse event IGNITION_GUI_VISIBLE common::MouseEvent convert(const QMouseEvent &_e); - /// \brief Return the equivalent Ignition mouse event. + /// \brief Return the equivalent Gazebo mouse event. /// /// Note that there isn't a 1-1 mapping between these types. /// \param[in] _e Qt wheel event - /// \return Ignition mouse event + /// \return Gazebo mouse event IGNITION_GUI_VISIBLE common::MouseEvent convert(const QWheelEvent &_e); - /// \brief Return the equivalent ignition key event. + /// \brief Return the equivalent Gazebo key event. /// /// \param[in] _e Qt key event - /// \return Ignition key event + /// \return Gazebo key event IGNITION_GUI_VISIBLE common::KeyEvent convert(const QKeyEvent &_e); } diff --git a/include/gz/gui/Helpers.hh b/include/gz/gui/Helpers.hh index d25b5c759..72e95912f 100644 --- a/include/gz/gui/Helpers.hh +++ b/include/gz/gui/Helpers.hh @@ -91,9 +91,9 @@ namespace ignition /// \brief Import path for ign-gui QML modules added to the Qt resource /// system. This helper function returns the QRC resource path where custom - /// ignition QML modules can be imported from. To import an ignition QML + /// Gazebo QML modules can be imported from. To import a Gazebo QML /// module, add this path to the QML engine's import path list before - /// attempting to load a QML file that imports ignition QML modules. + /// attempting to load a QML file that imports Gazebo QML modules. /// \return Resousrce path prefix as a string IGNITION_GUI_VISIBLE const QString qmlQrcImportPath(); diff --git a/include/gz/gui/Plugin.hh b/include/gz/gui/Plugin.hh index dc96bc56e..ed15ebfbe 100644 --- a/include/gz/gui/Plugin.hh +++ b/include/gz/gui/Plugin.hh @@ -37,7 +37,7 @@ namespace ignition { class PluginPrivate; - /// \brief Base class for Ignition GUI plugins. + /// \brief Base class for Gazebo GUI plugins. /// /// When inheriting from this plugin, the following are assumed: /// @@ -127,7 +127,7 @@ namespace ignition protected: std::string configStr; /// \brief Load configuration which is common to all plugins and handled - /// by Ignition GUI. + /// by Gazebo GUI. /// \details Called when a plugin is first created. /// \sa LoadConfig /// \param[in] _ignGuiElem element within the . diff --git a/include/gz/gui/config.hh.in b/include/gz/gui/config.hh.in index d2f3445e0..ad0b28a6e 100644 --- a/include/gz/gui/config.hh.in +++ b/include/gz/gui/config.hh.in @@ -8,7 +8,7 @@ #define IGNITION_GUI_VERSION "${PROJECT_VERSION}" #define IGNITION_GUI_VERSION_FULL "${PROJECT_VERSION_FULL}" -#define IGNITION_GUI_VERSION_HEADER "Ignition ${IGN_DESIGNATION}, version ${PROJECT_VERSION_FULL}\nCopyright (C) 2017 Open Source Robotics Foundation.\nReleased under the Apache 2.0 License.\n\n" +#define IGNITION_GUI_VERSION_HEADER "Gazebo ${IGN_DESIGNATION}, version ${PROJECT_VERSION_FULL}\nCopyright (C) 2017 Open Source Robotics Foundation.\nReleased under the Apache 2.0 License.\n\n" #cmakedefine BUILD_TYPE_PROFILE 1 #cmakedefine BUILD_TYPE_DEBUG 1 diff --git a/include/gz/gui/qml/Main.qml b/include/gz/gui/qml/Main.qml index a1401bab8..eebf90697 100644 --- a/include/gz/gui/qml/Main.qml +++ b/include/gz/gui/qml/Main.qml @@ -24,7 +24,7 @@ import "qrc:/qml" ApplicationWindow { - title: qsTr("Ignition GUI") + title: qsTr("Gazebo GUI") width: 1200 height: 1000 minimumWidth: 300 @@ -255,7 +255,7 @@ ApplicationWindow id: aboutDialog modal: true focus: true - title: "Ignition GUI" + title: "Gazebo GUI" x: (window.width - width) / 2 y: window.height / 6 width: Math.min(window.width, window.height) / 3 * 2 diff --git a/include/gz/gui/qml/images/gazebo_logo.png b/include/gz/gui/qml/images/gazebo_logo.png new file mode 100644 index 000000000..f5b4cdfa6 Binary files /dev/null and b/include/gz/gui/qml/images/gazebo_logo.png differ diff --git a/include/gz/gui/qml/images/ignition_logo_50x50.png b/include/gz/gui/qml/images/ignition_logo_50x50.png deleted file mode 100644 index 61ea6b9d2..000000000 Binary files a/include/gz/gui/qml/images/ignition_logo_50x50.png and /dev/null differ diff --git a/include/gz/gui/resources.qrc b/include/gz/gui/resources.qrc index 823ec03bc..d2db5833c 100644 --- a/include/gz/gui/resources.qrc +++ b/include/gz/gui/resources.qrc @@ -18,7 +18,7 @@ qml/StandaloneDialog.qml qml/StyleDialog.qml - qml/images/ignition_logo_50x50.png + qml/images/gazebo_logo.png qml/images/drawer.png qml/images/menu.png qml/images/export_icon.png diff --git a/include/ignition/gui/qml/Main.qml b/include/ignition/gui/qml/Main.qml index 67aa99e87..15d5ba89e 100644 --- a/include/ignition/gui/qml/Main.qml +++ b/include/ignition/gui/qml/Main.qml @@ -24,7 +24,7 @@ import "qrc:/qml" ApplicationWindow { - title: qsTr("Ignition GUI") + title: qsTr("Gazebo GUI") width: 1200 height: 1000 minimumWidth: 300 @@ -255,7 +255,7 @@ ApplicationWindow id: aboutDialog modal: true focus: true - title: "Ignition GUI" + title: "Gazebo GUI" x: (window.width - width) / 2 y: window.height / 6 width: Math.min(window.width, window.height) / 3 * 2 diff --git a/include/ignition/gui/qml/images/ignition_logo_50x50.png b/include/ignition/gui/qml/images/ignition_logo_50x50.png deleted file mode 100644 index 61ea6b9d2..000000000 Binary files a/include/ignition/gui/qml/images/ignition_logo_50x50.png and /dev/null differ diff --git a/include/ignition/gui/resources.qrc b/include/ignition/gui/resources.qrc index 2f749a6bd..cb9fb5683 100644 --- a/include/ignition/gui/resources.qrc +++ b/include/ignition/gui/resources.qrc @@ -18,7 +18,7 @@ qml/StandaloneDialog.qml qml/StyleDialog.qml - qml/images/ignition_logo_50x50.png + qml/images/gazebo_logo.png qml/images/drawer.png qml/images/menu.png qml/images/export_icon.png diff --git a/src/Application.cc b/src/Application.cc index 69b8a2ddd..188a9daa5 100644 --- a/src/Application.cc +++ b/src/Application.cc @@ -93,9 +93,9 @@ Application::Application(int &_argc, char **_argv, const WindowType _type) { igndbg << "Initializing application." << std::endl; - this->setOrganizationName("Ignition"); - this->setOrganizationDomain("ignitionrobotics.org"); - this->setApplicationName("Ignition GUI"); + this->setOrganizationName("Gazebo"); + this->setOrganizationDomain("gazebosim.org"); + this->setApplicationName("Gazebo GUI"); #if __APPLE__ // Use the Metal graphics API on macOS. diff --git a/src/Conversions_TEST.cc b/src/Conversions_TEST.cc index 266ca0709..1f87a2de4 100644 --- a/src/Conversions_TEST.cc +++ b/src/Conversions_TEST.cc @@ -30,7 +30,7 @@ using namespace gui; ///////////////////////////////////////////////// TEST(ConversionsTest, Color) { - // Ignition to Qt to Ignition + // Gazebo to Qt to Gazebo { double red = 0.1; double green = 0.3; @@ -48,7 +48,7 @@ TEST(ConversionsTest, Color) EXPECT_NEAR(newColor.A(), newColor.A(), tol); } - // Qt to Ignition to Qt + // Qt to Gazebo to Qt { int red = 100; int green = 150; @@ -66,13 +66,13 @@ TEST(ConversionsTest, Point2d) double x = -0.5; double y = 123; - // Ignition to Qt to Ignition + // Gazebo to Qt to Gazebo { math::Vector2d point(x, y); EXPECT_EQ(convert(convert(point)), point); } - // Qt to Ignition to Qt + // Qt to Gazebo to Qt { QPointF point(x, y); EXPECT_EQ(convert(convert(point)), point); @@ -86,13 +86,13 @@ TEST(ConversionsTest, Vector3d) double y = 0; double z = 1234; - // Ignition to Qt to Ignition + // Gazebo to Qt to Gazebo { math::Vector3d vec(x, y, z); EXPECT_EQ(convert(convert(vec)), vec); } - // Qt to Ignition to Qt + // Qt to Gazebo to Qt { QVector3D vec(x, y, z); EXPECT_EQ(convert(convert(vec)), vec); diff --git a/src/MainWindow.cc b/src/MainWindow.cc index d78093217..ed3927e71 100644 --- a/src/MainWindow.cc +++ b/src/MainWindow.cc @@ -118,7 +118,7 @@ MainWindow::MainWindow() return; } - App()->setWindowIcon(QIcon(":/qml/images/ignition_logo_50x50.png")); + App()->setWindowIcon(QIcon(":/qml/images/gazebo_logo.png")); } ///////////////////////////////////////////////// diff --git a/src/cmd/cmdgui.rb.in b/src/cmd/cmdgui.rb.in index 2b766662f..c924127ec 100644 --- a/src/cmd/cmdgui.rb.in +++ b/src/cmd/cmdgui.rb.in @@ -37,7 +37,7 @@ COMMON_OPTIONS = " \n" + ' --versions Show the available versions.' COMMANDS = { 'gui' => - "Ignition GUI tool.\n\n" + + "Gazebo GUI tool.\n\n" + " ign gui [options]\n\n" + "Options:\n\n" + " -l [ --list ] List all available plugins.\n" + @@ -56,7 +56,7 @@ COMMANDS = { 'gui' => } # -# Class for the Ignition gui command line tools. +# Class for the Gazebo gui command line tools. # class Cmd # diff --git a/src/plugins/CMakeLists.txt b/src/plugins/CMakeLists.txt index d6a9efb7e..4882f2237 100644 --- a/src/plugins/CMakeLists.txt +++ b/src/plugins/CMakeLists.txt @@ -4,7 +4,7 @@ # [PUBLIC_LINK_LIBS ] # [PRIVATE_LINK_LIBS ]) # -# Add a plugin library to Ignition GUI. +# Add a plugin library to Gazebo GUI. # # Required. Name of the library # @@ -46,7 +46,7 @@ endfunction() # [PUBLIC_LINK_LIBS ] # [PRIVATE_LINK_LIBS ]) # -# Add a plugin to Ignition GUI. +# Add a plugin to Gazebo GUI. # # Required. Name of the plugin. # diff --git a/src/plugins/grid_config/GridConfig.hh b/src/plugins/grid_config/GridConfig.hh index e825de7b8..a9b71d8b0 100644 --- a/src/plugins/grid_config/GridConfig.hh +++ b/src/plugins/grid_config/GridConfig.hh @@ -29,7 +29,7 @@ namespace gui { class GridConfigPrivate; - /// \brief Manages grids in an Ignition Rendering scene. This plugin can be + /// \brief Manages grids in an Gazebo Rendering scene. This plugin can be /// used for: /// * Introspecting grids /// * Editing grids diff --git a/src/plugins/image_display/ImageDisplay.hh b/src/plugins/image_display/ImageDisplay.hh index c445a9b4e..88f68ab81 100644 --- a/src/plugins/image_display/ImageDisplay.hh +++ b/src/plugins/image_display/ImageDisplay.hh @@ -37,7 +37,7 @@ namespace plugins { class ImageDisplayPrivate; - /// \brief Display images coming through an Ignition transport topic. + /// \brief Display images coming through an Gazebo Transport topic. /// /// ## Configuration /// diff --git a/src/plugins/image_display/ImageDisplay.qml b/src/plugins/image_display/ImageDisplay.qml index b36bdb3e4..fa78102e1 100644 --- a/src/plugins/image_display/ImageDisplay.qml +++ b/src/plugins/image_display/ImageDisplay.qml @@ -83,7 +83,7 @@ Rectangle { ToolTip.visible: hovered ToolTip.delay: tooltipDelay ToolTip.timeout: tooltipTimeout - ToolTip.text: qsTr("Ignition transport topics publishing Image messages") + ToolTip.text: qsTr("Gazebo Transport topics publishing Image messages") } } Image { diff --git a/src/plugins/marker_manager/MarkerManager.cc b/src/plugins/marker_manager/MarkerManager.cc index bc4ba1db0..cb98c67f2 100644 --- a/src/plugins/marker_manager/MarkerManager.cc +++ b/src/plugins/marker_manager/MarkerManager.cc @@ -122,7 +122,7 @@ class ignition::gui::plugins::MarkerManagerPrivate public: std::map> visuals; - /// \brief Ignition node + /// \brief Gazebo node public: ignition::transport::Node node; /// \brief Topic name for the marker service diff --git a/src/plugins/minimal_scene/MinimalScene.hh b/src/plugins/minimal_scene/MinimalScene.hh index cf76c1cfe..525f92c75 100644 --- a/src/plugins/minimal_scene/MinimalScene.hh +++ b/src/plugins/minimal_scene/MinimalScene.hh @@ -39,11 +39,11 @@ namespace gui { namespace plugins { - /// \brief Creates an ignition rendering scene and user camera. + /// \brief Creates a Gazebo rendering scene and user camera. /// It is possible to orbit the camera around the scene with /// the mouse. Use other plugins to manage objects in the scene. /// - /// Only one plugin displaying an Ignition Rendering scene can be used at a + /// Only one plugin displaying an Gazebo Rendering scene can be used at a /// time. /// /// ## Configuration diff --git a/src/plugins/navsat_map/NavSatMap.hh b/src/plugins/navsat_map/NavSatMap.hh index eadddbb88..e9c739b04 100644 --- a/src/plugins/navsat_map/NavSatMap.hh +++ b/src/plugins/navsat_map/NavSatMap.hh @@ -37,7 +37,7 @@ namespace plugins { class NavSatMapPrivate; - /// \brief Display NavSat messages coming through an Ignition transport topic + /// \brief Display NavSat messages coming through an Gazebo Transport topic /// on top of a map. /// /// ## Configuration diff --git a/src/plugins/navsat_map/NavSatMap.qml b/src/plugins/navsat_map/NavSatMap.qml index 9977fad9e..3e7659b29 100644 --- a/src/plugins/navsat_map/NavSatMap.qml +++ b/src/plugins/navsat_map/NavSatMap.qml @@ -65,7 +65,7 @@ Item { } ToolTip.visible: hovered ToolTip.delay: Qt.styleHints.mousePressAndHoldInterval - ToolTip.text: qsTr("Ignition Transport topics publishing NavSat messages") + ToolTip.text: qsTr("Gazebo Transport topics publishing NavSat messages") } } diff --git a/src/plugins/plotting/TransportPlotting.hh b/src/plugins/plotting/TransportPlotting.hh index 3b3da6336..96c214672 100644 --- a/src/plugins/plotting/TransportPlotting.hh +++ b/src/plugins/plotting/TransportPlotting.hh @@ -30,7 +30,7 @@ namespace gui namespace plugins { -/// \brief Plots fields from Ignition Transport topics. +/// \brief Plots fields from Gazebo Transport topics. /// Fields can be dragged from the Topic Viewer or the Component Inspector. class TransportPlotting : public ignition::gui::Plugin { diff --git a/src/plugins/point_cloud/PointCloud.qml b/src/plugins/point_cloud/PointCloud.qml index 5a4ef1eab..41bbafdd0 100644 --- a/src/plugins/point_cloud/PointCloud.qml +++ b/src/plugins/point_cloud/PointCloud.qml @@ -89,7 +89,7 @@ ColumnLayout { } ToolTip.visible: hovered ToolTip.delay: Qt.styleHints.mousePressAndHoldInterval - ToolTip.text: qsTr("Ignition transport topics publishing PointCloudPacked messages") + ToolTip.text: qsTr("Gazebo Transport topics publishing PointCloudPacked messages") } Label { @@ -110,7 +110,7 @@ ColumnLayout { } ToolTip.visible: hovered ToolTip.delay: Qt.styleHints.mousePressAndHoldInterval - ToolTip.text: qsTr("Ignition transport topics publishing FloatV messages, used to color each point on the cloud") + ToolTip.text: qsTr("Gazebo Transport topics publishing FloatV messages, used to color each point on the cloud") } Label { diff --git a/src/plugins/publisher/Publisher.hh b/src/plugins/publisher/Publisher.hh index f5ec11cdc..2ff95415f 100644 --- a/src/plugins/publisher/Publisher.hh +++ b/src/plugins/publisher/Publisher.hh @@ -40,7 +40,7 @@ namespace plugins { class PublisherPrivate; - /// \brief Widget which publishes a custom Ignition transport message. + /// \brief Widget which publishes a custom Gazebo Transport message. /// /// ## Configuration /// This plugin doesn't accept any custom configuration. diff --git a/src/plugins/scene3d/Scene3D.hh b/src/plugins/scene3d/Scene3D.hh index 0053da51b..8844d2503 100644 --- a/src/plugins/scene3d/Scene3D.hh +++ b/src/plugins/scene3d/Scene3D.hh @@ -42,11 +42,11 @@ namespace plugins class RenderWindowItemPrivate; class Scene3DPrivate; - /// \brief Creates an ignition rendering scene and user camera. + /// \brief Creates a Gazebo rendering scene and user camera. /// It is possible to orbit the camera around the scene with /// the mouse. Use other plugins to manage objects in the scene. /// - /// Only one plugin displaying an Ignition Rendering scene can be used at a + /// Only one plugin displaying an Gazebo Rendering scene can be used at a /// time. /// /// ## Configuration diff --git a/src/plugins/tape_measure/TapeMeasure.cc b/src/plugins/tape_measure/TapeMeasure.cc index 86fb81464..422226dbc 100644 --- a/src/plugins/tape_measure/TapeMeasure.cc +++ b/src/plugins/tape_measure/TapeMeasure.cc @@ -37,7 +37,7 @@ namespace ignition::gui { class TapeMeasurePrivate { - /// \brief Ignition communication node. + /// \brief Gazebo communication node. public: transport::Node node; /// \brief True if currently measuring, else false. diff --git a/src/plugins/topic_echo/TopicEcho.hh b/src/plugins/topic_echo/TopicEcho.hh index 9a53638c0..94f42e088 100644 --- a/src/plugins/topic_echo/TopicEcho.hh +++ b/src/plugins/topic_echo/TopicEcho.hh @@ -38,7 +38,7 @@ namespace plugins { class TopicEchoPrivate; - /// \brief Echo messages coming through an Ignition transport topic. + /// \brief Echo messages coming through an Gazebo Transport topic. /// /// ## Configuration /// This plugin doesn't accept any custom configuration. diff --git a/src/plugins/transport_scene_manager/TransportSceneManager.hh b/src/plugins/transport_scene_manager/TransportSceneManager.hh index b13a9bfbd..478ad9b71 100644 --- a/src/plugins/transport_scene_manager/TransportSceneManager.hh +++ b/src/plugins/transport_scene_manager/TransportSceneManager.hh @@ -30,7 +30,7 @@ namespace plugins { class TransportSceneManagerPrivate; - /// \brief Provides an Ignition Transport interface to + /// \brief Provides a Gazebo Transport interface to /// `ignition::gui::plugins::MinimalScene`. /// /// ## Configuration