mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-18 14:36:45 +00:00
CLEANUP: Define the tooltip text as constexpr
This commit is contained in:
parent
1b0312dc80
commit
1e6ed3eb70
2 changed files with 19 additions and 20 deletions
|
@ -60,6 +60,24 @@
|
||||||
#include "pagedworldspacewidget.hpp"
|
#include "pagedworldspacewidget.hpp"
|
||||||
#include "worldspacewidget.hpp"
|
#include "worldspacewidget.hpp"
|
||||||
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
|
constexpr std::string_view sInstanceModeTooltip = R"(
|
||||||
|
Instance editing
|
||||||
|
<ul><li>Use {scene-select-primary} and {scene-select-secondary} to select and unselect instances</li>
|
||||||
|
<li>Use {scene-edit-primary} to manipulate instances</li>
|
||||||
|
<li>Use {scene-select-tertiary} to select a reference object and then {scene-edit-secondary} to snap
|
||||||
|
selection relative to the reference object</li>
|
||||||
|
<li>Use {scene-submode-move}, {scene-submode-rotate}, {scene-submode-scale} to change to move, rotate, and
|
||||||
|
scale modes respectively</li>
|
||||||
|
<li>Use {scene-axis-x}, {scene-axis-y}, and {scene-axis-z} to lock changes to X, Y, and Z axes
|
||||||
|
respectively</li>
|
||||||
|
<li>Use {scene-delete} to delete currently selected objects</li>
|
||||||
|
<li>Use {scene-duplicate} to duplicate instances</li>
|
||||||
|
<li>Use {scene-instance-drop} to drop instances</li></ul>
|
||||||
|
)";
|
||||||
|
}
|
||||||
|
|
||||||
int CSVRender::InstanceMode::getSubModeFromId(const std::string& id) const
|
int CSVRender::InstanceMode::getSubModeFromId(const std::string& id) const
|
||||||
{
|
{
|
||||||
return id == "move" ? 0 : (id == "rotate" ? 1 : 2);
|
return id == "move" ? 0 : (id == "rotate" ? 1 : 2);
|
||||||
|
@ -297,7 +315,7 @@ void CSVRender::InstanceMode::setDragAxis(const char axis)
|
||||||
CSVRender::InstanceMode::InstanceMode(
|
CSVRender::InstanceMode::InstanceMode(
|
||||||
WorldspaceWidget* worldspaceWidget, osg::ref_ptr<osg::Group> parentNode, QWidget* parent)
|
WorldspaceWidget* worldspaceWidget, osg::ref_ptr<osg::Group> parentNode, QWidget* parent)
|
||||||
: EditMode(worldspaceWidget, Misc::ScalableIcon::load(":scenetoolbar/editing-instance"),
|
: EditMode(worldspaceWidget, Misc::ScalableIcon::load(":scenetoolbar/editing-instance"),
|
||||||
Mask_Reference | Mask_Terrain, getTooltip(), parent)
|
Mask_Reference | Mask_Terrain, sInstanceModeTooltip.data(), parent)
|
||||||
, mSubMode(nullptr)
|
, mSubMode(nullptr)
|
||||||
, mSubModeId("move")
|
, mSubModeId("move")
|
||||||
, mSelectionMode(nullptr)
|
, mSelectionMode(nullptr)
|
||||||
|
@ -345,23 +363,6 @@ CSVRender::InstanceMode::InstanceMode(
|
||||||
qOverload<>(&CSMPrefs::Shortcut::activated), this, [this, axis] { this->setDragAxis(axis); });
|
qOverload<>(&CSMPrefs::Shortcut::activated), this, [this, axis] { this->setDragAxis(axis); });
|
||||||
}
|
}
|
||||||
|
|
||||||
QString CSVRender::InstanceMode::getTooltip()
|
|
||||||
{
|
|
||||||
return QString(
|
|
||||||
"Instance editing"
|
|
||||||
"<ul><li>Use {scene-select-primary} and {scene-select-secondary} to select and unselect instances</li>"
|
|
||||||
"<li>Use {scene-edit-primary} to manipulate instances</li>"
|
|
||||||
"<li>Use {scene-select-tertiary} to select a reference object and then {scene-edit-secondary} to snap "
|
|
||||||
"selection relative to the reference object</li>"
|
|
||||||
"<li>Use {scene-submode-move}, {scene-submode-rotate}, {scene-submode-scale} to change to move, rotate, and "
|
|
||||||
"scale modes respectively</li>"
|
|
||||||
"<li>Use {scene-axis-x}, {scene-axis-y}, and {scene-axis-z} to lock changes to X, Y, and Z axes "
|
|
||||||
"respectively</li>"
|
|
||||||
"<li>Use {scene-delete} to delete currently selected objects</li>"
|
|
||||||
"<li>Use {scene-duplicate} to duplicate instances</li>"
|
|
||||||
"<li>Use {scene-instance-drop} to drop instances</li></ul>");
|
|
||||||
}
|
|
||||||
|
|
||||||
void CSVRender::InstanceMode::activate(CSVWidget::SceneToolbar* toolbar)
|
void CSVRender::InstanceMode::activate(CSVWidget::SceneToolbar* toolbar)
|
||||||
{
|
{
|
||||||
if (!mSubMode)
|
if (!mSubMode)
|
||||||
|
|
|
@ -74,8 +74,6 @@ namespace CSVRender
|
||||||
InstanceMode(
|
InstanceMode(
|
||||||
WorldspaceWidget* worldspaceWidget, osg::ref_ptr<osg::Group> parentNode, QWidget* parent = nullptr);
|
WorldspaceWidget* worldspaceWidget, osg::ref_ptr<osg::Group> parentNode, QWidget* parent = nullptr);
|
||||||
|
|
||||||
QString getTooltip();
|
|
||||||
|
|
||||||
void activate(CSVWidget::SceneToolbar* toolbar) override;
|
void activate(CSVWidget::SceneToolbar* toolbar) override;
|
||||||
|
|
||||||
void deactivate(CSVWidget::SceneToolbar* toolbar) override;
|
void deactivate(CSVWidget::SceneToolbar* toolbar) override;
|
||||||
|
|
Loading…
Reference in a new issue