mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
22 lines
No EOL
495 B
C++
22 lines
No EOL
495 B
C++
#ifndef APP_BROWSER_MAIN_TAB_PAGE_CONTENT_TEXT_GEMINI_HPP
|
|
#define APP_BROWSER_MAIN_TAB_PAGE_CONTENT_TEXT_GEMINI_HPP
|
|
|
|
#include <glibmm/regex.h>
|
|
#include <glibmm/ustring.h>
|
|
#include <gtkmm/label.h>
|
|
|
|
namespace app::browser::main::tab::page::content::text
|
|
{
|
|
class Gemini : public Gtk::Label
|
|
{
|
|
Glib::ustring markup;
|
|
|
|
public:
|
|
|
|
Gemini(
|
|
const Glib::ustring & GEMTEXT
|
|
);
|
|
};
|
|
}
|
|
|
|
#endif // APP_BROWSER_MAIN_TAB_PAGE_CONTENT_TEXT_GEMINI_HPP
|