implement update action dependencies

This commit is contained in:
yggverse 2024-09-08 04:20:25 +03:00
parent 1a548977a2
commit d869b4b3e7
11 changed files with 56 additions and 23 deletions

View file

@ -1,16 +1,22 @@
#ifndef APP_BROWSER_MAIN_TAB_PAGE_NAVIGATION_UPDATE_HPP
#define APP_BROWSER_MAIN_TAB_PAGE_NAVIGATION_UPDATE_HPP
#include <giomm/simpleaction.h>
#include <glibmm/i18n.h>
#include <glibmm/refptr.h>
#include <gtkmm/button.h>
namespace app::browser::main::tab::page::navigation
{
class Update : public Gtk::Button
{
Glib::RefPtr<Gio::SimpleAction> action__update;
public:
Update();
Update(
const Glib::RefPtr<Gio::SimpleAction> & ACTION__UPDATE
);
};
}