mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
init base button class
This commit is contained in:
parent
3136b0b21c
commit
940c98f3c6
6 changed files with 59 additions and 0 deletions
20
src/app/browser/main/tab/data/navbar/base.cpp
Normal file
20
src/app/browser/main/tab/data/navbar/base.cpp
Normal file
|
|
@ -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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue