update namespaces

This commit is contained in:
yggverse 2024-08-27 16:27:56 +03:00
parent fe0586a054
commit fb71cfa2be
4 changed files with 31 additions and 27 deletions

View file

@ -15,9 +15,13 @@ namespace app::browser
class Header : public Gtk::HeaderBar
{
app::browser::header::Main * main;
app::browser::header::Menu * menu;
app::browser::header::Tab * tab;
// Components
header::Main * headerMain;
header::Menu * headerMenu;
header::Tab * headerTab;
// Defaults
const bool SHOW_TITLE_BUTTONS = true;
public:
@ -26,11 +30,11 @@ namespace app::browser
~Header();
void set_title(
const Glib::ustring text
const Glib::ustring & VALUE
);
void set_subtitle(
const Glib::ustring text
const Glib::ustring & VALUE
);
};
}