2017-07-22 17:14:44 +00:00
/**************************************************************************/
/* editor_about.cpp */
/**************************************************************************/
/* 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-04 23:50:27 +00:00
2017-07-22 17:14:44 +00:00
# include "editor_about.h"
2018-05-16 04:54:22 +00:00
# include "core/authors.gen.h"
# include "core/donors.gen.h"
# include "core/license.gen.h"
2022-03-12 01:04:14 +00:00
# include "core/os/time.h"
2018-05-16 04:54:22 +00:00
# include "core/version.h"
2023-08-13 00:33:39 +00:00
# include "editor/editor_string_names.h"
2024-01-15 12:14:55 +00:00
# include "editor/themes/editor_scale.h"
2024-02-14 21:40:55 +00:00
# include "scene/gui/item_list.h"
# include "scene/resources/style_box.h"
2017-07-22 17:14:44 +00:00
2019-12-24 00:20:54 +00:00
// The metadata key used to store and retrieve the version text to copy to the clipboard.
2023-05-17 15:22:26 +00:00
const String EditorAbout : : META_TEXT_TO_COPY = " text_to_copy " ;
2019-12-24 00:20:54 +00:00
2017-11-27 15:51:12 +00:00
void EditorAbout : : _notification ( int p_what ) {
switch ( p_what ) {
2023-12-04 12:18:48 +00:00
case NOTIFICATION_THEME_CHANGED : {
const Ref < Font > font = get_theme_font ( SNAME ( " source " ) , EditorStringName ( EditorFonts ) ) ;
const int font_size = get_theme_font_size ( SNAME ( " source_size " ) , EditorStringName ( EditorFonts ) ) ;
_tpl_text - > begin_bulk_theme_override ( ) ;
_tpl_text - > add_theme_font_override ( " normal_font " , font ) ;
_tpl_text - > add_theme_font_size_override ( " normal_font_size " , font_size ) ;
2024-05-13 14:56:03 +00:00
_tpl_text - > add_theme_constant_override ( SceneStringName ( line_separation ) , 4 * EDSCALE ) ;
2023-12-04 12:18:48 +00:00
_tpl_text - > end_bulk_theme_override ( ) ;
2024-02-14 21:40:55 +00:00
license_text_label - > begin_bulk_theme_override ( ) ;
license_text_label - > add_theme_font_override ( " normal_font " , font ) ;
license_text_label - > add_theme_font_size_override ( " normal_font_size " , font_size ) ;
2024-05-13 14:56:03 +00:00
license_text_label - > add_theme_constant_override ( SceneStringName ( line_separation ) , 4 * EDSCALE ) ;
2024-02-14 21:40:55 +00:00
license_text_label - > end_bulk_theme_override ( ) ;
2023-12-04 12:18:48 +00:00
_logo - > set_texture ( get_editor_theme_icon ( SNAME ( " Logo " ) ) ) ;
2024-02-14 21:40:55 +00:00
for ( ItemList * il : name_lists ) {
for ( int i = 0 ; i < il - > get_item_count ( ) ; i + + ) {
if ( il - > get_item_metadata ( i ) ) {
il - > set_item_icon ( i , get_theme_icon ( SNAME ( " ExternalLink " ) , EditorStringName ( EditorIcons ) ) ) ;
il - > set_item_icon_modulate ( i , get_theme_color ( SNAME ( " font_disabled_color " ) , EditorStringName ( Editor ) ) ) ;
}
}
}
2017-11-27 15:51:12 +00:00
} break ;
}
}
2017-07-22 17:14:44 +00:00
void EditorAbout : : _license_tree_selected ( ) {
TreeItem * selected = _tpl_tree - > get_selected ( ) ;
2019-11-05 14:57:36 +00:00
_tpl_text - > scroll_to_line ( 0 ) ;
2017-07-22 17:14:44 +00:00
_tpl_text - > set_text ( selected - > get_metadata ( 0 ) ) ;
}
2019-12-24 00:20:54 +00:00
void EditorAbout : : _version_button_pressed ( ) {
DisplayServer : : get_singleton ( ) - > clipboard_set ( version_btn - > get_meta ( META_TEXT_TO_COPY ) ) ;
}
2024-02-14 21:40:55 +00:00
void EditorAbout : : _item_with_website_selected ( int p_id , ItemList * p_il ) {
const String website = p_il - > get_item_metadata ( p_id ) ;
if ( ! website . is_empty ( ) ) {
OS : : get_singleton ( ) - > shell_open ( website ) ;
}
2017-07-22 17:14:44 +00:00
}
2024-02-14 21:40:55 +00:00
void EditorAbout : : _item_list_resized ( ItemList * p_il ) {
p_il - > set_fixed_column_width ( p_il - > get_size ( ) . x / 3.0 - 16 * EDSCALE * 2.5 ) ; // Weird. Should be 3.0 and that's it?.
2017-07-22 17:14:44 +00:00
}
2024-02-14 21:40:55 +00:00
ScrollContainer * EditorAbout : : _populate_list ( const String & p_name , const List < String > & p_sections , const char * const * const p_src [ ] , const int p_single_column_flags , const bool p_allow_website ) {
2017-09-03 15:06:32 +00:00
ScrollContainer * sc = memnew ( ScrollContainer ) ;
sc - > set_name ( p_name ) ;
sc - > set_v_size_flags ( Control : : SIZE_EXPAND ) ;
VBoxContainer * vbc = memnew ( VBoxContainer ) ;
vbc - > set_h_size_flags ( Control : : SIZE_EXPAND_FILL ) ;
sc - > add_child ( vbc ) ;
2024-02-14 21:40:55 +00:00
Ref < StyleBoxEmpty > empty_stylebox = memnew ( StyleBoxEmpty ) ;
2024-04-15 13:18:34 +00:00
int i = 0 ;
for ( List < String > : : ConstIterator itr = p_sections . begin ( ) ; itr ! = p_sections . end ( ) ; + + itr , + + i ) {
2024-02-14 21:40:55 +00:00
bool single_column = p_single_column_flags & ( 1 < < i ) ;
2018-05-16 04:54:22 +00:00
const char * const * names_ptr = p_src [ i ] ;
2017-09-03 15:06:32 +00:00
if ( * names_ptr ) {
Label * lbl = memnew ( Label ) ;
2021-07-08 13:29:15 +00:00
lbl - > set_theme_type_variation ( " HeaderSmall " ) ;
2024-04-15 13:18:34 +00:00
lbl - > set_text ( * itr ) ;
2017-09-03 15:06:32 +00:00
vbc - > add_child ( lbl ) ;
ItemList * il = memnew ( ItemList ) ;
2024-01-23 21:29:45 +00:00
il - > set_auto_translate_mode ( AUTO_TRANSLATE_MODE_DISABLED ) ;
2017-09-03 15:06:32 +00:00
il - > set_h_size_flags ( Control : : SIZE_EXPAND_FILL ) ;
il - > set_same_column_width ( true ) ;
il - > set_auto_height ( true ) ;
2017-11-27 15:51:12 +00:00
il - > set_mouse_filter ( Control : : MOUSE_FILTER_IGNORE ) ;
2024-02-14 21:40:55 +00:00
il - > set_focus_mode ( Control : : FOCUS_NONE ) ;
2022-04-14 21:20:28 +00:00
il - > add_theme_constant_override ( " h_separation " , 16 * EDSCALE ) ;
2024-02-14 21:40:55 +00:00
if ( p_allow_website ) {
il - > set_focus_mode ( Control : : FOCUS_CLICK ) ;
il - > set_mouse_filter ( Control : : MOUSE_FILTER_PASS ) ;
il - > connect ( " item_activated " , callable_mp ( this , & EditorAbout : : _item_with_website_selected ) . bind ( il ) ) ;
2024-05-13 14:56:03 +00:00
il - > connect ( SceneStringName ( resized ) , callable_mp ( this , & EditorAbout : : _item_list_resized ) . bind ( il ) ) ;
il - > connect ( SceneStringName ( focus_exited ) , callable_mp ( il , & ItemList : : deselect_all ) ) ;
2024-02-14 21:40:55 +00:00
il - > add_theme_style_override ( " focus " , empty_stylebox ) ;
il - > add_theme_style_override ( " selected " , empty_stylebox ) ;
while ( * names_ptr ) {
const String name = String : : utf8 ( * names_ptr + + ) ;
const String identifier = name . get_slice ( " < " , 0 ) ;
const String website = name . get_slice_count ( " < " ) = = 1 ? " " : name . get_slice ( " < " , 1 ) . trim_suffix ( " > " ) ;
const int name_item_id = il - > add_item ( identifier , nullptr , false ) ;
il - > set_item_tooltip_enabled ( name_item_id , false ) ;
if ( ! website . is_empty ( ) ) {
il - > set_item_selectable ( name_item_id , true ) ;
il - > set_item_metadata ( name_item_id , website ) ;
il - > set_item_tooltip ( name_item_id , website + " \n \n " + TTR ( " Double-click to open in browser. " ) ) ;
il - > set_item_tooltip_enabled ( name_item_id , true ) ;
}
if ( ! * names_ptr & & name . contains ( " anonymous " ) ) {
il - > set_item_disabled ( name_item_id , true ) ;
}
}
} else {
while ( * names_ptr ) {
il - > add_item ( String : : utf8 ( * names_ptr + + ) , nullptr , false ) ;
}
2017-09-03 15:06:32 +00:00
}
2024-02-14 21:40:55 +00:00
il - > set_max_columns ( single_column ? 1 : 16 ) ;
name_lists . append ( il ) ;
2017-09-03 15:06:32 +00:00
vbc - > add_child ( il ) ;
HSeparator * hs = memnew ( HSeparator ) ;
hs - > set_modulate ( Color ( 0 , 0 , 0 , 0 ) ) ;
vbc - > add_child ( hs ) ;
}
}
return sc ;
}
2017-07-22 17:14:44 +00:00
EditorAbout : : EditorAbout ( ) {
set_title ( TTR ( " Thanks from the Godot community! " ) ) ;
set_hide_on_ok ( true ) ;
VBoxContainer * vbc = memnew ( VBoxContainer ) ;
2023-12-04 12:18:48 +00:00
add_child ( vbc ) ;
2017-07-22 17:14:44 +00:00
HBoxContainer * hbc = memnew ( HBoxContainer ) ;
hbc - > set_h_size_flags ( Control : : SIZE_EXPAND_FILL ) ;
2021-11-25 02:58:47 +00:00
hbc - > set_alignment ( BoxContainer : : ALIGNMENT_CENTER ) ;
2022-02-08 09:14:58 +00:00
hbc - > add_theme_constant_override ( " separation " , 30 * EDSCALE ) ;
2017-07-22 17:14:44 +00:00
vbc - > add_child ( hbc ) ;
_logo = memnew ( TextureRect ) ;
2022-05-01 07:57:00 +00:00
_logo - > set_stretch_mode ( TextureRect : : STRETCH_KEEP_ASPECT_CENTERED ) ;
2017-07-22 17:14:44 +00:00
hbc - > add_child ( _logo ) ;
2019-12-24 00:20:54 +00:00
VBoxContainer * version_info_vbc = memnew ( VBoxContainer ) ;
// Add a dummy control node for spacing.
Control * v_spacer = memnew ( Control ) ;
version_info_vbc - > add_child ( v_spacer ) ;
version_btn = memnew ( LinkButton ) ;
2017-07-22 17:14:44 +00:00
String hash = String ( VERSION_HASH ) ;
2020-05-14 14:41:43 +00:00
if ( hash . length ( ) ! = 0 ) {
2021-06-07 21:51:18 +00:00
hash = " " + vformat ( " [%s] " , hash . left ( 9 ) ) ;
2020-05-14 14:41:43 +00:00
}
2019-12-24 00:20:54 +00:00
version_btn - > set_text ( VERSION_FULL_NAME + hash ) ;
// Set the text to copy in metadata as it slightly differs from the button's text.
version_btn - > set_meta ( META_TEXT_TO_COPY , " v " VERSION_FULL_BUILD + hash ) ;
version_btn - > set_underline_mode ( LinkButton : : UNDERLINE_MODE_ON_HOVER ) ;
2022-03-12 01:04:14 +00:00
String build_date ;
if ( VERSION_TIMESTAMP > 0 ) {
build_date = Time : : get_singleton ( ) - > get_datetime_string_from_unix_time ( VERSION_TIMESTAMP , true ) + " UTC " ;
} else {
build_date = TTR ( " (unknown) " ) ;
}
version_btn - > set_tooltip_text ( vformat ( TTR ( " Git commit date: %s \n Click to copy the version number. " ) , build_date ) ) ;
2024-05-14 07:40:21 +00:00
version_btn - > connect ( SceneStringName ( pressed ) , callable_mp ( this , & EditorAbout : : _version_button_pressed ) ) ;
2019-12-24 00:20:54 +00:00
version_info_vbc - > add_child ( version_btn ) ;
2017-07-22 17:14:44 +00:00
Label * about_text = memnew ( Label ) ;
about_text - > set_v_size_flags ( Control : : SIZE_SHRINK_CENTER ) ;
2023-11-14 13:34:06 +00:00
about_text - > set_text (
String : : utf8 ( " \xc2 \xa9 2014-present " ) + TTR ( " Godot Engine contributors " ) + " . " +
2023-01-08 13:28:10 +00:00
String : : utf8 ( " \n \xc2 \xa9 2007-2014 Juan Linietsky, Ariel Manzur. \n " ) ) ;
2019-12-24 00:20:54 +00:00
version_info_vbc - > add_child ( about_text ) ;
hbc - > add_child ( version_info_vbc ) ;
2017-07-22 17:14:44 +00:00
TabContainer * tc = memnew ( TabContainer ) ;
2022-03-07 14:32:49 +00:00
tc - > set_tab_alignment ( TabBar : : ALIGNMENT_CENTER ) ;
2022-05-20 04:57:10 +00:00
tc - > set_custom_minimum_size ( Size2 ( 400 , 200 ) * EDSCALE ) ;
2017-07-22 17:14:44 +00:00
tc - > set_v_size_flags ( Control : : SIZE_EXPAND_FILL ) ;
2022-05-27 02:12:09 +00:00
tc - > set_theme_type_variation ( " TabContainerOdd " ) ;
2017-07-22 17:14:44 +00:00
vbc - > add_child ( tc ) ;
2024-02-14 21:40:55 +00:00
// Authors.
2017-07-22 17:14:44 +00:00
List < String > dev_sections ;
dev_sections . push_back ( TTR ( " Project Founders " ) ) ;
dev_sections . push_back ( TTR ( " Lead Developer " ) ) ;
2020-09-08 11:56:08 +00:00
// TRANSLATORS: This refers to a job title.
2022-03-18 07:01:08 +00:00
dev_sections . push_back ( TTR ( " Project Manager " , " Job Title " ) ) ;
2017-07-22 17:14:44 +00:00
dev_sections . push_back ( TTR ( " Developers " ) ) ;
2023-11-14 13:34:06 +00:00
const char * const * dev_src [ ] = {
AUTHORS_FOUNDERS ,
AUTHORS_LEAD_DEVELOPERS ,
AUTHORS_PROJECT_MANAGERS ,
AUTHORS_DEVELOPERS ,
} ;
2024-02-14 21:40:55 +00:00
tc - > add_child ( _populate_list ( TTR ( " Authors " ) , dev_sections , dev_src , 0b1 ) ) ; // First section (Project Founders) is always one column.
2017-07-22 17:14:44 +00:00
2024-02-14 21:40:55 +00:00
// Donors.
2017-09-03 15:06:32 +00:00
List < String > donor_sections ;
2023-11-14 13:34:06 +00:00
donor_sections . push_back ( TTR ( " Patrons " ) ) ;
2017-09-03 15:06:32 +00:00
donor_sections . push_back ( TTR ( " Platinum Sponsors " ) ) ;
donor_sections . push_back ( TTR ( " Gold Sponsors " ) ) ;
2020-08-13 21:54:30 +00:00
donor_sections . push_back ( TTR ( " Silver Sponsors " ) ) ;
2023-11-14 13:34:06 +00:00
donor_sections . push_back ( TTR ( " Diamond Members " ) ) ;
donor_sections . push_back ( TTR ( " Titanium Members " ) ) ;
donor_sections . push_back ( TTR ( " Platinum Members " ) ) ;
donor_sections . push_back ( TTR ( " Gold Members " ) ) ;
const char * const * donor_src [ ] = {
DONORS_PATRONS ,
DONORS_SPONSORS_PLATINUM ,
DONORS_SPONSORS_GOLD ,
DONORS_SPONSORS_SILVER ,
DONORS_MEMBERS_DIAMOND ,
DONORS_MEMBERS_TITANIUM ,
DONORS_MEMBERS_PLATINUM ,
DONORS_MEMBERS_GOLD ,
} ;
2024-02-14 21:40:55 +00:00
tc - > add_child ( _populate_list ( TTR ( " Donors " ) , donor_sections , donor_src , 0b1 , true ) ) ; // First section (Patron) is one column.
2017-09-03 15:06:32 +00:00
2024-02-14 21:40:55 +00:00
// License.
2017-07-22 17:14:44 +00:00
2024-02-14 21:40:55 +00:00
license_text_label = memnew ( RichTextLabel ) ;
license_text_label - > set_threaded ( true ) ;
license_text_label - > set_name ( TTR ( " License " ) ) ;
license_text_label - > set_h_size_flags ( Control : : SIZE_EXPAND_FILL ) ;
license_text_label - > set_v_size_flags ( Control : : SIZE_EXPAND_FILL ) ;
license_text_label - > set_text ( String : : utf8 ( GODOT_LICENSE_TEXT ) ) ;
tc - > add_child ( license_text_label ) ;
2017-07-22 17:14:44 +00:00
2024-02-14 21:40:55 +00:00
// Thirdparty License.
2017-09-03 15:06:32 +00:00
2017-07-22 17:14:44 +00:00
VBoxContainer * license_thirdparty = memnew ( VBoxContainer ) ;
2019-08-21 17:32:58 +00:00
license_thirdparty - > set_name ( TTR ( " Third-party Licenses " ) ) ;
2017-07-22 17:14:44 +00:00
license_thirdparty - > set_h_size_flags ( Control : : SIZE_EXPAND_FILL ) ;
tc - > add_child ( license_thirdparty ) ;
Label * tpl_label = memnew ( Label ) ;
tpl_label - > set_h_size_flags ( Control : : SIZE_EXPAND_FILL ) ;
2022-06-15 08:01:45 +00:00
tpl_label - > set_autowrap_mode ( TextServer : : AUTOWRAP_WORD_SMART ) ;
2019-08-21 17:32:58 +00:00
tpl_label - > set_text ( TTR ( " Godot Engine relies on a number of third-party free and open source libraries, all compatible with the terms of its MIT license. The following is an exhaustive list of all such third-party components with their respective copyright statements and license terms. " ) ) ;
2018-06-02 00:28:49 +00:00
tpl_label - > set_size ( Size2 ( 630 , 1 ) * EDSCALE ) ;
2017-07-22 17:14:44 +00:00
license_thirdparty - > add_child ( tpl_label ) ;
HSplitContainer * tpl_hbc = memnew ( HSplitContainer ) ;
tpl_hbc - > set_h_size_flags ( Control : : SIZE_EXPAND_FILL ) ;
tpl_hbc - > set_v_size_flags ( Control : : SIZE_EXPAND_FILL ) ;
tpl_hbc - > set_split_offset ( 240 * EDSCALE ) ;
license_thirdparty - > add_child ( tpl_hbc ) ;
_tpl_tree = memnew ( Tree ) ;
2024-03-17 08:28:18 +00:00
_tpl_tree - > set_auto_translate_mode ( AUTO_TRANSLATE_MODE_DISABLED ) ;
2017-07-22 17:14:44 +00:00
_tpl_tree - > set_hide_root ( true ) ;
TreeItem * root = _tpl_tree - > create_item ( ) ;
TreeItem * tpl_ti_all = _tpl_tree - > create_item ( root ) ;
tpl_ti_all - > set_text ( 0 , TTR ( " All Components " ) ) ;
TreeItem * tpl_ti_tp = _tpl_tree - > create_item ( root ) ;
tpl_ti_tp - > set_text ( 0 , TTR ( " Components " ) ) ;
tpl_ti_tp - > set_selectable ( 0 , false ) ;
TreeItem * tpl_ti_lc = _tpl_tree - > create_item ( root ) ;
tpl_ti_lc - > set_text ( 0 , TTR ( " Licenses " ) ) ;
tpl_ti_lc - > set_selectable ( 0 , false ) ;
String long_text = " " ;
2018-05-16 04:54:22 +00:00
for ( int component_index = 0 ; component_index < COPYRIGHT_INFO_COUNT ; component_index + + ) {
const ComponentCopyright & component = COPYRIGHT_INFO [ component_index ] ;
2017-07-22 17:14:44 +00:00
TreeItem * ti = _tpl_tree - > create_item ( tpl_ti_tp ) ;
2020-09-03 11:22:16 +00:00
String component_name = String : : utf8 ( component . name ) ;
2018-05-16 04:54:22 +00:00
ti - > set_text ( 0 , component_name ) ;
String text = component_name + " \n " ;
long_text + = " - " + component_name + " \n " ;
for ( int part_index = 0 ; part_index < component . part_count ; part_index + + ) {
const ComponentCopyrightPart & part = component . parts [ part_index ] ;
text + = " \n Files: " ;
for ( int file_num = 0 ; file_num < part . file_count ; file_num + + ) {
2020-09-03 11:22:16 +00:00
text + = " \n " + String : : utf8 ( part . files [ file_num ] ) ;
2018-05-16 04:54:22 +00:00
}
String copyright ;
for ( int copyright_index = 0 ; copyright_index < part . copyright_count ; copyright_index + + ) {
copyright + = String : : utf8 ( " \n \xc2 \xa9 " ) + String : : utf8 ( part . copyright_statements [ copyright_index ] ) ;
}
2017-07-22 17:14:44 +00:00
text + = copyright ;
long_text + = copyright ;
2020-09-03 11:22:16 +00:00
String license = " \n License: " + String : : utf8 ( part . license ) + " \n " ;
2017-07-22 17:14:44 +00:00
text + = license ;
long_text + = license + " \n " ;
}
ti - > set_metadata ( 0 , text ) ;
}
for ( int i = 0 ; i < LICENSE_COUNT ; i + + ) {
TreeItem * ti = _tpl_tree - > create_item ( tpl_ti_lc ) ;
2020-09-03 11:22:16 +00:00
String licensename = String : : utf8 ( LICENSE_NAMES [ i ] ) ;
2017-07-22 17:14:44 +00:00
ti - > set_text ( 0 , licensename ) ;
long_text + = " - " + licensename + " \n \n " ;
2020-09-03 11:22:16 +00:00
String licensebody = String : : utf8 ( LICENSE_BODIES [ i ] ) ;
2017-07-22 17:14:44 +00:00
ti - > set_metadata ( 0 , licensebody ) ;
long_text + = " " + licensebody . replace ( " \n " , " \n " ) + " \n \n " ;
}
tpl_ti_all - > set_metadata ( 0 , long_text ) ;
tpl_hbc - > add_child ( _tpl_tree ) ;
2017-12-01 14:37:25 +00:00
_tpl_text = memnew ( RichTextLabel ) ;
2022-05-18 07:17:55 +00:00
_tpl_text - > set_threaded ( true ) ;
2017-07-22 17:14:44 +00:00
_tpl_text - > set_h_size_flags ( Control : : SIZE_EXPAND_FILL ) ;
_tpl_text - > set_v_size_flags ( Control : : SIZE_EXPAND_FILL ) ;
tpl_hbc - > add_child ( _tpl_text ) ;
2024-05-14 12:21:31 +00:00
_tpl_tree - > connect ( SceneStringName ( item_selected ) , callable_mp ( this , & EditorAbout : : _license_tree_selected ) ) ;
2017-07-22 17:14:44 +00:00
tpl_ti_all - > select ( 0 ) ;
_tpl_text - > set_text ( tpl_ti_all - > get_metadata ( 0 ) ) ;
}
EditorAbout : : ~ EditorAbout ( ) { }