rename refresh method to update

This commit is contained in:
yggverse 2024-09-11 02:34:02 +03:00
parent 63da1b1e76
commit c574d6e8bf
21 changed files with 31 additions and 31 deletions

View File

@ -13,9 +13,9 @@ Browser::Browser(
"refresh",
[this]
{
browserMain->refresh();
browserMain->update();
browserHeader->refresh(
browserHeader->update(
browserMain->get_current_tab_page_title(),
browserMain->get_current_tab_page_description()
);

View File

@ -53,7 +53,7 @@ Header::Header(
);
}
void Header::refresh(
void Header::update(
const Glib::ustring & TITLE,
const Glib::ustring & SUBTITLE
) {

View File

@ -41,7 +41,7 @@ namespace app::browser
const Glib::RefPtr<Gio::SimpleAction> & ACTION__MAIN_TAB_PAGE_NAVIGATION_UPDATE
);
void refresh(
void update(
const Glib::ustring & TITLE,
const Glib::ustring & SUBTITLE
);

View File

@ -38,9 +38,9 @@ Main::Main(
}
// Actions
void Main::refresh()
void Main::update()
{
mainTab->refresh(
mainTab->update(
mainTab->get_current_page()
);
};

View File

@ -37,7 +37,7 @@ namespace app::browser
);
// Actions
void refresh();
void update();
void restore();
void save();

View File

@ -131,7 +131,7 @@ void Tab::save()
}
// Actions
void Tab::refresh(
void Tab::update(
const int & PAGE_NUMBER
) {
const auto TAB_PAGE = get_tabPage(
@ -144,7 +144,7 @@ void Tab::refresh(
TAB_PAGE->get_title()
);
TAB_PAGE->refresh();
TAB_PAGE->update();
action__tab_close_active->set_enabled(
get_n_pages() > 0
@ -192,7 +192,7 @@ int Tab::append(
);
}
refresh(
update(
PAGE_NUMBER
);

View File

@ -119,7 +119,7 @@ namespace app::browser::main
const int & PAGE_NUMBER
);
void refresh(
void update(
const int & PAGE_NUMBER
);

View File

@ -63,9 +63,9 @@ Page::Page(
}
// Actions
void Page::refresh()
void Page::update()
{
pageNavigation->refresh(
pageNavigation->update(
progress_fraction
);
}

View File

@ -117,7 +117,7 @@ namespace app::browser::main::tab
);
// Actions
void refresh();
void update();
int save(
const sqlite3_int64 & APP_BROWSER_MAIN_TAB__SESSION__ID

View File

@ -86,7 +86,7 @@ Navigation::Navigation(
}
// Actions
void Navigation::refresh(
void Navigation::update(
const double & PROGRESS_FRACTION
) {
// Toggle base button sensibility
@ -95,15 +95,15 @@ void Navigation::refresh(
);
// Refresh history widget
navigationHistory->refresh();
navigationHistory->update();
// Toggle update button sensibility
navigationUpdate->refresh(
navigationUpdate->update(
navigationRequest->get_text_length() > 0
);
// Refresh request area (with progressbar)
navigationRequest->refresh(
navigationRequest->update(
PROGRESS_FRACTION
);
}

View File

@ -88,7 +88,7 @@ namespace app::browser::main::tab::page
);
// Actions
void refresh(
void update(
const double & PROGRESS_FRACTION
);

View File

@ -30,18 +30,18 @@ History::History(
}
// Actions
void History::refresh()
void History::update()
{
Memory match;
historyBack->refresh(
historyBack->update(
try_back(
match,
false
)
);
historyForward->refresh(
historyForward->update(
try_forward(
match,
false

View File

@ -50,7 +50,7 @@ namespace app::browser::main::tab::page::navigation
const bool & UPDATE_MEMORY_INDEX
);
void refresh();
void update();
void save(); // @TODO save history to the permanent storage

View File

@ -29,7 +29,7 @@ Back::Back(
);
}
void Back::refresh(
void Back::update(
const bool & ENABLED
) {
set_sensitive(

View File

@ -18,7 +18,7 @@ namespace app::browser::main::tab::page::navigation::history
const Glib::RefPtr<Gio::SimpleAction> & ACTION__BACK
);
void refresh(
void update(
const bool & ENABLED
);
};

View File

@ -29,7 +29,7 @@ Forward::Forward(
);
}
void Forward::refresh(
void Forward::update(
const bool & ENABLED
) {
set_sensitive(

View File

@ -18,7 +18,7 @@ namespace app::browser::main::tab::page::navigation::history
const Glib::RefPtr<Gio::SimpleAction> & ACTION__FORWARD
);
void refresh(
void update(
const bool & ENABLED
);
};

View File

@ -51,7 +51,7 @@ Request::Request(
}
// Actions
void Request::refresh(
void Request::update(
const double & PROGRESS_FRACTION
) {
// Update progress

View File

@ -91,7 +91,7 @@ namespace app::browser::main::tab::page::navigation
);
// Actions
void refresh(
void update(
const double & PROGRESS_FRACTION
);

View File

@ -29,7 +29,7 @@ Update::Update(
);
}
void Update::refresh(
void Update::update(
const bool & ENABLED
) {
set_sensitive(

View File

@ -18,7 +18,7 @@ namespace app::browser::main::tab::page::navigation
const Glib::RefPtr<Gio::SimpleAction> & ACTION__UPDATE
);
void refresh(
void update(
const bool & ENABLED
);
};