2023-01-05 13:25:55 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* editor_help.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 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. */
|
|
|
|
/**************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#ifndef EDITOR_HELP_H
|
|
|
|
#define EDITOR_HELP_H
|
|
|
|
|
2021-07-25 19:44:03 +02:00
|
|
|
#include "core/os/thread.h"
|
2017-12-11 00:56:49 +01:00
|
|
|
#include "editor/code_editor.h"
|
2020-11-29 04:42:06 +01:00
|
|
|
#include "editor/doc_tools.h"
|
2017-03-05 14:21:25 +01:00
|
|
|
#include "editor/editor_plugin.h"
|
2019-02-10 17:17:29 +01:00
|
|
|
#include "scene/gui/margin_container.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "scene/gui/menu_button.h"
|
|
|
|
#include "scene/gui/panel_container.h"
|
|
|
|
#include "scene/gui/rich_text_label.h"
|
|
|
|
#include "scene/gui/split_container.h"
|
|
|
|
#include "scene/gui/tab_container.h"
|
|
|
|
#include "scene/gui/text_edit.h"
|
|
|
|
#include "scene/main/timer.h"
|
|
|
|
|
2017-12-22 19:09:31 +01:00
|
|
|
class FindBar : public HBoxContainer {
|
|
|
|
GDCLASS(FindBar, HBoxContainer);
|
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
LineEdit *search_text = nullptr;
|
|
|
|
Button *find_prev = nullptr;
|
|
|
|
Button *find_next = nullptr;
|
|
|
|
Label *matches_label = nullptr;
|
|
|
|
TextureButton *hide_button = nullptr;
|
2017-12-22 19:09:31 +01:00
|
|
|
String prev_search;
|
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
RichTextLabel *rich_text_label = nullptr;
|
2017-12-22 19:09:31 +01:00
|
|
|
|
2022-05-02 16:28:25 +02:00
|
|
|
int results_count = 0;
|
2019-08-09 06:00:44 +02:00
|
|
|
|
2017-12-22 19:09:31 +01:00
|
|
|
void _hide_bar();
|
|
|
|
|
|
|
|
void _search_text_changed(const String &p_text);
|
2021-06-16 18:43:34 +02:00
|
|
|
void _search_text_submitted(const String &p_text);
|
2017-12-22 19:09:31 +01:00
|
|
|
|
2019-08-09 06:00:44 +02:00
|
|
|
void _update_results_count();
|
|
|
|
void _update_matches_label();
|
|
|
|
|
2017-12-22 19:09:31 +01:00
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
2021-08-22 17:37:22 +02:00
|
|
|
virtual void unhandled_input(const Ref<InputEvent> &p_event) override;
|
2017-12-22 19:09:31 +01:00
|
|
|
|
|
|
|
bool _search(bool p_search_previous = false);
|
|
|
|
|
|
|
|
public:
|
|
|
|
void set_rich_text_label(RichTextLabel *p_rich_text_label);
|
|
|
|
|
|
|
|
void popup_search();
|
|
|
|
|
|
|
|
bool search_prev();
|
|
|
|
bool search_next();
|
|
|
|
|
|
|
|
FindBar();
|
|
|
|
};
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
class EditorHelp : public VBoxContainer {
|
2017-01-03 03:03:46 +01:00
|
|
|
GDCLASS(EditorHelp, VBoxContainer);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
enum Page {
|
|
|
|
PAGE_CLASS_LIST,
|
|
|
|
PAGE_CLASS_DESC,
|
|
|
|
PAGE_CLASS_PREV,
|
|
|
|
PAGE_CLASS_NEXT,
|
|
|
|
PAGE_SEARCH,
|
2014-02-21 03:01:44 +01:00
|
|
|
CLASS_SEARCH,
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2022-02-15 15:56:58 +01:00
|
|
|
bool select_locked = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
String prev_search;
|
2015-11-17 13:46:08 +01:00
|
|
|
|
|
|
|
String edited_class;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-03-17 07:33:00 +01:00
|
|
|
Vector<Pair<String, int>> section_line;
|
2022-05-13 15:04:37 +02:00
|
|
|
HashMap<String, int> method_line;
|
|
|
|
HashMap<String, int> signal_line;
|
|
|
|
HashMap<String, int> property_line;
|
|
|
|
HashMap<String, int> theme_property_line;
|
|
|
|
HashMap<String, int> constant_line;
|
2022-07-04 17:56:34 +02:00
|
|
|
HashMap<String, int> annotation_line;
|
2022-05-13 15:04:37 +02:00
|
|
|
HashMap<String, int> enum_line;
|
|
|
|
HashMap<String, HashMap<String, int>> enum_values_line;
|
2022-05-02 16:28:25 +02:00
|
|
|
int description_line = 0;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
RichTextLabel *class_desc = nullptr;
|
|
|
|
HSplitContainer *h_split = nullptr;
|
2020-11-29 04:42:06 +01:00
|
|
|
static DocTools *doc;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
ConfirmationDialog *search_dialog = nullptr;
|
|
|
|
LineEdit *search = nullptr;
|
|
|
|
FindBar *find_bar = nullptr;
|
|
|
|
HBoxContainer *status_bar = nullptr;
|
|
|
|
Button *toggle_scripts_button = nullptr;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
String base_path;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2023-02-11 16:29:44 +01:00
|
|
|
struct ThemeCache {
|
|
|
|
Ref<StyleBox> background_style;
|
|
|
|
|
|
|
|
Color text_color;
|
|
|
|
Color title_color;
|
|
|
|
Color headline_color;
|
|
|
|
Color comment_color;
|
|
|
|
Color symbol_color;
|
|
|
|
Color value_color;
|
|
|
|
Color qualifier_color;
|
|
|
|
Color type_color;
|
|
|
|
|
|
|
|
Ref<Font> doc_font;
|
|
|
|
Ref<Font> doc_bold_font;
|
|
|
|
Ref<Font> doc_title_font;
|
|
|
|
Ref<Font> doc_code_font;
|
|
|
|
Ref<Font> doc_kbd_font;
|
|
|
|
|
|
|
|
int doc_font_size = 0;
|
|
|
|
int doc_title_font_size = 0;
|
|
|
|
int doc_code_font_size = 0;
|
|
|
|
int doc_kbd_font_size = 0;
|
|
|
|
} theme_cache;
|
2022-06-29 06:57:16 +02:00
|
|
|
|
2022-05-30 09:04:07 +02:00
|
|
|
int scroll_to = -1;
|
|
|
|
|
2014-02-21 03:01:44 +01:00
|
|
|
void _help_callback(const String &p_topic);
|
|
|
|
|
2017-08-12 18:52:50 +02:00
|
|
|
void _add_text(const String &p_bbcode);
|
2022-02-15 15:56:58 +01:00
|
|
|
bool scroll_locked = false;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
//void _button_pressed(int p_idx);
|
2017-08-24 00:10:32 +02:00
|
|
|
void _add_type(const String &p_type, const String &p_enum = String());
|
2022-08-24 20:41:31 +02:00
|
|
|
void _add_type_icon(const String &p_type, int p_size = 0);
|
2017-12-15 09:45:23 +01:00
|
|
|
void _add_method(const DocData::MethodDoc &p_method, bool p_overview = true);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2021-12-01 19:02:20 +01:00
|
|
|
void _add_bulletpoint();
|
|
|
|
|
2022-05-30 09:04:07 +02:00
|
|
|
void _class_desc_finished();
|
2014-02-10 02:10:30 +01:00
|
|
|
void _class_list_select(const String &p_select);
|
|
|
|
void _class_desc_select(const String &p_select);
|
2017-05-20 17:38:03 +02:00
|
|
|
void _class_desc_input(const Ref<InputEvent> &p_input);
|
2022-01-29 18:48:30 +01:00
|
|
|
void _class_desc_resized(bool p_force_update_theme);
|
2022-01-24 08:51:35 +01:00
|
|
|
int display_margin = 0;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
Error _goto_desc(const String &p_class, int p_vscr = -1);
|
|
|
|
//void _update_history_buttons();
|
2022-07-19 17:17:04 +02:00
|
|
|
void _update_method_list(const Vector<DocData::MethodDoc> p_methods);
|
2021-09-21 04:49:02 +02:00
|
|
|
void _update_method_descriptions(const DocData::ClassDoc p_classdoc, const Vector<DocData::MethodDoc> p_methods, const String &p_method_type);
|
2014-02-10 02:10:30 +01:00
|
|
|
void _update_doc();
|
|
|
|
|
|
|
|
void _request_help(const String &p_string);
|
2019-10-09 17:41:49 +02:00
|
|
|
void _search(bool p_search_previous = false);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-08-21 22:12:55 +02:00
|
|
|
String _fix_constant(const String &p_constant) const;
|
2021-09-14 11:17:47 +02:00
|
|
|
void _toggle_scripts_pressed();
|
2018-08-21 22:12:55 +02:00
|
|
|
|
2021-07-25 19:44:03 +02:00
|
|
|
static Thread thread;
|
|
|
|
|
|
|
|
static void _wait_for_thread();
|
|
|
|
static void _gen_doc_thread(void *p_udata);
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
protected:
|
2023-02-11 16:29:44 +01:00
|
|
|
virtual void _update_theme_item_cache() override;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2014-02-16 01:16:33 +01:00
|
|
|
static void generate_doc();
|
2021-07-25 19:44:03 +02:00
|
|
|
static DocTools *get_doc_data();
|
|
|
|
static void cleanup_doc();
|
2014-02-16 01:16:33 +01:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
void go_to_help(const String &p_help);
|
|
|
|
void go_to_class(const String &p_class, int p_scroll = 0);
|
2020-11-29 03:37:57 +01:00
|
|
|
void update_doc();
|
2014-02-21 03:01:44 +01:00
|
|
|
|
2020-03-17 07:33:00 +01:00
|
|
|
Vector<Pair<String, int>> get_sections();
|
2017-09-14 02:56:37 +02:00
|
|
|
void scroll_to_section(int p_section_index);
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
void popup_search();
|
2019-10-09 17:41:49 +02:00
|
|
|
void search_again(bool p_search_previous = false);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
String get_class();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
void set_focused() { class_desc->grab_focus(); }
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
int get_scroll() const;
|
|
|
|
void set_scroll(int p_scroll);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2021-09-14 11:17:47 +02:00
|
|
|
void update_toggle_scripts_button();
|
|
|
|
|
2015-11-17 13:46:08 +01:00
|
|
|
EditorHelp();
|
|
|
|
~EditorHelp();
|
|
|
|
};
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-04-06 23:40:06 +02:00
|
|
|
class EditorHelpBit : public MarginContainer {
|
|
|
|
GDCLASS(EditorHelpBit, MarginContainer);
|
2016-08-24 04:15:16 +02:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
RichTextLabel *rich_text = nullptr;
|
2016-08-24 04:15:16 +02:00
|
|
|
void _go_to_help(String p_what);
|
2017-08-12 18:52:50 +02:00
|
|
|
void _meta_clicked(String p_select);
|
2016-08-24 04:15:16 +02:00
|
|
|
|
2020-03-20 21:51:53 +01:00
|
|
|
String text;
|
|
|
|
|
2016-08-24 04:15:16 +02:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
void _notification(int p_what);
|
|
|
|
|
|
|
|
public:
|
2018-07-20 23:14:33 +02:00
|
|
|
RichTextLabel *get_rich_text() { return rich_text; }
|
2016-08-24 04:15:16 +02:00
|
|
|
void set_text(const String &p_text);
|
|
|
|
EditorHelpBit();
|
|
|
|
};
|
2014-02-21 03:01:44 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#endif // EDITOR_HELP_H
|