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