setup title widget

This commit is contained in:
yggverse 2024-08-20 15:37:43 +03:00
parent 84bb4f46af
commit 8c09660242
2 changed files with 15 additions and 0 deletions

View File

@ -8,6 +8,18 @@ Title::Title()
"title" "title"
); );
set_single_line_mode(
true
);
set_ellipsize(
Pango::EllipsizeMode::END
);
set_width_chars(
WIDTH_CHARS
);
// @TODO // @TODO
} }

View File

@ -3,11 +3,14 @@
#include <glibmm/ustring.h> #include <glibmm/ustring.h>
#include <gtkmm/label.h> #include <gtkmm/label.h>
#include <pangomm/layout.h>
namespace app::browser::header::main namespace app::browser::header::main
{ {
class Title : public Gtk::Label class Title : public Gtk::Label
{ {
const int WIDTH_CHARS = 5;
public: public:
Title(); Title();