2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* style_box_editor_plugin.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2020-01-01 11:16:22 +01:00
|
|
|
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#ifndef STYLE_BOX_EDITOR_PLUGIN_H
|
|
|
|
#define STYLE_BOX_EDITOR_PLUGIN_H
|
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
#include "editor/editor_inspector.h"
|
2017-03-05 14:21:25 +01:00
|
|
|
#include "editor/editor_node.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "scene/gui/option_button.h"
|
|
|
|
#include "scene/gui/texture_rect.h"
|
|
|
|
#include "scene/resources/style_box.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
class StyleBoxPreview : public VBoxContainer {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
GDCLASS(StyleBoxPreview, VBoxContainer);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2019-10-24 23:20:52 +02:00
|
|
|
Control *preview;
|
2014-02-10 02:10:30 +01:00
|
|
|
Ref<StyleBox> stylebox;
|
|
|
|
|
|
|
|
void _sb_changed();
|
2019-10-24 23:20:52 +02:00
|
|
|
void _redraw();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
|
|
|
void edit(const Ref<StyleBox> &p_stylebox);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
StyleBoxPreview();
|
|
|
|
};
|
|
|
|
|
|
|
|
class EditorInspectorPluginStyleBox : public EditorInspectorPlugin {
|
2019-03-19 19:35:57 +01:00
|
|
|
GDCLASS(EditorInspectorPluginStyleBox, EditorInspectorPlugin);
|
|
|
|
|
2018-05-17 23:02:16 +02:00
|
|
|
public:
|
|
|
|
virtual bool can_handle(Object *p_object);
|
|
|
|
virtual void parse_begin(Object *p_object);
|
|
|
|
virtual bool parse_property(Object *p_object, Variant::Type p_type, const String &p_path, PropertyHint p_hint, const String &p_hint_text, int p_usage);
|
|
|
|
virtual void parse_end();
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class StyleBoxEditorPlugin : public EditorPlugin {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(StyleBoxEditorPlugin, EditorPlugin);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
virtual String get_name() const { return "StyleBox"; }
|
|
|
|
|
|
|
|
StyleBoxEditorPlugin(EditorNode *p_node);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // STYLE_BOX_EDITOR_PLUGIN_H
|