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

◆ AddItemToClipboard()

void UIPopupScript::AddItemToClipboard ( TextListboxWidget text_listbox_widget)
inlineprivate

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

42 {
43 int selected_row_index = text_listbox_widget.GetSelectedRow();
44 if ( selected_row_index != -1 )
45 {
46 string item_name;
47 text_listbox_widget.GetItemText( selected_row_index, 0, item_name );
48 GetGame().CopyToClipboard( item_name );
49 }
50 }
proto native void CopyToClipboard(string text)
proto native CGame GetGame()

Перекрестные ссылки CGame::CopyToClipboard() и GetGame().

Используется в OnClick().