mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 01:25:27 +00:00
34 lines
No EOL
666 B
C++
34 lines
No EOL
666 B
C++
#ifndef APP_BROWSER_MAIN_TAB_PAGE_CONTENT_HPP
|
|
#define APP_BROWSER_MAIN_TAB_PAGE_CONTENT_HPP
|
|
|
|
#include <glibmm/ustring.h>
|
|
#include <gtkmm/box.h>
|
|
#include <gtkmm/widget.h>
|
|
|
|
namespace app::browser::main::tab::page
|
|
{
|
|
class Content : public Gtk::Box
|
|
{
|
|
Gtk::Widget * widget;
|
|
|
|
void set_widget(
|
|
Gtk::Widget * object
|
|
);
|
|
|
|
public:
|
|
|
|
Content();
|
|
|
|
~Content();
|
|
|
|
void set_text_gemini(
|
|
const Glib::ustring & gemtext
|
|
);
|
|
|
|
void set_text_plain(
|
|
const Glib::ustring & text
|
|
);
|
|
};
|
|
}
|
|
|
|
#endif // APP_BROWSER_MAIN_TAB_PAGE_CONTENT_HPP
|