update viewport level, make managed

This commit is contained in:
yggverse 2024-09-13 12:31:14 +03:00
parent 3ce19b8160
commit b71eec6944
4 changed files with 31 additions and 62 deletions

View file

@ -5,21 +5,11 @@
#include <glibmm/i18n.h>
#include <glibmm/ustring.h>
#include <gtkmm/scrolledwindow.h>
#include <gtkmm/viewport.h>
namespace app::browser::main::tab::page::content
{
namespace text
{
class Gemini;
class Plain;
}
class Text : public Gtk::ScrolledWindow
{
text::Gemini * textGemini;
text::Plain * textPlain;
public:
enum Type
@ -32,8 +22,6 @@ namespace app::browser::main::tab::page::content
const Type & TYPE,
const Glib::ustring & VALUE
);
~Text();
};
}