mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
draft text container
This commit is contained in:
parent
3bfacf7ea9
commit
bbc1046c2a
10 changed files with 72 additions and 20 deletions
25
src/app/browser/main/tab/page/content/text.hpp
Normal file
25
src/app/browser/main/tab/page/content/text.hpp
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#ifndef APP_BROWSER_MAIN_TAB_PAGE_CONTENT_TEXT_HPP
|
||||
#define APP_BROWSER_MAIN_TAB_PAGE_CONTENT_TEXT_HPP
|
||||
|
||||
#include <glibmm/ustring.h>
|
||||
#include <gtkmm/scrolledwindow.h>
|
||||
|
||||
namespace app::browser::main::tab::page::content
|
||||
{
|
||||
class Text : public Gtk::ScrolledWindow
|
||||
{
|
||||
public:
|
||||
|
||||
Text();
|
||||
|
||||
void set_gemini(
|
||||
const Glib::ustring & GEMTEXT
|
||||
);
|
||||
|
||||
void set_plain(
|
||||
const Glib::ustring & TEXT
|
||||
);
|
||||
};
|
||||
}
|
||||
|
||||
#endif // APP_BROWSER_MAIN_TAB_PAGE_CONTENT_TEXT_HPP
|
||||
Loading…
Add table
Add a link
Reference in a new issue