mirror of https://github.com/YGGverse/Yoda.git
yggverse
3 months ago
7 changed files with 76 additions and 9 deletions
@ -0,0 +1,20 @@ |
|||||||
|
#include "update.hpp" |
||||||
|
|
||||||
|
using namespace app::browser::main::tab::data::navbar; |
||||||
|
|
||||||
|
Update::Update() |
||||||
|
{ |
||||||
|
set_action_name( |
||||||
|
"tab.update" |
||||||
|
); |
||||||
|
|
||||||
|
set_icon_name( |
||||||
|
"view-refresh-symbolic" |
||||||
|
); |
||||||
|
|
||||||
|
set_tooltip_text( |
||||||
|
_("Update") |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
Update::~Update() = default; |
@ -0,0 +1,19 @@ |
|||||||
|
#ifndef APP_BROWSER_MAIN_TAB_DATA_NAVBAR_UPDATE_HPP |
||||||
|
#define APP_BROWSER_MAIN_TAB_DATA_NAVBAR_UPDATE_HPP |
||||||
|
|
||||||
|
#include <glibmm/i18n.h> |
||||||
|
#include <gtkmm/button.h> |
||||||
|
|
||||||
|
namespace app::browser::main::tab::data::navbar |
||||||
|
{ |
||||||
|
class Update : public Gtk::Button |
||||||
|
{ |
||||||
|
public: |
||||||
|
|
||||||
|
Update(); |
||||||
|
|
||||||
|
~Update(); |
||||||
|
}; |
||||||
|
} |
||||||
|
|
||||||
|
#endif // APP_BROWSER_MAIN_TAB_DATA_NAVBAR_UPDATE_HPP
|
Loading…
Reference in new issue