mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
draft action dependencies
This commit is contained in:
parent
45dc3b160a
commit
c940e5f7df
18 changed files with 137 additions and 54 deletions
|
|
@ -8,7 +8,9 @@
|
|||
using namespace app::browser::main::tab::page;
|
||||
|
||||
Navigation::Navigation(
|
||||
const Glib::ustring & REQUEST
|
||||
const Glib::ustring & REQUEST,
|
||||
const Glib::RefPtr<Gio::SimpleAction> & ACTION__NAVIGATION_HISTORY_BACK,
|
||||
const Glib::RefPtr<Gio::SimpleAction> & ACTION__NAVIGATION_HISTORY_FORWARD
|
||||
) {
|
||||
// Init container
|
||||
set_orientation(
|
||||
|
|
@ -42,7 +44,10 @@ Navigation::Navigation(
|
|||
* navigationBase
|
||||
);
|
||||
|
||||
navigationHistory = Gtk::make_managed<navigation::History>();
|
||||
navigationHistory = Gtk::make_managed<navigation::History>(
|
||||
ACTION__NAVIGATION_HISTORY_BACK,
|
||||
ACTION__NAVIGATION_HISTORY_FORWARD
|
||||
);
|
||||
|
||||
append(
|
||||
* navigationHistory
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue