-
Notifications
You must be signed in to change notification settings - Fork 283
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
170 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* Copyright (C) 2021 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#include "AboutDialogHandler.hh" | ||
|
||
#include <ignition/common/Console.hh> | ||
#include <ignition/common/Profiler.hh> | ||
#include <ignition/gui/Application.hh> | ||
|
||
using namespace ignition; | ||
using namespace gazebo; | ||
using namespace gazebo::gui; | ||
|
||
///////////////////////////////////////////////// | ||
AboutDialogHandler::AboutDialogHandler() | ||
{ | ||
aboutText += std::string(IGNITION_GAZEBO_VERSION_HEADER); | ||
aboutText += "<table class='nostyle'>" | ||
"<tr>" | ||
"<td style='padding-right: 10px;'>Documentation:" | ||
"</td>" | ||
"<td>" | ||
"<a href='https://ignitionrobotics.org/libs/gazebo' " | ||
"style='text-decoration: none; color: #f58113'>" | ||
"https://ignitionrobotics.org/libs/gazebo" | ||
"</a>" | ||
"</td>" | ||
"</tr>" | ||
"<tr>" | ||
"<td style='padding-right: 10px;'>" | ||
"Tutorials:" | ||
"</td>" | ||
"<td>" | ||
"<a href='https://ignitionrobotics.org/docs/' " | ||
"style='text-decoration: none; color: #f58113'>" | ||
"https://ignitionrobotics.org/docs/" | ||
"</a>" | ||
"</td>" | ||
"</tr>" | ||
"</table>"; | ||
} | ||
|
||
///////////////////////////////////////////////// | ||
QString AboutDialogHandler::getVersionInformation() | ||
{ | ||
return QString::fromStdString(this->aboutText); | ||
} | ||
|
||
///////////////////////////////////////////////// | ||
void AboutDialogHandler::openURL(QString _url) | ||
{ | ||
QDesktopServices::openUrl(QUrl(_url)); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
* Copyright (C) 2021 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
#ifndef IGNITION_GAZEBO_GUI_ABOUTDIALOGHANDLER_HH_ | ||
#define IGNITION_GAZEBO_GUI_ABOUTDIALOGHANDLER_HH_ | ||
|
||
#include <QtCore> | ||
#include <QDesktopServices> | ||
#include <string> | ||
|
||
#include "ignition/gazebo/EntityComponentManager.hh" | ||
#include "ignition/gazebo/Export.hh" | ||
|
||
namespace ignition | ||
{ | ||
namespace gazebo | ||
{ | ||
// Inline bracket to help doxygen filtering. | ||
inline namespace IGNITION_GAZEBO_VERSION_NAMESPACE { | ||
namespace gui | ||
{ | ||
/// \brief Class for handling about dialog | ||
class IGNITION_GAZEBO_VISIBLE AboutDialogHandler : public QObject | ||
{ | ||
Q_OBJECT | ||
|
||
/// \brief Constructor | ||
public: AboutDialogHandler(); | ||
|
||
/// \brief Get version information | ||
/// \return Version information in rich text format | ||
Q_INVOKABLE QString getVersionInformation(); | ||
|
||
/// \brief Function called from QML when user clicks on a link | ||
/// \param[in] _url Url to web page. | ||
Q_INVOKABLE void openURL(QString _url); | ||
|
||
/// \brief Version information and links to online resources | ||
private: std::string aboutText; | ||
}; | ||
} | ||
} | ||
} | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
set (gui_sources | ||
AboutDialogHandler.cc | ||
Gui.cc | ||
GuiFileHandler.cc | ||
GuiRunner.cc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters