mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
update setter names
This commit is contained in:
parent
0d7aa9893f
commit
a5a3a5625b
3 changed files with 14 additions and 14 deletions
|
|
@ -113,14 +113,14 @@ void Page::update()
|
|||
// Route by mime type or path extension
|
||||
if (meta[2] == "text/gemini" || Glib::str_has_suffix(navbar->get_request_path(), ".gmi"))
|
||||
{
|
||||
content->text_gemini(
|
||||
content->set_text_gemini(
|
||||
buffer // @TODO
|
||||
);
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
content->text_plain(
|
||||
content->set_text_plain(
|
||||
_("MIME type not supported")
|
||||
);
|
||||
}
|
||||
|
|
@ -128,7 +128,7 @@ void Page::update()
|
|||
|
||||
else
|
||||
{
|
||||
content->text_plain(
|
||||
content->set_text_plain(
|
||||
_("Could not open page")
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,20 +23,20 @@ Content::~Content()
|
|||
};
|
||||
|
||||
// Public actions
|
||||
void Content::text_gemini(
|
||||
void Content::set_text_gemini(
|
||||
const Glib::ustring & gemtext
|
||||
) {
|
||||
update(
|
||||
set_widget(
|
||||
new content::text::Gemini(
|
||||
gemtext
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
void Content::text_plain(
|
||||
void Content::set_text_plain(
|
||||
const Glib::ustring & text
|
||||
) {
|
||||
update(
|
||||
set_widget(
|
||||
new content::text::Plain(
|
||||
text
|
||||
)
|
||||
|
|
@ -46,8 +46,8 @@ void Content::text_plain(
|
|||
// @TODO text_plain, picture, video, etc.
|
||||
|
||||
// Private helpers
|
||||
void Content::update(
|
||||
Gtk::Widget * new_widget
|
||||
void Content::set_widget(
|
||||
Gtk::Widget * object
|
||||
) {
|
||||
if (widget != nullptr)
|
||||
{
|
||||
|
|
@ -58,7 +58,7 @@ void Content::update(
|
|||
delete widget;
|
||||
}
|
||||
|
||||
widget = new_widget;
|
||||
widget = object;
|
||||
|
||||
append(
|
||||
* widget
|
||||
|
|
|
|||
|
|
@ -11,8 +11,8 @@ namespace app::browser::main::tab::page
|
|||
{
|
||||
Gtk::Widget * widget;
|
||||
|
||||
void update(
|
||||
Gtk::Widget * new_widget
|
||||
void set_widget(
|
||||
Gtk::Widget * object
|
||||
);
|
||||
|
||||
public:
|
||||
|
|
@ -21,11 +21,11 @@ namespace app::browser::main::tab::page
|
|||
|
||||
~Content();
|
||||
|
||||
void text_gemini(
|
||||
void set_text_gemini(
|
||||
const Glib::ustring & gemtext
|
||||
);
|
||||
|
||||
void text_plain(
|
||||
void set_text_plain(
|
||||
const Glib::ustring & text
|
||||
);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue