Lines Matching refs:_dialogue_window

331     _dialogue_window()  in DialogueSupervisor()
333 _dialogue_window.SetPosition(512.0f, 170.0f); in DialogueSupervisor()
348 _dialogue_window.SetPosition(x, y); in SetDialoguePosition()
374 _dialogue_window.Draw(); in Draw()
425 _dialogue_window.GetNameText().SetText(it->second.name); in ChangeSpeakerName()
512 _dialogue_window.GetDisplayTextBox().Update(); in _UpdateLine()
515 if(_dialogue_window.GetDisplayTextBox().IsFinished()) { in _UpdateLine()
528 if(_current_options || !_dialogue_window.GetDisplayTextBox().IsFinished()) { in _UpdateLine()
529 _dialogue_window.SetIndicator(DIALOGUE_NO_INDICATOR); in _UpdateLine()
531 if (_dialogue_window.SetIndicator(DIALOGUE_LAST_INDICATOR)) in _UpdateLine()
534 if (_dialogue_window.SetIndicator(DIALOGUE_NEXT_INDICATOR)) in _UpdateLine()
544 if(_dialogue_window.GetDisplayTextBox().IsFinished() == false) { in _UpdateLine()
545 _dialogue_window.GetDisplayTextBox().ForceFinish(); in _UpdateLine()
558 _dialogue_window.GetDisplayOptionBox().Update(); in _UpdateOptions()
562 _dialogue_window.GetDisplayOptionBox().InputConfirm(); in _UpdateOptions()
568 _dialogue_window.GetDisplayOptionBox().InputUp(); in _UpdateOptions()
573 _dialogue_window.GetDisplayOptionBox().InputDown(); in _UpdateOptions()
595 _dialogue_window.Clear(); in _BeginLine()
596_dialogue_window.GetDisplayTextBox().SetDisplayText(_current_dialogue->GetLineText(_line_counter)); in _BeginLine()
599 _dialogue_window.GetDisplayOptionBox().AddOption(_current_options->GetOptionText(i)); in _BeginLine()
602 _dialogue_window.GetDisplayOptionBox().SetSelection(0); in _BeginLine()
609 _dialogue_window.GetNameText().SetText(""); in _BeginLine()
610 _dialogue_window.SetPortraitImage(nullptr); in _BeginLine()
612 _dialogue_window.GetNameText().SetText(line_speaker->name); in _BeginLine()
613 _dialogue_window.SetPortraitImage(&(line_speaker->portrait)); in _BeginLine()
623 uint32_t selected_option = _dialogue_window.GetDisplayOptionBox().GetSelection(); in _EndLine()