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

◆ AddItemToClipboard()

void ScriptConsoleTabBase::AddItemToClipboard ( TextListboxWidget text_listbox_widget)
inlineprotected

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

91 {
92 int selected_row_index = text_listbox_widget.GetSelectedRow();
93 if (selected_row_index != -1)
94 {
95 string item_name;
96 text_listbox_widget.GetItemText(selected_row_index, 0, item_name);
97 GetGame().CopyToClipboard(item_name);
98 }
99 }
proto native void CopyToClipboard(string text)
proto native CGame GetGame()

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

Используется в ScriptConsoleConfigTab::OnClick(), ScriptConsoleItemsTab::OnClick() и ScriptConsoleSoundsTab::OnClick().