@@ -424,72 +424,60 @@ void ProjectListItemControl::set_is_grayed(bool p_grayed) {
424424 }
425425}
426426
427- void ProjectListItemControl::set_project_title_index (int p_title_index) {
428- project_title_index = p_title_index;
429- }
430-
431427void ProjectListItemControl::set_project_title_autowrap () {
428+ ProjectList *pl = get_list ();
432429 title_fullsize_cache = project_title->get_size ().x ;
433- window_size_cache = get_window ()->get_size ().x ;
434430
435431 int tag_size = 0 ;
436432 int tag_maxsize = 0 ;
437433 for (Node *child : tag_container->iterate_children ()) {
438434 ProjectTag *tag = Object::cast_to<ProjectTag>(child);
439- tag_size + = tag->get_size ().x ;
440-
441- if (tag_maxsize == 0 ) {
442- tag_maxsize = tag-> get_custom_maximum_size (). x ;
435+ int temp_tag_size = tag->get_size ().x ;
436+ tag_size += temp_tag_size;
437+ if (temp_tag_size > tag_maxsize ) {
438+ tag_maxsize = temp_tag_size ;
443439 }
444440 }
441+ tag_fullsize_cache = tag_size;
445442 tag_size_cache = MIN (tag_size, tag_maxsize);
446- int &title_size_cache = get_list ()->title_size_cache [project_title_index];
447443
448- int size_check = 800 * EDSCALE ;
449- if (title_size_cache == 0 ) {
450- title_size_cache = size_check;
444+ const int project_title_and_tags_fullsize = title_fullsize_cache + tag_size;
445+ int &largest_project_title_and_tags_fullsize = pl->largest_project_title_and_tags_fullsize ;
446+ if (project_title_and_tags_fullsize > largest_project_title_and_tags_fullsize) {
447+ largest_project_title_and_tags_fullsize = project_title_and_tags_fullsize;
451448 }
452449
453- if (title_fullsize_cache > size_check - tag_size_cache) {
454- resize_project_title ();
450+ int &abs_title_and_tags_minsize = pl->abs_title_and_tags_minsize_cache ;
451+ if (abs_title_and_tags_minsize == 0 ) {
452+ ProjectTag *tag = memnew (ProjectTag (" dummy" ));
453+ const int abs_tag_maxsize = tag->get_custom_maximum_size ().x ;
454+ memdelete (tag);
455+ abs_title_and_tags_minsize = (200 * EDSCALE ) + abs_tag_maxsize;
455456 }
456- }
457457
458- void ProjectListItemControl::resize_project_title () {
459- if (get_window () == nullptr ) {
460- return ;
461- }
462-
463- int window_size = get_window ()->get_size ().x ;
464- int difference = window_size - window_size_cache;
465- window_size_cache = window_size;
458+ int &title_and_tags_size = pl->title_and_tags_size_cache ;
466459
467- int &title_size_cache = get_list ()->title_size_cache [project_title_index];
468- title_size_cache += difference;
469-
470- if (title_size_cache > title_fullsize_cache + tag_size_cache) {
471- project_title->set_custom_maximum_size (Vector2 (-1 , -1 ));
472- project_title->set_custom_minimum_size (Vector2 (0 , 0 ));
473- project_title->set_autowrap_mode (TextServer::AUTOWRAP_OFF );
460+ if (title_fullsize_cache > title_and_tags_size - tag_size && !pl->before_ready ) {
461+ resize_project_title (title_and_tags_size, abs_title_and_tags_minsize);
462+ }
463+ }
474464
465+ void ProjectListItemControl::resize_project_title (int p_title_and_tags_size, int p_abs_title_and_tags_minsize) {
466+ if (p_title_and_tags_size >= title_fullsize_cache + tag_fullsize_cache) {
467+ if (project_title->get_autowrap_mode () != TextServer::AUTOWRAP_OFF ) {
468+ project_title->set_custom_maximum_size (Vector2 (-1 , -1 ));
469+ project_title->set_custom_minimum_size (Vector2 (0 , 0 ));
470+ project_title->set_autowrap_mode (TextServer::AUTOWRAP_OFF );
471+ }
475472 return ;
476473 }
477- ProjectTag tag = ProjectTag (" dummy" );
478- int tag_maxsize = tag.get_custom_maximum_size ().x ;
479- int title_maxsize = title_size_cache - tag_size_cache;
480- int title_minsize = title_size_cache - tag_maxsize;
481474
482- int abs_minsize = (200 * EDSCALE );
483- if (title_fullsize_cache > abs_minsize) {
484- if (title_minsize < abs_minsize) {
485- title_minsize = abs_minsize + tag_maxsize - tag_size_cache;
486- }
487- if (title_maxsize < title_minsize) {
488- project_title->set_custom_maximum_size (Vector2 (title_minsize, -1 ));
489- } else {
490- project_title->set_custom_maximum_size (Vector2 (title_maxsize, -1 ));
491- }
492- project_title->set_custom_minimum_size (Vector2 (title_minsize, 0 ));
475+ const int abs_title_minsize = p_abs_title_and_tags_minsize - tag_size_cache;
476+ if (title_fullsize_cache >= abs_title_minsize) {
477+ const int title_maxsize = p_title_and_tags_size - tag_size_cache;
478+ const int title_size = MAX (title_maxsize, abs_title_minsize);
479+ project_title->set_custom_maximum_size (Vector2 (title_size, -1 ));
480+ project_title->set_custom_minimum_size (Vector2 (title_size, 0 ));
493481 project_title->set_autowrap_mode (TextServer::AUTOWRAP_WORD_SMART );
494482 }
495483}
@@ -703,7 +691,12 @@ void ProjectList::_notification(int p_what) {
703691 AccessibilityServer::get_singleton ()->update_set_role (ae, AccessibilityServerEnums::AccessibilityRole::ROLE_LIST_BOX );
704692 AccessibilityServer::get_singleton ()->update_set_list_item_count (ae, _projects.size ());
705693 AccessibilityServer::get_singleton ()->update_set_flag (ae, AccessibilityServerEnums::AccessibilityFlags::FLAG_MULTISELECTABLE , false );
706- }
694+ } break ;
695+
696+ case NOTIFICATION_READY : {
697+ window_size_cache = get_window ()->get_size ().x ;
698+ before_ready = false ;
699+ } break ;
707700 }
708701}
709702
@@ -936,14 +929,12 @@ void ProjectList::update_project_list() {
936929 // If you have 150 projects, it may read through 150 files on your disk at once + load 150 icons.
937930 // FIXME: Does it really have to be a full, hard reload? Runtime updates should be made much cheaper.
938931
939- int temp_title_index = -1 ;
940932 if (ProjectManager::get_singleton ()->is_initialized ()) {
941933 // Clear whole list
942934 for (int i = 0 ; i < _projects.size (); ++i) {
943935 Item &project = _projects.write [i];
944936 CRASH_COND (project.control == nullptr );
945937
946- temp_title_index = project.project_title_index ;
947938 memdelete (project.control ); // Why not queue_free()?
948939 }
949940
@@ -956,9 +947,6 @@ void ProjectList::update_project_list() {
956947
957948 // Create controls
958949 for (int i = 0 ; i < _projects.size (); ++i) {
959- Item &item = _projects.write [i];
960- item.project_title_index = temp_title_index;
961-
962950 _create_project_item_control (i);
963951 }
964952
@@ -1146,14 +1134,10 @@ int ProjectList::refresh_project(const String &dir_path) {
11461134
11471135 bool was_selected = _selected_project_paths.has (dir_path);
11481136
1149- int temp_title_index = -1 ;
1150-
11511137 // Remove item in any case
11521138 for (int i = 0 ; i < _projects.size (); ++i) {
11531139 const Item &existing_item = _projects[i];
11541140 if (existing_item.path == dir_path) {
1155- temp_title_index = existing_item.project_title_index ;
1156-
11571141 _remove_project (i, false );
11581142 break ;
11591143 }
@@ -1165,7 +1149,6 @@ int ProjectList::refresh_project(const String &dir_path) {
11651149
11661150 Item item = load_project_data (dir_path, is_favorite);
11671151
1168- item.project_title_index = temp_title_index;
11691152 _projects.push_back (item);
11701153 _create_project_item_control (_projects.size () - 1 );
11711154
@@ -1233,15 +1216,6 @@ void ProjectList::_create_project_item_control(int p_index) {
12331216#endif
12341217 hb->connect (" request_menu" , callable_mp (this , &ProjectList::_open_menu).bind (hb));
12351218
1236- if (item.project_title_index == -1 ) {
1237- project_title_index_count++;
1238- title_size_cache[project_title_index_count] = 0 ;
1239- item.project_title_index = project_title_index_count;
1240- hb->set_project_title_index (project_title_index_count);
1241- } else {
1242- hb->set_project_title_index (item.project_title_index );
1243- }
1244-
12451219 project_list_vbox->add_child (hb);
12461220}
12471221
@@ -1597,8 +1571,18 @@ void ProjectList::erase_selected_projects(bool p_delete_project_contents) {
15971571// Resize project titles.
15981572
15991573void ProjectList::resize_project_titles () {
1574+ Window *win = get_window ();
1575+ if (win == nullptr ) {
1576+ return ;
1577+ }
1578+
1579+ const int window_size = win->get_size ().x ;
1580+ const int difference = window_size - window_size_cache;
1581+ window_size_cache = window_size;
1582+ title_and_tags_size_cache += difference;
1583+
16001584 for (Item &item : _projects) {
1601- item.control ->resize_project_title ();
1585+ item.control ->resize_project_title (title_and_tags_size_cache, abs_title_and_tags_minsize_cache );
16021586 }
16031587}
16041588
0 commit comments