mirror of https://github.com/YGGverse/Yoda.git
yggverse
3 months ago
10 changed files with 145 additions and 0 deletions
@ -0,0 +1,22 @@
@@ -0,0 +1,22 @@
|
||||
#include "history.hpp" |
||||
#include "history/back.hpp" |
||||
#include "history/forward.hpp" |
||||
|
||||
using namespace app::browser::main::tab::data::navbar; |
||||
|
||||
History::History() |
||||
{ |
||||
back = new history::Back(); |
||||
|
||||
append( |
||||
* back |
||||
); |
||||
|
||||
forward = new history::Forward(); |
||||
|
||||
append( |
||||
* forward |
||||
); |
||||
} |
||||
|
||||
History::~History() = default; |
@ -0,0 +1,30 @@
@@ -0,0 +1,30 @@
|
||||
#ifndef APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HISTORY_HPP |
||||
#define APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HISTORY_HPP |
||||
|
||||
#include <glibmm/i18n.h> |
||||
#include <gtkmm/box.h> |
||||
|
||||
namespace app::browser::main::tab::data::navbar |
||||
{ |
||||
namespace history |
||||
{ |
||||
class Back; |
||||
class Forward; |
||||
} |
||||
|
||||
class History : public Gtk::Box |
||||
{ |
||||
private: |
||||
|
||||
history::Back * back; |
||||
history::Forward * forward; |
||||
|
||||
public: |
||||
|
||||
History(); |
||||
|
||||
~History(); |
||||
}; |
||||
} |
||||
|
||||
#endif // APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HISTORY_HPP
|
@ -0,0 +1,20 @@
@@ -0,0 +1,20 @@
|
||||
#include "back.hpp" |
||||
|
||||
using namespace app::browser::main::tab::data::navbar::history; |
||||
|
||||
Back::Back() |
||||
{ |
||||
set_action_name( |
||||
"tab.back" |
||||
); |
||||
|
||||
set_icon_name( |
||||
"go-previous-symbolic" |
||||
); |
||||
|
||||
set_tooltip_text( |
||||
_("Back") |
||||
); |
||||
} |
||||
|
||||
Back::~Back() = default; |
@ -0,0 +1,19 @@
@@ -0,0 +1,19 @@
|
||||
#ifndef APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HISTORY_BACK_HPP |
||||
#define APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HISTORY_BACK_HPP |
||||
|
||||
#include <glibmm/i18n.h> |
||||
#include <gtkmm/button.h> |
||||
|
||||
namespace app::browser::main::tab::data::navbar::history |
||||
{ |
||||
class Back : public Gtk::Button |
||||
{ |
||||
public: |
||||
|
||||
Back(); |
||||
|
||||
~Back(); |
||||
}; |
||||
} |
||||
|
||||
#endif // APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HISTORY_BACK_HPP
|
@ -0,0 +1,20 @@
@@ -0,0 +1,20 @@
|
||||
#include "forward.hpp" |
||||
|
||||
using namespace app::browser::main::tab::data::navbar::history; |
||||
|
||||
Forward::Forward() |
||||
{ |
||||
set_action_name( |
||||
"tab.forward" |
||||
); |
||||
|
||||
set_icon_name( |
||||
"go-next-symbolic" |
||||
); |
||||
|
||||
set_tooltip_text( |
||||
_("Forward") |
||||
); |
||||
} |
||||
|
||||
Forward::~Forward() = default; |
@ -0,0 +1,19 @@
@@ -0,0 +1,19 @@
|
||||
#ifndef APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HISTORY_FORWARD_HPP |
||||
#define APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HISTORY_FORWARD_HPP |
||||
|
||||
#include <glibmm/i18n.h> |
||||
#include <gtkmm/button.h> |
||||
|
||||
namespace app::browser::main::tab::data::navbar::history |
||||
{ |
||||
class Forward : public Gtk::Button |
||||
{ |
||||
public: |
||||
|
||||
Forward(); |
||||
|
||||
~Forward(); |
||||
}; |
||||
} |
||||
|
||||
#endif // APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HISTORY_FORWARD_HPP
|
Loading…
Reference in new issue