فهرست منبع

Browser: Show the page title in the window title bar :^)

Andreas Kling 5 سال پیش
والد
کامیت
4173c77eb5
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      Applications/Browser/main.cpp

+ 4 - 0
Applications/Browser/main.cpp

@@ -61,6 +61,10 @@ int main(int argc, char** argv)
         html_widget->load(html_widget->document()->complete_url(url));
         html_widget->load(html_widget->document()->complete_url(url));
     };
     };
 
 
+    html_widget->on_title_change = [&](auto& title) {
+        window->set_title(String::format("%s - Browser", title.characters()));
+    };
+
     auto focus_location_box_action = GAction::create("Focus location box", { Mod_Ctrl, Key_L }, [&](auto&) {
     auto focus_location_box_action = GAction::create("Focus location box", { Mod_Ctrl, Key_L }, [&](auto&) {
         location_box->select_all();
         location_box->select_all();
         location_box->set_focus(true);
         location_box->set_focus(true);