add viewport

This commit is contained in:
yggverse 2024-09-13 12:46:04 +03:00
parent df7fe0273b
commit f889f754c4
2 changed files with 29 additions and 12 deletions

View file

@ -4,20 +4,36 @@ using namespace app::browser::main::tab::page::content::text;
Plain::Plain(
const Glib::ustring & TEXT
) : Gtk::Viewport( // add scrolled window features support
NULL,
NULL
) {
set_valign(
Gtk::Align::START
set_scroll_to_focus(
false
);
set_wrap(
true
);
set_selectable(
true
);
set_text(
auto label = Gtk::make_managed<Gtk::Label>( // @TODO separated file?
TEXT
);
// Init widget
label->set_valign(
Gtk::Align::START
);
label->set_wrap(
true
);
label->set_selectable(
true
);
label->set_use_markup(
false
);
set_child(
* label
);
}

View file

@ -4,10 +4,11 @@
#include <glibmm/ustring.h>
#include <gtkmm/enums.h>
#include <gtkmm/label.h>
#include <gtkmm/viewport.h>
namespace app::browser::main::tab::page::content::text
{
class Plain : public Gtk::Label
class Plain : public Gtk::Viewport
{
public: