mirror of https://github.com/YGGverse/Yoda.git
yggverse
3 months ago
8 changed files with 118 additions and 9 deletions
@ -0,0 +1,21 @@
@@ -0,0 +1,21 @@
|
||||
#include "gemini.hpp" |
||||
|
||||
using namespace app::browser::main::tab::page::content::text; |
||||
|
||||
Gemini::Gemini( |
||||
const Glib::ustring & gemtext |
||||
) { |
||||
set_wrap( |
||||
true |
||||
); |
||||
|
||||
set_selectable( |
||||
true |
||||
); |
||||
|
||||
set_markup( |
||||
gemtext // @TODO
|
||||
); |
||||
} |
||||
|
||||
Gemini::~Gemini() = default; |
@ -0,0 +1,21 @@
@@ -0,0 +1,21 @@
|
||||
#ifndef APP_BROWSER_MAIN_TAB_PAGE_CONTENT_TEXT_GEMINI_HPP |
||||
#define APP_BROWSER_MAIN_TAB_PAGE_CONTENT_TEXT_GEMINI_HPP |
||||
|
||||
#include <glibmm/ustring.h> |
||||
#include <gtkmm/label.h> |
||||
|
||||
namespace app::browser::main::tab::page::content::text |
||||
{ |
||||
class Gemini : public Gtk::Label |
||||
{ |
||||
public: |
||||
|
||||
Gemini( |
||||
const Glib::ustring & gemtext |
||||
); |
||||
|
||||
~Gemini(); |
||||
}; |
||||
} |
||||
|
||||
#endif // APP_BROWSER_MAIN_TAB_PAGE_CONTENT_TEXT_GEMINI_HPP
|
Loading…
Reference in new issue