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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#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
|