2022-04-15 02:20:27 +02:00
|
|
|
/*
|
|
|
|
Copyright (c) 2019-2022 Péter Magyar
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "paint_editor_plugin.h"
|
|
|
|
|
2022-11-15 17:33:09 +01:00
|
|
|
#include "core/config/engine.h"
|
2022-11-15 18:16:32 +01:00
|
|
|
#include "editor/editor_settings.h"
|
|
|
|
#include "editor/plugins/canvas_item_editor_plugin.h"
|
|
|
|
|
|
|
|
#include "ui/paint_sidebar.h"
|
|
|
|
|
|
|
|
PaintSidebar *PaintEditorPlugin::get_sidebar() {
|
|
|
|
return _sidebar;
|
|
|
|
}
|
2022-11-15 17:33:09 +01:00
|
|
|
|
2022-04-16 02:35:03 +02:00
|
|
|
void PaintEditorPlugin::make_visible(const bool visible) {
|
2022-04-15 02:20:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
String PaintEditorPlugin::get_name() const {
|
|
|
|
return "Paint";
|
|
|
|
}
|
|
|
|
|
|
|
|
PaintEditorPlugin::PaintEditorPlugin(EditorNode *p_node) {
|
|
|
|
editor = p_node;
|
|
|
|
|
2022-11-15 18:16:32 +01:00
|
|
|
EDITOR_DEF("editors/paint/editor_side", 0);
|
|
|
|
EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::INT, "editors/paint/editor_side", PROPERTY_HINT_ENUM, "Left,Right"));
|
|
|
|
|
|
|
|
_sidebar = memnew(PaintSidebar);
|
|
|
|
switch ((int)EditorSettings::get_singleton()->get("editors/paint/editor_side")) {
|
|
|
|
case 0: { // Left.
|
|
|
|
add_control_to_container(CONTAINER_CANVAS_EDITOR_SIDE_LEFT, _sidebar);
|
|
|
|
} break;
|
|
|
|
case 1: { // Right.
|
|
|
|
add_control_to_container(CONTAINER_SPATIAL_EDITOR_SIDE_RIGHT, _sidebar);
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
|
2022-04-16 19:08:19 +02:00
|
|
|
make_visible(false);
|
2022-11-15 17:33:09 +01:00
|
|
|
|
|
|
|
Engine::get_singleton()->add_global("PaintEditorPlugin", this);
|
2022-04-15 02:20:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PaintEditorPlugin::~PaintEditorPlugin() {
|
2022-11-15 17:33:09 +01:00
|
|
|
Engine::get_singleton()->remove_global("PaintEditorPlugin");
|
2022-04-15 02:20:27 +02:00
|
|
|
}
|
|
|
|
|
2022-11-15 18:16:32 +01:00
|
|
|
void PaintEditorPlugin::_notification(int p_what) {
|
|
|
|
if (p_what == EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED) {
|
|
|
|
switch ((int)EditorSettings::get_singleton()->get("editors/paint/editor_side")) {
|
|
|
|
case 0: { // Left.
|
|
|
|
CanvasItemEditor::get_singleton()->move_control_to_left_panel(_sidebar);
|
|
|
|
} break;
|
|
|
|
case 1: { // Right.
|
|
|
|
CanvasItemEditor::get_singleton()->move_control_to_right_panel(_sidebar);
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-15 02:20:27 +02:00
|
|
|
void PaintEditorPlugin::_bind_methods() {
|
2022-11-15 18:16:32 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("get_sidebar"), &PaintEditorPlugin::get_sidebar);
|
2022-04-15 02:20:27 +02:00
|
|
|
}
|