virtualx-engine/scene/gui/tab_bar.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

240 lines
7.4 KiB
C++
Raw Normal View History

/**************************************************************************/
/* tab_bar.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. */
/**************************************************************************/
2021-10-17 18:55:44 +02:00
#ifndef TAB_BAR_H
#define TAB_BAR_H
2014-02-10 02:10:30 +01:00
#include "scene/gui/control.h"
#include "scene/resources/text_line.h"
2014-02-10 02:10:30 +01:00
2021-10-17 18:55:44 +02:00
class TabBar : public Control {
GDCLASS(TabBar, Control);
public:
enum AlignmentMode {
ALIGNMENT_LEFT,
ALIGNMENT_CENTER,
ALIGNMENT_RIGHT,
ALIGNMENT_MAX,
};
enum CloseButtonDisplayPolicy {
CLOSE_BUTTON_SHOW_NEVER,
CLOSE_BUTTON_SHOW_ACTIVE_ONLY,
CLOSE_BUTTON_SHOW_ALWAYS,
CLOSE_BUTTON_MAX
};
2014-02-10 02:10:30 +01:00
private:
2014-02-10 02:10:30 +01:00
struct Tab {
String text;
2019-09-30 11:56:20 +02:00
String xl_text;
String language;
Control::TextDirection text_direction = Control::TEXT_DIRECTION_INHERITED;
Ref<TextLine> text_buf;
Ref<Texture2D> icon;
bool disabled = false;
bool hidden = false;
int ofs_cache = 0;
int size_cache = 0;
int size_text = 0;
Ref<Texture2D> right_button;
2015-07-26 15:44:10 +02:00
Rect2 rb_rect;
Rect2 cb_rect;
2021-11-03 19:05:28 +01:00
Tab() {
text_buf.instantiate();
}
2014-02-10 02:10:30 +01:00
};
int offset = 0;
int max_drawn_tab = 0;
int highlight_arrow = -1;
bool buttons_visible = false;
bool missing_right = false;
2014-02-10 02:10:30 +01:00
Vector<Tab> tabs;
int current = 0;
int previous = 0;
AlignmentMode tab_alignment = ALIGNMENT_LEFT;
2021-03-30 12:20:00 +02:00
bool clip_tabs = true;
int rb_hover = -1;
bool rb_pressing = false;
2014-02-10 02:10:30 +01:00
bool select_with_rmb = false;
2018-01-02 08:10:49 +01:00
int cb_hover = -1;
bool cb_pressing = false;
CloseButtonDisplayPolicy cb_displaypolicy = CLOSE_BUTTON_SHOW_NEVER;
int hover = -1; // Hovered tab.
int max_width = 0;
bool scrolling_enabled = true;
bool drag_to_rearrange_enabled = false;
bool dragging_valid_tab = false;
bool scroll_to_selected = true;
int tabs_rearrange_group = -1;
struct ThemeCache {
int h_separation = 0;
Ref<StyleBox> tab_unselected_style;
Ref<StyleBox> tab_selected_style;
Ref<StyleBox> tab_disabled_style;
Ref<Texture2D> increment_icon;
Ref<Texture2D> increment_hl_icon;
Ref<Texture2D> decrement_icon;
Ref<Texture2D> decrement_hl_icon;
Ref<Texture2D> drop_mark_icon;
Color drop_mark_color;
Ref<Font> font;
int font_size;
int outline_size = 0;
Color font_selected_color;
Color font_unselected_color;
Color font_disabled_color;
Color font_outline_color;
Ref<Texture2D> close_icon;
Ref<StyleBox> button_pressed_style;
Ref<StyleBox> button_hl_style;
} theme_cache;
int get_tab_width(int p_idx) const;
2016-01-23 00:19:57 +01:00
void _ensure_no_over_offset();
void _update_hover();
void _update_cache();
void _on_mouse_exited();
void _shape(int p_tab);
2022-01-13 00:43:31 +01:00
void _draw_tab(Ref<StyleBox> &p_tab_style, Color &p_font_color, int p_index, float p_x);
2014-02-10 02:10:30 +01:00
protected:
virtual void gui_input(const Ref<InputEvent> &p_event) override;
virtual void _update_theme_item_cache() override;
2021-11-03 19:05:28 +01:00
bool _set(const StringName &p_name, const Variant &p_value);
bool _get(const StringName &p_name, Variant &r_ret) const;
void _get_property_list(List<PropertyInfo> *p_list) const;
2014-02-10 02:10:30 +01:00
void _notification(int p_what);
static void _bind_methods();
2020-07-10 12:34:39 +02:00
Variant get_drag_data(const Point2 &p_point) override;
bool can_drop_data(const Point2 &p_point, const Variant &p_data) const override;
void drop_data(const Point2 &p_point, const Variant &p_data) override;
2014-02-10 02:10:30 +01:00
public:
void add_tab(const String &p_str = "", const Ref<Texture2D> &p_icon = Ref<Texture2D>());
2014-02-10 02:10:30 +01:00
void set_tab_title(int p_tab, const String &p_title);
String get_tab_title(int p_tab) const;
void set_tab_text_direction(int p_tab, TextDirection p_text_direction);
TextDirection get_tab_text_direction(int p_tab) const;
void set_tab_language(int p_tab, const String &p_language);
String get_tab_language(int p_tab) const;
void set_tab_icon(int p_tab, const Ref<Texture2D> &p_icon);
Ref<Texture2D> get_tab_icon(int p_tab) const;
2017-02-27 19:07:50 +01:00
void set_tab_disabled(int p_tab, bool p_disabled);
2021-11-03 19:05:28 +01:00
bool is_tab_disabled(int p_tab) const;
2014-02-10 02:10:30 +01:00
void set_tab_hidden(int p_tab, bool p_hidden);
bool is_tab_hidden(int p_tab) const;
void set_tab_button_icon(int p_tab, const Ref<Texture2D> &p_icon);
Ref<Texture2D> get_tab_button_icon(int p_tab) const;
2015-07-26 15:44:10 +02:00
int get_tab_idx_at_point(const Point2 &p_point) const;
void set_tab_alignment(AlignmentMode p_alignment);
AlignmentMode get_tab_alignment() const;
2021-03-30 12:20:00 +02:00
void set_clip_tabs(bool p_clip_tabs);
bool get_clip_tabs() const;
void move_tab(int p_from, int p_to);
void set_tab_close_display_policy(CloseButtonDisplayPolicy p_policy);
CloseButtonDisplayPolicy get_tab_close_display_policy() const;
2021-11-03 19:05:28 +01:00
void set_tab_count(int p_count);
2014-02-10 02:10:30 +01:00
int get_tab_count() const;
2021-11-03 19:05:28 +01:00
2014-02-10 02:10:30 +01:00
void set_current_tab(int p_current);
int get_current_tab() const;
2020-09-08 22:30:47 +02:00
int get_previous_tab() const;
int get_hovered_tab() const;
2014-02-10 02:10:30 +01:00
2017-11-16 23:57:57 +01:00
int get_tab_offset() const;
bool get_offset_buttons_visible() const;
2014-02-10 02:10:30 +01:00
void remove_tab(int p_idx);
void clear_tabs();
2017-11-16 23:57:57 +01:00
void set_scrolling_enabled(bool p_enabled);
bool get_scrolling_enabled() const;
void set_drag_to_rearrange_enabled(bool p_enabled);
bool get_drag_to_rearrange_enabled() const;
void set_tabs_rearrange_group(int p_group_id);
int get_tabs_rearrange_group() const;
void set_scroll_to_selected(bool p_enabled);
bool get_scroll_to_selected() const;
2018-01-02 08:10:49 +01:00
void set_select_with_rmb(bool p_enabled);
bool get_select_with_rmb() const;
void ensure_tab_visible(int p_idx);
void set_max_tab_width(int p_width);
int get_max_tab_width() const;
Rect2 get_tab_rect(int p_tab) const;
2020-07-10 12:34:39 +02:00
Size2 get_minimum_size() const override;
2014-02-10 02:10:30 +01:00
2021-10-17 18:55:44 +02:00
TabBar();
2014-02-10 02:10:30 +01:00
};
VARIANT_ENUM_CAST(TabBar::AlignmentMode);
2021-10-17 18:55:44 +02:00
VARIANT_ENUM_CAST(TabBar::CloseButtonDisplayPolicy);
2014-02-10 02:10:30 +01:00
2021-10-17 18:55:44 +02:00
#endif // TAB_BAR_H