1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:48:11 +00:00

LibVT+Terminal: Don't set window title directly from TerminalWidget

Instead, have TerminalWidget provide an on_title_change hook.
This allows embedders to decide for themselves what to do if we receive
a "set terminal title" escape sequence.
This commit is contained in:
Andreas Kling 2019-10-21 22:07:59 +02:00
parent 3fa16dfae2
commit e9f6e1e287
3 changed files with 7 additions and 4 deletions

View file

@ -163,6 +163,9 @@ int main(int argc, char** argv)
RefPtr<CConfigFile> config = CConfigFile::get_for_app("Terminal");
auto terminal = TerminalWidget::construct(ptm_fd, true, config);
terminal->on_title_change = [&](auto& title) {
window->set_title(title);
};
window->set_main_widget(terminal);
window->move_to(300, 300);
terminal->apply_size_increments_to_window(*window);