2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* rich_text_label.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
|
|
|
/*************************************************************************/
|
2019-01-01 12:53:14 +01:00
|
|
|
/* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2019 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 RICH_TEXT_LABEL_H
|
|
|
|
#define RICH_TEXT_LABEL_H
|
|
|
|
|
|
|
|
#include "scene/gui/scroll_bar.h"
|
|
|
|
|
|
|
|
class RichTextLabel : public Control {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(RichTextLabel, Control);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2014-02-10 02:10:30 +01:00
|
|
|
enum Align {
|
|
|
|
|
|
|
|
ALIGN_LEFT,
|
|
|
|
ALIGN_CENTER,
|
|
|
|
ALIGN_RIGHT,
|
|
|
|
ALIGN_FILL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ListType {
|
|
|
|
|
|
|
|
LIST_NUMBERS,
|
|
|
|
LIST_LETTERS,
|
|
|
|
LIST_DOTS
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ItemType {
|
|
|
|
|
2015-12-26 14:25:17 +01:00
|
|
|
ITEM_FRAME,
|
2014-02-10 02:10:30 +01:00
|
|
|
ITEM_TEXT,
|
|
|
|
ITEM_IMAGE,
|
|
|
|
ITEM_NEWLINE,
|
|
|
|
ITEM_FONT,
|
|
|
|
ITEM_COLOR,
|
|
|
|
ITEM_UNDERLINE,
|
2018-09-22 23:41:13 +02:00
|
|
|
ITEM_STRIKETHROUGH,
|
2014-02-10 02:10:30 +01:00
|
|
|
ITEM_ALIGN,
|
|
|
|
ITEM_INDENT,
|
|
|
|
ITEM_LIST,
|
2015-12-26 14:25:17 +01:00
|
|
|
ITEM_TABLE,
|
2014-02-10 02:10:30 +01:00
|
|
|
ITEM_META
|
|
|
|
};
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
private:
|
2015-12-26 14:25:17 +01:00
|
|
|
struct Item;
|
|
|
|
|
|
|
|
struct Line {
|
|
|
|
|
|
|
|
Item *from;
|
|
|
|
Vector<int> offset_caches;
|
|
|
|
Vector<int> height_caches;
|
2018-01-14 18:12:09 +01:00
|
|
|
Vector<int> ascent_caches;
|
|
|
|
Vector<int> descent_caches;
|
2015-12-26 14:25:17 +01:00
|
|
|
Vector<int> space_caches;
|
|
|
|
int height_cache;
|
|
|
|
int height_accum_cache;
|
|
|
|
int char_count;
|
|
|
|
int minimum_width;
|
2018-03-18 11:28:17 +01:00
|
|
|
int maximum_width;
|
2015-12-26 14:25:17 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Line() {
|
|
|
|
from = NULL;
|
|
|
|
char_count = 0;
|
|
|
|
}
|
2015-12-26 14:25:17 +01:00
|
|
|
};
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
struct Item {
|
|
|
|
|
|
|
|
int index;
|
|
|
|
Item *parent;
|
|
|
|
ItemType type;
|
2017-03-05 16:44:50 +01:00
|
|
|
List<Item *> subitems;
|
|
|
|
List<Item *>::Element *E;
|
2015-12-26 14:25:17 +01:00
|
|
|
int line;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _clear_children() {
|
|
|
|
while (subitems.size()) {
|
|
|
|
memdelete(subitems.front()->get());
|
|
|
|
subitems.pop_front();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Item() {
|
|
|
|
parent = NULL;
|
|
|
|
E = NULL;
|
|
|
|
line = 0;
|
|
|
|
}
|
|
|
|
virtual ~Item() { _clear_children(); }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
struct ItemFrame : public Item {
|
2015-12-26 14:25:17 +01:00
|
|
|
|
|
|
|
int parent_line;
|
|
|
|
bool cell;
|
|
|
|
Vector<Line> lines;
|
|
|
|
int first_invalid_line;
|
|
|
|
ItemFrame *parent_frame;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ItemFrame() {
|
|
|
|
type = ITEM_FRAME;
|
|
|
|
parent_frame = NULL;
|
|
|
|
cell = false;
|
|
|
|
parent_line = 0;
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ItemText : public Item {
|
|
|
|
|
|
|
|
String text;
|
2017-03-05 16:44:50 +01:00
|
|
|
ItemText() { type = ITEM_TEXT; }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ItemImage : public Item {
|
|
|
|
|
|
|
|
Ref<Texture> image;
|
2017-03-05 16:44:50 +01:00
|
|
|
ItemImage() { type = ITEM_IMAGE; }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ItemFont : public Item {
|
|
|
|
|
|
|
|
Ref<Font> font;
|
2017-03-05 16:44:50 +01:00
|
|
|
ItemFont() { type = ITEM_FONT; }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ItemColor : public Item {
|
|
|
|
|
|
|
|
Color color;
|
2017-03-05 16:44:50 +01:00
|
|
|
ItemColor() { type = ITEM_COLOR; }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ItemUnderline : public Item {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ItemUnderline() { type = ITEM_UNDERLINE; }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2018-09-22 23:41:13 +02:00
|
|
|
struct ItemStrikethrough : public Item {
|
|
|
|
|
|
|
|
ItemStrikethrough() { type = ITEM_STRIKETHROUGH; }
|
|
|
|
};
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
struct ItemMeta : public Item {
|
|
|
|
|
|
|
|
Variant meta;
|
2017-03-05 16:44:50 +01:00
|
|
|
ItemMeta() { type = ITEM_META; }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ItemAlign : public Item {
|
|
|
|
|
|
|
|
Align align;
|
2017-03-05 16:44:50 +01:00
|
|
|
ItemAlign() { type = ITEM_ALIGN; }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ItemIndent : public Item {
|
|
|
|
|
|
|
|
int level;
|
2017-03-05 16:44:50 +01:00
|
|
|
ItemIndent() { type = ITEM_INDENT; }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ItemList : public Item {
|
|
|
|
|
|
|
|
ListType list_type;
|
2017-03-05 16:44:50 +01:00
|
|
|
ItemList() { type = ITEM_LIST; }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ItemNewline : public Item {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
ItemNewline() { type = ITEM_NEWLINE; }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
struct ItemTable : public Item {
|
2015-12-26 14:25:17 +01:00
|
|
|
|
|
|
|
struct Column {
|
|
|
|
bool expand;
|
|
|
|
int expand_ratio;
|
|
|
|
int min_width;
|
2018-03-18 11:28:17 +01:00
|
|
|
int max_width;
|
2015-12-26 14:25:17 +01:00
|
|
|
int width;
|
|
|
|
};
|
|
|
|
|
|
|
|
Vector<Column> columns;
|
|
|
|
int total_width;
|
2017-03-05 16:44:50 +01:00
|
|
|
ItemTable() { type = ITEM_TABLE; }
|
2015-12-26 14:25:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
ItemFrame *main;
|
2014-02-10 02:10:30 +01:00
|
|
|
Item *current;
|
2015-12-26 14:25:17 +01:00
|
|
|
ItemFrame *current_frame;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
VScrollBar *vscroll;
|
|
|
|
|
|
|
|
bool scroll_visible;
|
|
|
|
bool scroll_follow;
|
|
|
|
bool scroll_following;
|
|
|
|
bool scroll_active;
|
|
|
|
int scroll_w;
|
2018-10-09 02:04:59 +02:00
|
|
|
bool scroll_updated;
|
2014-02-10 02:10:30 +01:00
|
|
|
bool updating_scroll;
|
|
|
|
int current_idx;
|
2016-10-17 21:03:47 +02:00
|
|
|
int visible_line_count;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
int tab_size;
|
|
|
|
bool underline_meta;
|
2017-09-27 19:24:05 +02:00
|
|
|
bool override_selected_font_color;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Align default_align;
|
|
|
|
|
2017-11-17 06:49:39 +01:00
|
|
|
ItemMeta *meta_hovering;
|
|
|
|
Variant current_meta;
|
|
|
|
|
2015-12-26 14:25:17 +01:00
|
|
|
void _invalidate_current_line(ItemFrame *p_frame);
|
|
|
|
void _validate_line_caches(ItemFrame *p_frame);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _add_item(Item *p_item, bool p_enter = false, bool p_ensure_newline = false);
|
2017-01-31 22:57:46 +01:00
|
|
|
void _remove_item(Item *p_item, const int p_line, const int p_subitem_line);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
struct ProcessState {
|
|
|
|
|
|
|
|
int line_width;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ProcessMode {
|
|
|
|
|
|
|
|
PROCESS_CACHE,
|
|
|
|
PROCESS_DRAW,
|
|
|
|
PROCESS_POINTER
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Selection {
|
|
|
|
|
|
|
|
Item *click;
|
|
|
|
int click_char;
|
|
|
|
|
|
|
|
Item *from;
|
|
|
|
int from_char;
|
|
|
|
Item *to;
|
|
|
|
int to_char;
|
|
|
|
|
2017-12-10 16:08:24 +01:00
|
|
|
bool active; // anything selected? i.e. from, to, etc. valid?
|
|
|
|
bool enabled; // allow selections?
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
Selection selection;
|
|
|
|
|
2015-06-02 00:42:34 +02:00
|
|
|
int visible_characters;
|
2017-07-03 21:59:58 +02:00
|
|
|
float percent_visible;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-04-11 15:08:56 +02:00
|
|
|
int _process_line(ItemFrame *p_frame, const Vector2 &p_ofs, int &y, int p_width, int p_line, ProcessMode p_mode, const Ref<Font> &p_base_font, const Color &p_base_color, const Color &p_font_color_shadow, bool p_shadow_as_outline, const Point2 &shadow_ofs, const Point2i &p_click_pos = Point2i(), Item **r_click_item = NULL, int *r_click_char = NULL, bool *r_outside = NULL, int p_char_count = 0);
|
2017-03-05 16:44:50 +01:00
|
|
|
void _find_click(ItemFrame *p_frame, const Point2i &p_click, Item **r_click_item = NULL, int *r_click_char = NULL, bool *r_outside = NULL);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Ref<Font> _find_font(Item *p_item);
|
2017-03-05 16:44:50 +01:00
|
|
|
int _find_margin(Item *p_item, const Ref<Font> &p_base_font);
|
2014-02-10 02:10:30 +01:00
|
|
|
Align _find_align(Item *p_item);
|
2017-03-05 16:44:50 +01:00
|
|
|
Color _find_color(Item *p_item, const Color &p_default_color);
|
2014-02-10 02:10:30 +01:00
|
|
|
bool _find_underline(Item *p_item);
|
2018-09-22 23:41:13 +02:00
|
|
|
bool _find_strikethrough(Item *p_item);
|
2017-03-05 16:44:50 +01:00
|
|
|
bool _find_meta(Item *p_item, Variant *r_meta);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void _update_scroll();
|
|
|
|
void _scroll_changed(double);
|
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
void _gui_input(Ref<InputEvent> p_event);
|
2017-03-05 16:44:50 +01:00
|
|
|
Item *_get_next_item(Item *p_item, bool p_free = false);
|
2017-12-22 19:09:31 +01:00
|
|
|
Item *_get_prev_item(Item *p_item, bool p_free = false);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-09-02 18:20:04 +02:00
|
|
|
Rect2 _get_text_rect();
|
|
|
|
|
2015-04-21 21:01:58 +02:00
|
|
|
bool use_bbcode;
|
|
|
|
String bbcode;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-12-26 14:25:17 +01:00
|
|
|
void _update_all_lines();
|
2015-06-02 00:42:34 +02:00
|
|
|
|
2018-07-20 23:14:33 +02:00
|
|
|
int fixed_width;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
protected:
|
|
|
|
void _notification(int p_what);
|
|
|
|
|
|
|
|
public:
|
2016-06-29 17:43:51 +02:00
|
|
|
String get_text();
|
2017-03-05 16:44:50 +01:00
|
|
|
void add_text(const String &p_text);
|
|
|
|
void add_image(const Ref<Texture> &p_image);
|
2014-02-10 02:10:30 +01:00
|
|
|
void add_newline();
|
2017-01-31 22:57:46 +01:00
|
|
|
bool remove_line(const int p_line);
|
2017-03-05 16:44:50 +01:00
|
|
|
void push_font(const Ref<Font> &p_font);
|
|
|
|
void push_color(const Color &p_color);
|
2014-02-10 02:10:30 +01:00
|
|
|
void push_underline();
|
2018-09-22 23:41:13 +02:00
|
|
|
void push_strikethrough();
|
2014-02-10 02:10:30 +01:00
|
|
|
void push_align(Align p_align);
|
|
|
|
void push_indent(int p_level);
|
|
|
|
void push_list(ListType p_list);
|
2017-08-11 21:10:05 +02:00
|
|
|
void push_meta(const Variant &p_meta);
|
2015-12-26 14:25:17 +01:00
|
|
|
void push_table(int p_columns);
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_table_column_expand(int p_column, bool p_expand, int p_ratio = 1);
|
2015-12-26 14:25:17 +01:00
|
|
|
int get_current_table_column() const;
|
|
|
|
void push_cell();
|
2014-02-10 02:10:30 +01:00
|
|
|
void pop();
|
|
|
|
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
void set_offset(int p_pixel);
|
|
|
|
|
|
|
|
void set_meta_underline(bool p_underline);
|
|
|
|
bool is_meta_underlined() const;
|
|
|
|
|
2017-09-27 19:24:05 +02:00
|
|
|
void set_override_selected_font_color(bool p_override_selected_font_color);
|
|
|
|
bool is_overriding_selected_font_color() const;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void set_scroll_active(bool p_active);
|
|
|
|
bool is_scroll_active() const;
|
|
|
|
|
|
|
|
void set_scroll_follow(bool p_follow);
|
|
|
|
bool is_scroll_following() const;
|
|
|
|
|
|
|
|
void set_tab_size(int p_spaces);
|
|
|
|
int get_tab_size() const;
|
|
|
|
|
2017-12-22 19:09:31 +01:00
|
|
|
bool search(const String &p_string, bool p_from_selection = false, bool p_search_previous = false);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void scroll_to_line(int p_line);
|
|
|
|
int get_line_count() const;
|
2016-10-17 21:03:47 +02:00
|
|
|
int get_visible_line_count() const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-04-11 15:53:13 +02:00
|
|
|
int get_content_height();
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
VScrollBar *get_v_scroll() { return vscroll; }
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual CursorShape get_cursor_shape(const Point2 &p_pos) const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void set_selection_enabled(bool p_enabled);
|
|
|
|
bool is_selection_enabled() const;
|
2014-02-16 01:16:33 +01:00
|
|
|
void selection_copy();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Error parse_bbcode(const String &p_bbcode);
|
|
|
|
Error append_bbcode(const String &p_bbcode);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-04-21 21:01:58 +02:00
|
|
|
void set_use_bbcode(bool p_enable);
|
|
|
|
bool is_using_bbcode() const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_bbcode(const String &p_bbcode);
|
2015-04-21 21:01:58 +02:00
|
|
|
String get_bbcode() const;
|
|
|
|
|
2017-07-03 21:59:58 +02:00
|
|
|
void set_text(const String &p_string);
|
|
|
|
|
2015-06-02 00:42:34 +02:00
|
|
|
void set_visible_characters(int p_visible);
|
|
|
|
int get_visible_characters() const;
|
|
|
|
int get_total_character_count() const;
|
|
|
|
|
2017-07-03 21:59:58 +02:00
|
|
|
void set_percent_visible(float p_percent);
|
|
|
|
float get_percent_visible() const;
|
|
|
|
|
2018-07-20 23:14:33 +02:00
|
|
|
void set_fixed_size_to_width(int p_width);
|
|
|
|
virtual Size2 get_minimum_size() const;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
RichTextLabel();
|
|
|
|
~RichTextLabel();
|
|
|
|
};
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
VARIANT_ENUM_CAST(RichTextLabel::Align);
|
|
|
|
VARIANT_ENUM_CAST(RichTextLabel::ListType);
|
|
|
|
VARIANT_ENUM_CAST(RichTextLabel::ItemType);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
#endif // RICH_TEXT_LABEL_H
|