2016-02-16 16:02:29 +01:00
|
|
|
#include "instancemovemode.hpp"
|
|
|
|
|
2022-10-19 19:02:00 +02:00
|
|
|
#include <QIcon>
|
|
|
|
#include <QPixmap>
|
|
|
|
|
|
|
|
#include <apps/opencs/view/widget/modebutton.hpp>
|
|
|
|
|
|
|
|
class QWidget;
|
|
|
|
|
2016-02-16 16:02:29 +01:00
|
|
|
CSVRender::InstanceMoveMode::InstanceMoveMode(QWidget* parent)
|
2018-04-15 12:35:45 +03:00
|
|
|
: ModeButton(QIcon(QPixmap(":scenetoolbar/transform-move")),
|
2016-02-16 16:02:29 +01:00
|
|
|
"Move selected instances"
|
2016-07-25 22:43:37 -04:00
|
|
|
"<ul><li>Use {scene-edit-primary} to move instances around freely</li>"
|
|
|
|
"<li>Use {scene-edit-secondary} to move instances around within the grid</li>"
|
2022-04-02 19:25:57 -05:00
|
|
|
"</ul>",
|
2016-02-16 16:02:29 +01:00
|
|
|
parent)
|
|
|
|
{
|
|
|
|
}
|