Home
last modified time | relevance | path

Searched refs:shown_items (Results 1 – 8 of 8) sorted by relevance

/dports/games/alephone/alephone-release-20190331/Source_Files/Misc/
H A Dsdl_widgets.cpp2103 if (selection > shown_items) in event()
2153 set_top_item(num_items - shown_items); in event()
2169 else if (s >= top_item + shown_items) in set_selection()
2170 set_top_item(s - shown_items + 1); in set_selection()
2184 if (num_items <= shown_items) in new_items()
2218 set_top_item((i > shown_items / 2) ? i - shown_items / 2 : 0); in center_item()
2224 if (num_items > shown_items) in set_top_item()
2225 i = PIN(i, 0, num_items - shown_items); in set_top_item()
2233 if (num_items <= shown_items) in set_top_item()
2757 } else if (num_items > shown_items) { in append_entry()
[all …]
H A Dsdl_widgets.h760 size_t shown_items; // Number of shown items variable
797 for (size_t n=top_item; n<top_item + MIN(shown_items, num_items); n++, i++, y=y+item_height()) in draw_items()
960 for (size_t n=top_item; n<top_item + MIN(shown_items, num_items); n++, ++i, y=y+item_height()) in draw_items()
989 …_GAMES, style); saved_min_height = item_height() * static_cast<uint16>(shown_items) + get_theme_sp… in w_games_in_room()
1023 …saved_min_height = item_height() * static_cast<uint16>(shown_items) + get_theme_space(LIST_WIDGET,… in w_players_in_room()
1066 …_ENTRY, style); saved_min_height = item_height() * static_cast<uint16>(shown_items) + get_theme_sp… in w_colorful_chat()
H A Dpreferences_widgets_sdl.h186 …saved_min_height = item_height() * static_cast<uint16>(shown_items) + get_theme_space(LIST_WIDGET,… in w_plugins()
H A Dpreferences_widgets_sdl.cpp155 …for (size_t n = top_item; n < top_item + MIN(shown_items, num_items); ++n, ++i, y = y + item_heigh… in draw_items()
/dports/games/alephone/alephone-release-20190331/Source_Files/XML/
H A DQuickSave.cpp156 …saved_min_height = item_height() * static_cast<uint16>(shown_items) + get_theme_space(LIST_WIDGET,… in w_saves()
209 …ce(LIST_WIDGET, T_SPACE)) / item_height() + top_item < std::min(num_items, top_item + shown_items)) in click()
231 …for (size_t n = top_item; n < top_item + MIN(shown_items, num_items); ++n, ++i, y = y + item_heigh… in draw_items()
/dports/games/alephone/alephone-release-20190331/Source_Files/Network/
H A Dnetwork_dialog_widgets_sdl.cpp137 if(old_top_item + shown_items > num_items && num_items >= shown_items) in unlist_player()
138 set_top_item(num_items - shown_items); in unlist_player()
/dports/misc/orange3/orange3-3.29.1/Orange/widgets/visualize/
H A Downomogram.py402 shown_items = []
416 if not collides(text, shown_items):
418 shown_items.append(text)
496 shown_items = []
511 if not collides(text, shown_items):
513 shown_items.append(text)
/dports/games/stonesoup/crawl-0.27.1/crawl-ref/source/
H A Dmenu.cc155 size_t shown_items() { return item_info.size(); } in shown_items() function in UIMenu
2131 if (m_ui.menu->shown_items() == 0) in set_hovered()