mirror of https://github.com/YGGverse/Yoda.git
yggverse
2 months ago
4 changed files with 58 additions and 0 deletions
@ -0,0 +1,32 @@
@@ -0,0 +1,32 @@
|
||||
#include "source.hpp" |
||||
|
||||
using namespace app::browser::main::tab::page::content::text::gemini; |
||||
|
||||
Source::Source( |
||||
const Glib::ustring & GEMTEXT |
||||
) { |
||||
set_valign( |
||||
Gtk::Align::START |
||||
); |
||||
|
||||
set_wrap( |
||||
true |
||||
); |
||||
|
||||
set_selectable( |
||||
true |
||||
); |
||||
|
||||
set_use_markup( |
||||
true |
||||
); |
||||
|
||||
set_markup( |
||||
Glib::ustring::sprintf( |
||||
"<tt>%s</tt>", |
||||
Glib::Markup::escape_text( |
||||
GEMTEXT |
||||
) |
||||
) |
||||
); |
||||
} |
@ -0,0 +1,24 @@
@@ -0,0 +1,24 @@
|
||||
#ifndef APP_BROWSER_MAIN_TAB_PAGE_CONTENT_TEXT_GEMINI_SOURCE_HPP |
||||
#define APP_BROWSER_MAIN_TAB_PAGE_CONTENT_TEXT_GEMINI_SOURCE_HPP |
||||
|
||||
#include <glibmm/markup.h> |
||||
#include <glibmm/ustring.h> |
||||
#include <gtkmm/enums.h> |
||||
#include <gtkmm/label.h> |
||||
|
||||
namespace app::browser::main::tab::page::content::text::gemini |
||||
{ |
||||
class Source : public Gtk::Label |
||||
{ |
||||
/*
|
||||
* Gemini class API |
||||
*/ |
||||
public: |
||||
|
||||
Source( |
||||
const Glib::ustring & GEMTEXT |
||||
); |
||||
}; |
||||
} |
||||
|
||||
#endif // APP_BROWSER_MAIN_TAB_PAGE_CONTENT_TEXT_GEMINI_SOURCE_HPP
|
Loading…
Reference in new issue