implement header subtitle widget

This commit is contained in:
yggverse 2024-08-27 14:46:13 +03:00
parent fe8845ae1a
commit c22b3a6b30
6 changed files with 86 additions and 9 deletions

View file

@ -9,11 +9,15 @@ namespace app::browser::header
namespace main
{
class Title;
class Subtitle;
}
class Main : public Gtk::Box
{
main::Title * title;
main::Title * mainTitle;
main::Subtitle * mainSubtitle;
const bool HOMOGENEOUS = true;
public:
@ -22,7 +26,7 @@ namespace app::browser::header
~Main();
void set_title(
const Glib::ustring text
const Glib::ustring & TEXT
);
};
}