DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ Clear()

void ScriptedWidgetEventHandler::Clear ( )
inlineprivate

См. определение в файле ContextMenu.c строка 232

233 {
234 int i;
235
236 m_commands.Clear();
237
239 return;
240 Widget child = m_context_menu_panel_widget.GetChildren();
241 while(child)
242 {
243 ButtonWidget button = ButtonWidget.Cast(child);
244 if(button)
245 {
246 button.Show(false);
247 }
248 child = child.GetSibling();
249
250
251 }
252 m_count = 0;
254 }
int m_max_item_width
Определения ContextMenu.c:9
int m_count
Определения ContextMenu.c:10
Widget m_context_menu_panel_widget
Определения ContextMenu.c:7
ref array< ref CallQueueContext > m_commands
Определения ContextMenu.c:8
WorkspaceWidget Widget
Defined in code.

Перекрестные ссылки m_commands, m_context_menu_panel_widget, m_count и m_max_item_width.

Используется в BuildContextMenu(), Hide() и ~ContextMenu().