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