create separated wrapper for reload action

This commit is contained in:
yggverse 2024-11-10 10:30:10 +02:00
parent baea14de95
commit b4dee17768
16 changed files with 144 additions and 64 deletions

View File

@ -41,8 +41,6 @@ impl App {
SimpleAction::new_stateful(&uuid_string_random(), None, &default_state); SimpleAction::new_stateful(&uuid_string_random(), None, &default_state);
let action_page_history_forward = let action_page_history_forward =
SimpleAction::new_stateful(&uuid_string_random(), None, &default_state); SimpleAction::new_stateful(&uuid_string_random(), None, &default_state);
let action_page_reload =
SimpleAction::new_stateful(&uuid_string_random(), None, &default_state);
// Init GTK // Init GTK
let gobject = Application::builder() let gobject = Application::builder()
@ -57,7 +55,6 @@ impl App {
action_page_home.clone(), action_page_home.clone(),
action_page_history_back.clone(), action_page_history_back.clone(),
action_page_history_forward.clone(), action_page_history_forward.clone(),
action_page_reload.clone(),
)); ));
// Init events // Init events
@ -209,11 +206,15 @@ impl App {
), ),
&["<Primary>p"], &["<Primary>p"],
), ),
// @TODO
( (
format!("win.{}", action_page_reload.name()), format!(
"{}.{}",
browser.window().action().id(),
browser.window().action().reload().id()
),
&["<Primary>r"], &["<Primary>r"],
), ),
// @TODO
( (
format!("win.{}", action_page_history_back.name()), format!("win.{}", action_page_history_back.name()),
&["<Primary>Left"], &["<Primary>Left"],

View File

@ -35,7 +35,6 @@ impl Browser {
action_page_home: SimpleAction, action_page_home: SimpleAction,
action_page_history_back: SimpleAction, action_page_history_back: SimpleAction,
action_page_history_forward: SimpleAction, action_page_history_forward: SimpleAction,
action_page_reload: SimpleAction,
) -> Browser { ) -> Browser {
// Init components // Init components
let action = Rc::new(Action::new()); let action = Rc::new(Action::new());
@ -46,7 +45,6 @@ impl Browser {
action_page_home.clone(), action_page_home.clone(),
action_page_history_back.clone(), action_page_history_back.clone(),
action_page_history_forward.clone(), action_page_history_forward.clone(),
action_page_reload.clone(),
)); ));
// Init widget // Init widget
@ -58,7 +56,6 @@ impl Browser {
action_page_home.clone(), action_page_home.clone(),
action_page_history_back.clone(), action_page_history_back.clone(),
action_page_history_forward.clone(), action_page_history_forward.clone(),
action_page_reload.clone(),
], ],
)); ));
@ -151,11 +148,6 @@ impl Browser {
} }
}); });
action_page_reload.connect_activate({
let window = window.clone();
move |this, _| window.tab_page_reload(page_position_from_action_state(this))
});
// Return new activated `Self` // Return new activated `Self`
Self { Self {
action, action,

View File

@ -32,7 +32,6 @@ impl Window {
action_page_home: SimpleAction, action_page_home: SimpleAction,
action_page_history_back: SimpleAction, action_page_history_back: SimpleAction,
action_page_history_forward: SimpleAction, action_page_history_forward: SimpleAction,
action_page_reload: SimpleAction,
) -> Self { ) -> Self {
// Init local actions // Init local actions
let action = Rc::new(Action::new()); let action = Rc::new(Action::new());
@ -46,7 +45,6 @@ impl Window {
action_page_home.clone(), action_page_home.clone(),
action_page_history_back.clone(), action_page_history_back.clone(),
action_page_history_forward.clone(), action_page_history_forward.clone(),
action_page_reload.clone(),
); );
let header = Header::new_rc( let header = Header::new_rc(
@ -58,7 +56,6 @@ impl Window {
action_page_home, action_page_home,
action_page_history_back, action_page_history_back,
action_page_history_forward, action_page_history_forward,
action_page_reload,
// Widgets // Widgets
tab.gobject(), tab.gobject(),
); );
@ -76,7 +73,12 @@ impl Window {
action.pin().connect_activate({ action.pin().connect_activate({
let tab = tab.clone(); let tab = tab.clone();
move |page_position| tab.pin(page_position) move |position| tab.pin(position)
});
action.reload().connect_activate({
let tab = tab.clone();
move |position| tab.page_reload(position)
}); });
// Init struct // Init struct
@ -101,11 +103,6 @@ impl Window {
self.tab.page_history_forward(page_position); self.tab.page_history_forward(page_position);
} }
/// Reload page at given position or selected page on `None` given
pub fn tab_page_reload(&self, position: Option<i32>) {
self.tab.page_reload(position);
}
/// Close page at given position or selected page on `None` given /// Close page at given position or selected page on `None` given
pub fn tab_close(&self, page_position: Option<i32>) { pub fn tab_close(&self, page_position: Option<i32>) {
self.tab.close(page_position); self.tab.close(page_position);

View File

@ -1,8 +1,10 @@
mod append; mod append;
mod pin; mod pin;
mod reload;
use append::Append; use append::Append;
use pin::Pin; use pin::Pin;
use reload::Reload;
use gtk::{ use gtk::{
gio::SimpleActionGroup, gio::SimpleActionGroup,
@ -16,6 +18,7 @@ pub struct Action {
// Actions // Actions
append: Rc<Append>, append: Rc<Append>,
pin: Rc<Pin>, pin: Rc<Pin>,
reload: Rc<Reload>,
// Group // Group
id: GString, id: GString,
gobject: SimpleActionGroup, gobject: SimpleActionGroup,
@ -29,6 +32,7 @@ impl Action {
// Init actions // Init actions
let append = Rc::new(Append::new()); let append = Rc::new(Append::new());
let pin = Rc::new(Pin::new()); let pin = Rc::new(Pin::new());
let reload = Rc::new(Reload::new());
// Generate unique group ID // Generate unique group ID
let id = uuid_string_random(); let id = uuid_string_random();
@ -39,11 +43,13 @@ impl Action {
// Add action to given group // Add action to given group
gobject.add_action(append.gobject()); gobject.add_action(append.gobject());
gobject.add_action(pin.gobject()); gobject.add_action(pin.gobject());
gobject.add_action(reload.gobject());
// Done // Done
Self { Self {
append, append,
pin, pin,
reload,
id, id,
gobject, gobject,
} }
@ -61,6 +67,11 @@ impl Action {
&self.pin &self.pin
} }
/// Get reference `Reload` action
pub fn reload(&self) -> &Rc<Reload> {
&self.reload
}
/// Get auto-generated name for action group /// Get auto-generated name for action group
/// * useful for manual relationship with GObjects or as the `detailed_name` /// * useful for manual relationship with GObjects or as the `detailed_name`
/// for [Accels](https://docs.gtk.org/gtk4/method.Application.set_accels_for_action.html) or /// for [Accels](https://docs.gtk.org/gtk4/method.Application.set_accels_for_action.html) or

View File

@ -57,7 +57,7 @@ impl Pin {
let state = self let state = self
.gobject .gobject
.state() .state()
.expect("Required state value") .expect("State value required")
.get::<i32>() .get::<i32>()
.expect("Parameter type does not match `i32`"); .expect("Parameter type does not match `i32`");

View File

@ -0,0 +1,85 @@
use gtk::{
gio::SimpleAction,
glib::{uuid_string_random, GString},
prelude::{ActionExt, ToVariant},
};
// Defaults
/// C-compatible variant type
const DEFAULT_STATE: i32 = -1;
/// [SimpleAction](https://docs.gtk.org/gio/class.SimpleAction.html) wrapper for `Reload` action of `Window` group
pub struct Reload {
gobject: SimpleAction,
}
impl Reload {
// Constructors
/// Create new `Self`
pub fn new() -> Self {
Self {
gobject: SimpleAction::new_stateful(
&uuid_string_random(),
None,
&DEFAULT_STATE.to_variant(),
),
}
}
// Actions
/// Emit [activate](https://docs.gtk.org/gio/signal.SimpleAction.activate.html) signal
pub fn activate(&self) {
self.gobject.activate(None);
}
/// Change action [state](https://docs.gtk.org/gio/method.SimpleAction.set_state.html)
/// * set `DEFAULT_STATE` on `None`
pub fn change_state(&self, state: Option<i32>) {
self.gobject.change_state(
&match state {
Some(value) => value,
None => DEFAULT_STATE,
}
.to_variant(),
)
}
// Events
/// Define callback function for
/// [SimpleAction::activate](https://docs.gtk.org/gio/signal.SimpleAction.activate.html) signal
pub fn connect_activate(&self, callback: impl Fn(Option<i32>) + 'static) {
let state = self.state();
self.gobject.connect_activate(move |_, _| callback(state));
}
// Getters
pub fn state(&self) -> Option<i32> {
let state = self
.gobject
.state()
.expect("State value required")
.get::<i32>()
.expect("Parameter type does not match `i32`");
if state != DEFAULT_STATE {
Some(state)
} else {
None
}
}
/// Get reference to [SimpleAction](https://docs.gtk.org/gio/class.SimpleAction.html) GObject
pub fn gobject(&self) -> &SimpleAction {
&self.gobject
}
/// Get auto-generated [action name](https://docs.gtk.org/gio/property.SimpleAction.name.html)
pub fn id(&self) -> GString {
self.gobject.name()
}
}

View File

@ -25,7 +25,6 @@ impl Header {
action_page_home: SimpleAction, action_page_home: SimpleAction,
action_page_history_back: SimpleAction, action_page_history_back: SimpleAction,
action_page_history_forward: SimpleAction, action_page_history_forward: SimpleAction,
action_page_reload: SimpleAction,
// Widgets // Widgets
tab_view: &TabView, tab_view: &TabView,
) -> Rc<Self> { ) -> Rc<Self> {
@ -38,7 +37,6 @@ impl Header {
action_page_home, action_page_home,
action_page_history_back, action_page_history_back,
action_page_history_forward, action_page_history_forward,
action_page_reload,
tab_view, tab_view,
); );

View File

@ -28,7 +28,6 @@ impl Bar {
action_page_home: SimpleAction, action_page_home: SimpleAction,
action_page_history_back: SimpleAction, action_page_history_back: SimpleAction,
action_page_history_forward: SimpleAction, action_page_history_forward: SimpleAction,
action_page_reload: SimpleAction,
view: &TabView, view: &TabView,
) -> Rc<Self> { ) -> Rc<Self> {
// Init components // Init components
@ -42,7 +41,6 @@ impl Bar {
action_page_home, action_page_home,
action_page_history_back, action_page_history_back,
action_page_history_forward, action_page_history_forward,
action_page_reload,
); );
// Build result // Build result

View File

@ -24,7 +24,6 @@ impl Menu {
action_page_home: SimpleAction, action_page_home: SimpleAction,
action_page_history_back: SimpleAction, action_page_history_back: SimpleAction,
action_page_history_forward: SimpleAction, action_page_history_forward: SimpleAction,
action_page_reload: SimpleAction,
) -> Rc<Self> { ) -> Rc<Self> {
// Main // Main
let main = gio::Menu::new(); let main = gio::Menu::new();
@ -37,7 +36,12 @@ impl Menu {
window_action.append().id() window_action.append().id()
))); )));
main_page.append(Some("Reload"), Some(&detailed_action_name(&action_page_reload))); main_page.append(Some("Reload"), Some(&format!(
"{}.{}",
window_action.id(),
window_action.reload().id()
)));
main_page.append(Some("Pin"), Some(&format!( main_page.append(Some("Pin"), Some(&format!(
"{}.{}", "{}.{}",
window_action.id(), window_action.id(),

View File

@ -30,7 +30,6 @@ pub struct Tab {
action_page_home: SimpleAction, action_page_home: SimpleAction,
action_page_history_back: SimpleAction, action_page_history_back: SimpleAction,
action_page_history_forward: SimpleAction, action_page_history_forward: SimpleAction,
action_page_reload: SimpleAction,
// Dynamically allocated reference index // Dynamically allocated reference index
index: Rc<RefCell<HashMap<GString, Rc<Item>>>>, index: Rc<RefCell<HashMap<GString, Rc<Item>>>>,
action: Rc<Action>, action: Rc<Action>,
@ -47,7 +46,6 @@ impl Tab {
action_page_home: SimpleAction, action_page_home: SimpleAction,
action_page_history_back: SimpleAction, action_page_history_back: SimpleAction,
action_page_history_forward: SimpleAction, action_page_history_forward: SimpleAction,
action_page_reload: SimpleAction,
) -> Rc<Self> { ) -> Rc<Self> {
// Init local actions // Init local actions
let action = Rc::new(Action::new()); let action = Rc::new(Action::new());
@ -63,7 +61,6 @@ impl Tab {
action_page_history_back.clone(), action_page_history_back.clone(),
action_page_history_forward.clone(), action_page_history_forward.clone(),
action_page_home.clone(), action_page_home.clone(),
action_page_reload.clone(),
); );
// Init widget // Init widget
@ -82,7 +79,6 @@ impl Tab {
let action_page_home = action_page_home.clone(); let action_page_home = action_page_home.clone();
let action_page_history_back = action_page_history_back.clone(); let action_page_history_back = action_page_history_back.clone();
let action_page_history_forward = action_page_history_forward.clone(); let action_page_history_forward = action_page_history_forward.clone();
let action_page_reload = action_page_reload.clone();
move |request| { move |request| {
// Init new tab item // Init new tab item
@ -96,7 +92,6 @@ impl Tab {
action_page_home.clone(), action_page_home.clone(),
action_page_history_back.clone(), action_page_history_back.clone(),
action_page_history_forward.clone(), action_page_history_forward.clone(),
action_page_reload.clone(),
// Options // Options
gobject gobject
.selected_page() .selected_page()
@ -123,7 +118,6 @@ impl Tab {
let action_page_history_forward = action_page_history_forward.clone(); let action_page_history_forward = action_page_history_forward.clone();
let action_page_home = action_page_home.clone(); let action_page_home = action_page_home.clone();
let window_action = window_action.clone(); let window_action = window_action.clone();
let action_page_reload = action_page_reload.clone();
move |tab_view, tab_page| { move |tab_view, tab_page| {
// Update actions // Update actions
let state_v2 = match tab_page { let state_v2 = match tab_page {
@ -133,6 +127,7 @@ impl Tab {
None => None, None => None,
}; // @TODO }; // @TODO
window_action.pin().change_state(state_v2); window_action.pin().change_state(state_v2);
window_action.reload().change_state(state_v2);
// @TODO old version requires update // @TODO old version requires update
// Setup state for selected page // Setup state for selected page
@ -147,7 +142,6 @@ impl Tab {
action_page_history_back.change_state(&state); action_page_history_back.change_state(&state);
action_page_history_forward.change_state(&state); action_page_history_forward.change_state(&state);
action_page_home.change_state(&state); action_page_home.change_state(&state);
action_page_reload.change_state(&state);
} }
}); });
@ -191,7 +185,6 @@ impl Tab {
action_page_home, action_page_home,
action_page_history_back, action_page_history_back,
action_page_history_forward, action_page_history_forward,
action_page_reload,
// Init empty HashMap index as no tabs appended yet // Init empty HashMap index as no tabs appended yet
index, index,
action, action,
@ -212,7 +205,6 @@ impl Tab {
self.action_page_home.clone(), self.action_page_home.clone(),
self.action_page_history_back.clone(), self.action_page_history_back.clone(),
self.action_page_history_forward.clone(), self.action_page_history_forward.clone(),
self.action_page_reload.clone(),
// Options // Options
position, position,
false, false,
@ -356,7 +348,6 @@ impl Tab {
self.action_page_home.clone(), self.action_page_home.clone(),
self.action_page_history_back.clone(), self.action_page_history_back.clone(),
self.action_page_history_forward.clone(), self.action_page_history_forward.clone(),
self.action_page_reload.clone(),
) { ) {
Ok(items) => { Ok(items) => {
for item in items { for item in items {

View File

@ -38,7 +38,6 @@ impl Item {
action_page_home: SimpleAction, action_page_home: SimpleAction,
action_page_history_back: SimpleAction, action_page_history_back: SimpleAction,
action_page_history_forward: SimpleAction, action_page_history_forward: SimpleAction,
action_page_reload: SimpleAction,
// Options // Options
position: Option<i32>, position: Option<i32>,
is_pinned: bool, is_pinned: bool,
@ -52,11 +51,11 @@ impl Item {
id.clone(), id.clone(),
// Actions // Actions
browser_action, browser_action,
window_action,
tab_action, tab_action,
action_page_home.clone(), action_page_home.clone(),
action_page_history_back.clone(), action_page_history_back.clone(),
action_page_history_forward.clone(), action_page_history_forward.clone(),
action_page_reload.clone(),
); );
let widget = Widget::new_rc( let widget = Widget::new_rc(
@ -139,7 +138,6 @@ impl Item {
action_page_home: SimpleAction, action_page_home: SimpleAction,
action_page_history_back: SimpleAction, action_page_history_back: SimpleAction,
action_page_history_forward: SimpleAction, action_page_history_forward: SimpleAction,
action_page_reload: SimpleAction,
) -> Result<Vec<Rc<Item>>, String> { ) -> Result<Vec<Rc<Item>>, String> {
let mut items = Vec::new(); let mut items = Vec::new();
@ -156,7 +154,6 @@ impl Item {
action_page_home.clone(), action_page_home.clone(),
action_page_history_back.clone(), action_page_history_back.clone(),
action_page_history_forward.clone(), action_page_history_forward.clone(),
action_page_reload.clone(),
// Options // Options
None, None,
record.is_pinned, record.is_pinned,

View File

@ -13,6 +13,7 @@ use navigation::Navigation;
use widget::Widget; use widget::Widget;
use crate::app::browser::action::Action as BrowserAction; use crate::app::browser::action::Action as BrowserAction;
use crate::app::browser::window::action::Action as WindowAction;
use crate::app::browser::window::tab::action::Action as TabAction; use crate::app::browser::window::tab::action::Action as TabAction;
use gtk::{ use gtk::{
gdk_pixbuf::Pixbuf, gdk_pixbuf::Pixbuf,
@ -37,6 +38,7 @@ pub struct Page {
cancellable: RefCell<Cancellable>, cancellable: RefCell<Cancellable>,
// Actions // Actions
browser_action: Rc<BrowserAction>, browser_action: Rc<BrowserAction>,
window_action: Rc<WindowAction>,
tab_action: Rc<TabAction>, tab_action: Rc<TabAction>,
action_page_load: SimpleAction, action_page_load: SimpleAction,
// Components // Components
@ -56,11 +58,11 @@ impl Page {
pub fn new_rc( pub fn new_rc(
id: GString, id: GString,
browser_action: Rc<BrowserAction>, browser_action: Rc<BrowserAction>,
window_action: Rc<WindowAction>,
tab_action: Rc<TabAction>, tab_action: Rc<TabAction>,
action_page_home: SimpleAction, action_page_home: SimpleAction,
action_page_history_back: SimpleAction, action_page_history_back: SimpleAction,
action_page_history_forward: SimpleAction, action_page_history_forward: SimpleAction,
action_page_reload: SimpleAction,
) -> Rc<Self> { ) -> Rc<Self> {
// Init local actions // Init local actions
let action_page_load = SimpleAction::new(&uuid_string_random(), None); let action_page_load = SimpleAction::new(&uuid_string_random(), None);
@ -72,10 +74,10 @@ impl Page {
let navigation = Navigation::new_rc( let navigation = Navigation::new_rc(
browser_action.clone(), browser_action.clone(),
window_action.clone(),
action_page_home.clone(), action_page_home.clone(),
action_page_history_back.clone(), action_page_history_back.clone(),
action_page_history_forward.clone(), action_page_history_forward.clone(),
action_page_reload.clone(),
action_page_open.clone(), action_page_open.clone(),
); );
@ -97,6 +99,7 @@ impl Page {
id, id,
// Actions // Actions
browser_action, browser_action,
window_action,
tab_action, tab_action,
action_page_load: action_page_load.clone(), action_page_load: action_page_load.clone(),
// Components // Components

View File

@ -15,6 +15,7 @@ use request::Request;
use widget::Widget; use widget::Widget;
use crate::app::browser::action::Action as BrowserAction; use crate::app::browser::action::Action as BrowserAction;
use crate::app::browser::window::action::Action as WindowAction;
use gtk::{gio::SimpleAction, glib::GString, prelude::WidgetExt, Box}; use gtk::{gio::SimpleAction, glib::GString, prelude::WidgetExt, Box};
use sqlite::Transaction; use sqlite::Transaction;
use std::rc::Rc; use std::rc::Rc;
@ -31,16 +32,16 @@ pub struct Navigation {
impl Navigation { impl Navigation {
pub fn new_rc( pub fn new_rc(
browser_action: Rc<BrowserAction>, browser_action: Rc<BrowserAction>,
window_action: Rc<WindowAction>,
action_page_home: SimpleAction, action_page_home: SimpleAction,
action_page_history_back: SimpleAction, action_page_history_back: SimpleAction,
action_page_history_forward: SimpleAction, action_page_history_forward: SimpleAction,
action_page_reload: SimpleAction,
action_page_open: SimpleAction, action_page_open: SimpleAction,
) -> Rc<Self> { ) -> Rc<Self> {
// Init components // Init components
let home = Home::new_rc(action_page_home); let home = Home::new_rc(action_page_home);
let history = History::new_rc(action_page_history_back, action_page_history_forward); let history = History::new_rc(action_page_history_back, action_page_history_forward);
let reload = Reload::new_rc(action_page_reload.clone()); let reload = Reload::new_rc(window_action);
let request = Request::new_rc(browser_action, action_page_open.clone()); let request = Request::new_rc(browser_action, action_page_open.clone());
let bookmark = Bookmark::new_rc(); let bookmark = Bookmark::new_rc();

View File

@ -2,27 +2,31 @@ mod widget;
use widget::Widget; use widget::Widget;
use gtk::{gio::SimpleAction, Button}; use crate::app::browser::window::action::Action as WindowAction;
use gtk::Button;
use std::rc::Rc; use std::rc::Rc;
pub struct Reload { pub struct Reload {
action_page_reload: SimpleAction, window_action: Rc<WindowAction>,
widget: Rc<Widget>, widget: Rc<Widget>,
} }
impl Reload { impl Reload {
// Construct // Construct
pub fn new_rc(action_page_reload: SimpleAction) -> Rc<Self> { pub fn new_rc(window_action: Rc<WindowAction>) -> Rc<Self> {
Rc::new(Self { Rc::new(Self {
action_page_reload: action_page_reload.clone(), window_action: window_action.clone(),
widget: Widget::new_rc(action_page_reload), widget: Widget::new_rc(window_action),
}) })
} }
// Actions // Actions
pub fn update(&self, is_enabled: bool) { pub fn update(&self, is_enabled: bool) {
// Update actions // Update actions
self.action_page_reload.set_enabled(is_enabled); self.window_action
.reload()
.gobject()
.set_enabled(is_enabled);
// Update child components // Update child components
self.widget.update(is_enabled); self.widget.update(is_enabled);

View File

@ -1,6 +1,6 @@
use crate::app::browser::window::action::Action as WindowAction;
use gtk::{ use gtk::{
gio::SimpleAction, prelude::{ButtonExt, WidgetExt},
prelude::{ActionExt, ButtonExt, WidgetExt},
Button, Button,
}; };
use std::rc::Rc; use std::rc::Rc;
@ -11,7 +11,7 @@ pub struct Widget {
impl Widget { impl Widget {
// Construct // Construct
pub fn new_rc(action_page_reload: SimpleAction) -> Rc<Self> { pub fn new_rc(window_action: Rc<WindowAction>) -> Rc<Self> {
// Init gobject // Init gobject
let gobject = Button::builder() let gobject = Button::builder()
.icon_name("view-refresh-symbolic") .icon_name("view-refresh-symbolic")
@ -20,12 +20,7 @@ impl Widget {
.build(); .build();
// Init events // Init events
gobject.connect_clicked({ gobject.connect_clicked(move |_| window_action.reload().activate());
let action_page_reload = action_page_reload.clone();
move |_| {
action_page_reload.activate(None);
}
});
// Return activated struct // Return activated struct
Rc::new(Self { gobject }) Rc::new(Self { gobject })

View File

@ -21,13 +21,16 @@ impl Menu {
action_page_history_back: SimpleAction, action_page_history_back: SimpleAction,
action_page_history_forward: SimpleAction, action_page_history_forward: SimpleAction,
action_page_home: SimpleAction, action_page_home: SimpleAction,
action_page_reload: SimpleAction,
) -> Self { ) -> Self {
let main = gtk::gio::Menu::new(); let main = gtk::gio::Menu::new();
main.append( main.append(
Some("Reload"), Some("Reload"),
Some(&detailed_action_name(action_page_reload)), Some(&format!(
"{}.{}",
window_action.id(),
window_action.reload().id()
)),
); );
main.append( main.append(