|
|
|
@ -10,7 +10,7 @@ use std::sync::Arc;
@@ -10,7 +10,7 @@ use std::sync::Arc;
|
|
|
|
|
pub struct Menu { |
|
|
|
|
widget: MenuButton, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#[rustfmt::skip] // @TODO template builder?
|
|
|
|
|
impl Menu { |
|
|
|
|
pub fn new( |
|
|
|
|
action_debug: Arc<SimpleAction>, |
|
|
|
@ -18,42 +18,38 @@ impl Menu {
@@ -18,42 +18,38 @@ impl Menu {
|
|
|
|
|
action_tab_append: Arc<SimpleAction>, |
|
|
|
|
action_tab_close: Arc<SimpleAction>, |
|
|
|
|
action_tab_close_all: Arc<SimpleAction>, |
|
|
|
|
action_tab_page_reload: Arc<SimpleAction>, |
|
|
|
|
action_tab_page_navigation_reload: Arc<SimpleAction>, |
|
|
|
|
action_tab_pin: Arc<SimpleAction>, |
|
|
|
|
) -> Self { |
|
|
|
|
// Init model
|
|
|
|
|
let model = gio::Menu::new(); |
|
|
|
|
|
|
|
|
|
let model_tab = gio::Menu::new(); |
|
|
|
|
model_tab.append(Some("New"), Some(&detailed_action_name(action_tab_append))); |
|
|
|
|
model_tab.append(Some("Pin"), Some(&detailed_action_name(action_tab_pin))); |
|
|
|
|
|
|
|
|
|
let model_tab_page = gio::Menu::new(); |
|
|
|
|
model_tab_page.append(Some("Base"), Some("win.tab_page_base")); // @TODO
|
|
|
|
|
|
|
|
|
|
let model_tab_page_history = gio::Menu::new(); |
|
|
|
|
model_tab_page_history.append(Some("Back"), Some("win.tab_page_history_back")); // @TODO
|
|
|
|
|
model_tab_page_history.append(Some("Forward"), Some("win.tab_page_history_forward")); // @TODO
|
|
|
|
|
model_tab_page.append_submenu(Some("History"), &model_tab_page_history); |
|
|
|
|
let model_tab_page_navigation = gio::Menu::new(); |
|
|
|
|
model_tab_page_navigation.append(Some("Base"), Some("win.tab_page_base")); // @TODO
|
|
|
|
|
|
|
|
|
|
let model_tab_page_navigation_history = gio::Menu::new(); |
|
|
|
|
model_tab_page_navigation_history.append(Some("Back"), Some("win.tab_page_history_back")); // @TODO
|
|
|
|
|
model_tab_page_navigation_history.append(Some("Forward"), Some("win.tab_page_history_forward")); // @TODO
|
|
|
|
|
|
|
|
|
|
model_tab_page.append( |
|
|
|
|
Some("Reload"), |
|
|
|
|
Some(&detailed_action_name(action_tab_page_reload)), |
|
|
|
|
); |
|
|
|
|
model_tab_page.append(Some("Bookmark"), Some("win.tab_page_bookmark")); // @TODO
|
|
|
|
|
model_tab_page_navigation.append_submenu(Some("History"), &model_tab_page_navigation_history); |
|
|
|
|
model_tab_page_navigation.append(Some("Reload"), Some(&detailed_action_name(action_tab_page_navigation_reload))); |
|
|
|
|
model_tab_page_navigation.append(Some("Bookmark"), Some("win.tab_page_bookmark")); // @TODO
|
|
|
|
|
|
|
|
|
|
model_tab_page.append_submenu(Some("Navigation"), &model_tab_page_navigation); |
|
|
|
|
|
|
|
|
|
model_tab.append_submenu(Some("Page"), &model_tab_page); |
|
|
|
|
|
|
|
|
|
let model_tab_close = gio::Menu::new(); |
|
|
|
|
model_tab_close.append( |
|
|
|
|
Some("Current"), |
|
|
|
|
Some(&detailed_action_name(action_tab_close)), |
|
|
|
|
); |
|
|
|
|
model_tab_close.append( |
|
|
|
|
Some("All"), |
|
|
|
|
Some(&detailed_action_name(action_tab_close_all)), |
|
|
|
|
); |
|
|
|
|
model_tab.append_submenu(Some("Close"), &model_tab_close); |
|
|
|
|
model_tab_close.append(Some("Current"), Some(&detailed_action_name(action_tab_close))); |
|
|
|
|
model_tab_close.append(Some("All"), Some(&detailed_action_name(action_tab_close_all))); |
|
|
|
|
|
|
|
|
|
let model = gio::Menu::new(); |
|
|
|
|
model_tab.append_submenu(Some("Close"), &model_tab_close); |
|
|
|
|
|
|
|
|
|
model.append_submenu(Some("Tab"), &model_tab); |
|
|
|
|
model.append(Some("Debug"), Some(&detailed_action_name(action_debug))); |
|
|
|
|