diff --git a/src/app/browser/main/tab/page.cpp b/src/app/browser/main/tab/page.cpp index 6e37a17b..0287b48d 100644 --- a/src/app/browser/main/tab/page.cpp +++ b/src/app/browser/main/tab/page.cpp @@ -10,6 +10,11 @@ Page::Page( const Glib::RefPtr & ACTION__PAGE_NAVIGATION_HISTORY_FORWARD, const Glib::RefPtr & ACTION__PAGE_NAVIGATION_UPDATE ) { + // Init extras + mime = MIME::UNDEFINED; + title = _("New page"); + subtitle = ""; + // Init components pageNavigation = Gtk::make_managed( ACTION__REFRESH, @@ -34,7 +39,9 @@ Page::Page( ); refresh( - _("New page"), "", 0 + title, + subtitle, + 0 ); } @@ -138,7 +145,7 @@ void Page::navigation_update( Glib::ustring::sprintf( _("request %s.."), pageNavigation->get_request_path().empty() ? pageNavigation->get_request_host() - : pageNavigation->get_request_path() + : pageNavigation->get_request_path() ), .5 ); @@ -153,7 +160,7 @@ void Page::navigation_update( Glib::ustring::sprintf( _("reading %s.."), pageNavigation->get_request_path().empty() ? pageNavigation->get_request_host() - : pageNavigation->get_request_path() + : pageNavigation->get_request_path() ), .75 ); @@ -169,6 +176,8 @@ void Page::navigation_update( // Route by mime type or path extension if (meta[2] == "text/gemini" || Glib::str_has_suffix(pageNavigation->get_request_path(), ".gmi")) { + mime = MIME::TEXT_GEMINI; + pageContent->set_text_gemini( buffer // @TODO ); @@ -176,6 +185,8 @@ void Page::navigation_update( else { + mime = MIME::TEXT_PLAIN; + pageContent->set_text_plain( _("MIME type not supported") ); @@ -194,7 +205,7 @@ void Page::navigation_update( refresh( pageNavigation->get_request_host(), // @TODO title pageNavigation->get_request_path().empty() ? pageNavigation->get_request_host() - : pageNavigation->get_request_path() + : pageNavigation->get_request_path() , 1 ); } @@ -257,6 +268,11 @@ void Page::navigation_history_forward() } // Getters +Page::MIME Page::get_mime() +{ + return mime; +} + Glib::ustring Page::get_title() { return title; diff --git a/src/app/browser/main/tab/page.hpp b/src/app/browser/main/tab/page.hpp index 5b21f32e..025ac690 100644 --- a/src/app/browser/main/tab/page.hpp +++ b/src/app/browser/main/tab/page.hpp @@ -26,6 +26,14 @@ namespace app::browser::main::tab class Page : public Gtk::Box { // Extras + enum MIME + { + TEXT_PLAIN, + TEXT_GEMINI, + UNDEFINED + }; + + MIME mime; Glib::ustring title; Glib::ustring subtitle; @@ -63,6 +71,7 @@ namespace app::browser::main::tab void navigation_history_forward(); // Getters + Page::MIME get_mime(); Glib::ustring get_title(); Glib::ustring get_subtitle();