2022-08-23 13:24:31 +02:00
|
|
|
#ifndef WEB_NODE_EDITOR_H
|
|
|
|
#define WEB_NODE_EDITOR_H
|
2022-08-20 18:11:07 +02:00
|
|
|
|
2023-12-18 00:25:33 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* web_node_editor.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* PANDEMONIUM ENGINE */
|
|
|
|
/* https://github.com/Relintai/pandemonium_engine */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* Copyright (c) 2022-present Péter Magyar. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/*************************************************************************/
|
2022-08-20 18:11:07 +02:00
|
|
|
|
|
|
|
#include "core/object/reference.h"
|
|
|
|
|
|
|
|
#include "scene/gui/box_container.h"
|
|
|
|
|
2022-08-20 21:50:44 +02:00
|
|
|
class WebNode;
|
2022-08-23 13:27:59 +02:00
|
|
|
class WebNodeEditorWebServer;
|
2022-08-20 21:50:44 +02:00
|
|
|
class RichTextLabel;
|
|
|
|
class TextEdit;
|
2022-08-23 15:20:56 +02:00
|
|
|
class MarginContainer;
|
|
|
|
class Button;
|
|
|
|
class ButtonGroup;
|
2022-08-20 21:50:44 +02:00
|
|
|
|
2022-08-23 13:27:59 +02:00
|
|
|
class WebNodeEditor : public VBoxContainer {
|
|
|
|
GDCLASS(WebNodeEditor, VBoxContainer);
|
2022-08-20 18:11:07 +02:00
|
|
|
|
|
|
|
public:
|
2022-08-23 15:20:56 +02:00
|
|
|
void add_control_to_tool_bar(Control *control);
|
|
|
|
void remove_control_from_tool_bar(Control *control);
|
|
|
|
|
|
|
|
void add_main_screen_tab(Control *control);
|
|
|
|
void remove_main_screen_tab(Control *control);
|
|
|
|
void switch_to_main_screen_tab(Control *control);
|
|
|
|
|
|
|
|
Ref<ButtonGroup> get_main_button_group();
|
|
|
|
|
2022-08-20 21:50:44 +02:00
|
|
|
void edit(WebNode *web_node);
|
2022-08-23 15:20:56 +02:00
|
|
|
void refresh_html_preview();
|
2022-08-20 21:50:44 +02:00
|
|
|
void clear();
|
|
|
|
|
2022-08-23 15:23:34 +02:00
|
|
|
static WebNodeEditor *get_singleton() { return _singleton; }
|
|
|
|
|
2022-08-23 13:27:59 +02:00
|
|
|
WebNodeEditor();
|
|
|
|
~WebNodeEditor();
|
2022-08-20 18:11:07 +02:00
|
|
|
|
|
|
|
protected:
|
2022-08-23 15:20:56 +02:00
|
|
|
void _on_html_previewer_tool_button_toggled(bool on);
|
|
|
|
void _on_html_previewer_visibility_changed();
|
|
|
|
|
2022-08-20 18:11:07 +02:00
|
|
|
void _notification(int p_what);
|
2022-08-20 21:50:44 +02:00
|
|
|
|
2022-08-23 15:20:56 +02:00
|
|
|
static void _bind_methods();
|
2022-08-20 21:50:44 +02:00
|
|
|
bool _prettify_html;
|
|
|
|
|
|
|
|
WebNode *_edited_node;
|
2022-08-23 13:27:59 +02:00
|
|
|
WebNodeEditorWebServer *_web_server;
|
2022-08-20 21:50:44 +02:00
|
|
|
HBoxContainer *_toolbar;
|
2022-08-23 15:20:56 +02:00
|
|
|
MarginContainer *_main_container;
|
2022-08-20 21:50:44 +02:00
|
|
|
|
2022-08-23 15:20:56 +02:00
|
|
|
Ref<ButtonGroup> _main_button_group;
|
|
|
|
Button *_html_previewer_tool_button;
|
|
|
|
VBoxContainer *_html_previewer;
|
2022-08-20 21:50:44 +02:00
|
|
|
RichTextLabel *_result_info_label;
|
|
|
|
TextEdit *_results_label;
|
2022-08-23 15:23:34 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
static WebNodeEditor *_singleton;
|
2022-08-20 18:11:07 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|