コード例 #1
0
ファイル: Console.cpp プロジェクト: jsj2008/100-things
void Console::InputLineOnInput()
{
	ResetHistoryPos();
	ResetSuggestionPos();
	UpdateSuggestionList();
	SelectionDelete();
}
コード例 #2
0
ファイル: Console.cpp プロジェクト: jsj2008/100-things
void Console::InputLineSet( std::string str, bool update_suggestion )
{
	input_line = str;
	input_line_pos = str.size();
	if( update_suggestion ) {
		UpdateSuggestionList();
	}
}
コード例 #3
0
void SAssetSearchBox::HandleTextChanged(const FText& NewText)
{
    OnTextChanged.ExecuteIfBound(NewText);
    UpdateSuggestionList();
}