From 05b75da3fb8e02f1d674e5319beeac2c0acb83a5 Mon Sep 17 00:00:00 2001 From: Fabio Lenherr / DashieTM Date: Fri, 10 Nov 2023 19:30:21 +0100 Subject: [PATCH] feat: Add gesture click to wifi -> dbus connection --- Cargo.toml | 2 + src/components/base/listEntry.rs | 5 +- src/components/wifi/wifiBox.rs | 105 +++++++++++++---- src/components/wifi/wifiBoxImpl.rs | 9 +- src/components/wifi/wifiEntry.rs | 120 ++++++++++++++++++-- src/components/wifi/wifiEntryImpl.rs | 20 ++-- src/components/window/handleSidebarClick.rs | 8 +- src/components/window/window.rs | 85 +++++++++----- src/components/window/windowImpl.rs | 5 +- src/resources/resetMainWindow.ui | 8 +- src/resources/resetPasswordPopup.ui | 23 ++++ src/resources/resetUI.cmb | 27 ++++- src/resources/resetWifiEntry.ui | 12 ++ 13 files changed, 347 insertions(+), 82 deletions(-) create mode 100644 src/resources/resetPasswordPopup.ui diff --git a/Cargo.toml b/Cargo.toml index 86fe588..9427eff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,9 +5,11 @@ edition = "2021" description = "A wip universal Linux settings application." [dependencies] +ReSet-Lib = "0.2.3" adw = { version = "0.5.3", package = "libadwaita", features = ["v1_4"]} dbus = "0.9.7" gtk = { version = "0.7.3", package = "gtk4", features = ["v4_12"]} +glib = "0.18.3" [build-dependencies] glib-build-tools = "0.18.0" diff --git a/src/components/base/listEntry.rs b/src/components/base/listEntry.rs index 28d02f7..7bcfaea 100644 --- a/src/components/base/listEntry.rs +++ b/src/components/base/listEntry.rs @@ -10,10 +10,13 @@ glib::wrapper! { @implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget, gtk::Actionable; } +unsafe impl Send for ListEntry {} +unsafe impl Sync for ListEntry {} + impl ListEntry { pub fn new(child: &impl IsA) -> Self { let entry: ListEntry = Object::builder().build(); entry.set_child(Some(child)); entry } -} \ No newline at end of file +} diff --git a/src/components/wifi/wifiBox.rs b/src/components/wifi/wifiBox.rs index ed3ee82..f98495e 100644 --- a/src/components/wifi/wifiBox.rs +++ b/src/components/wifi/wifiBox.rs @@ -1,18 +1,25 @@ +use std::sync::mpsc::{channel, Receiver, Sender}; +use std::sync::{atomic::AtomicBool, Arc, Weak}; use std::thread; use std::time::Duration; +use crate::components::base::listEntry::ListEntry; use adw::glib; use adw::glib::Object; use adw::subclass::prelude::ObjectSubclassIsExt; use dbus::blocking::Connection; use dbus::Error; -use gtk::glib::Variant; +use dbus::Path; +use gtk::glib::{clone, Variant}; use gtk::prelude::ActionableExt; -use crate::components::base::listEntry::ListEntry; +use ReSet_Lib::network::network::{AccessPoint, WifiStrength}; +use ReSet_Lib::signals::{ + AccessPointAdded, AccessPointRemoved, BluetoothDeviceAdded, BluetoothDeviceRemoved, +}; +use ReSet_Lib::utils::Events; use crate::components::wifi::wifiBoxImpl; use crate::components::wifi::wifiEntry::WifiEntry; -use crate::components::wifi::wifiEntryImpl::WifiStrength; glib::wrapper! { pub struct WifiBox(ObjectSubclass) @@ -20,6 +27,9 @@ glib::wrapper! { @implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget, gtk::Orientable; } +unsafe impl Send for WifiBox {} +unsafe impl Sync for WifiBox {} + impl WifiBox { pub fn new() -> Self { Object::builder().build() @@ -28,21 +38,12 @@ impl WifiBox { pub fn setupCallbacks(&self) { let selfImp = self.imp(); - selfImp.resetSavedNetworks.set_action_name(Some("navigation.push")); - selfImp.resetSavedNetworks.set_action_target_value(Some(&Variant::from("saved"))); - } - - pub fn scanForWifi(&self) { - let selfImp = self.imp(); - let mut wifiEntries = selfImp.wifiEntries.borrow_mut(); - wifiEntries.push(ListEntry::new(&WifiEntry::new(WifiStrength::Excellent, "ina internet", true))); - wifiEntries.push(ListEntry::new(&WifiEntry::new(WifiStrength::Excellent, "watch ina", true))); - wifiEntries.push(ListEntry::new(&WifiEntry::new(WifiStrength::Ok, "INANET", true))); - wifiEntries.push(ListEntry::new(&WifiEntry::new(WifiStrength::Weak, "ina best waifu", false))); - - for wifiEntry in wifiEntries.iter() { - selfImp.resetWifiList.append(wifiEntry); - } + selfImp + .resetSavedNetworks + .set_action_name(Some("navigation.push")); + selfImp + .resetSavedNetworks + .set_action_target_value(Some(&Variant::from("saved"))); } pub fn donotdisturb() { @@ -53,7 +54,73 @@ impl WifiBox { "/org/freedesktop/Notifications", Duration::from_millis(1000), ); - let _: Result<(), Error> = proxy.method_call("org.freedesktop.Notifications", "DoNotDisturb", ()); + let _: Result<(), Error> = + proxy.method_call("org.freedesktop.Notifications", "DoNotDisturb", ()); }); } } + +pub fn scanForWifi(wifiBox: Arc) { + let wifibox_ref = wifiBox.clone(); + let wifiEntries = wifiBox.imp().wifiEntries.clone(); + + glib::spawn_future_local(async move { + let accessPoints = wat().await; + let wifiEntries = wifiEntries.clone(); + { + let mut wifiEntries = wifiEntries.lock().unwrap(); + for accessPoint in accessPoints { + wifiEntries.push(ListEntry::new(&*WifiEntry::new(accessPoint))); + } + } + glib::MainContext::default().spawn_local(async move { + glib::idle_add_once(move || { + let wifiEntries = wifiEntries.lock().unwrap(); + let selfImp = wifibox_ref.imp(); + for wifiEntry in wifiEntries.iter() { + selfImp.resetWifiList.append(wifiEntry); + } + }); + }); + let (sender, receiver): ( + Sender,)>>, + Receiver,)>>, + ) = channel(); + let sender_ref = Arc::new(sender); + let listener_active = Arc::new(AtomicBool::new(false)); + ReSet_Lib::utils::start_event_listener::< + (AccessPoint,), + (Path<'static>,), + AccessPointAdded, + AccessPointRemoved, + >(listener_active, sender_ref); + // handle receiver... + let res = receiver.try_recv(); + if res.is_ok() { + let access_point = res.unwrap(); + match access_point { + Events::AddedEvent(access_point) => { + dbg!(access_point); + } + _ => (), + }; + } else { + println!("no message there :)"); + } + }); +} +pub async fn wat() -> Vec { + let conn = Connection::new_session().unwrap(); + let proxy = conn.with_proxy( + "org.xetibo.ReSet", + "/org/xetibo/ReSet", + Duration::from_millis(1000), + ); + let res: Result<(Vec,), Error> = + proxy.method_call("org.xetibo.ReSet", "ListAccessPoints", ()); + if res.is_err() { + return Vec::new(); + } + let (accessPoints,) = res.unwrap(); + accessPoints +} diff --git a/src/components/wifi/wifiBoxImpl.rs b/src/components/wifi/wifiBoxImpl.rs index 598e053..cb8cca6 100644 --- a/src/components/wifi/wifiBoxImpl.rs +++ b/src/components/wifi/wifiBoxImpl.rs @@ -1,4 +1,5 @@ use std::cell::RefCell; +use std::sync::{Arc, Mutex}; use gtk::{Button, CompositeTemplate, glib, ListBox, Switch}; use gtk::prelude::*; use gtk::subclass::prelude::*; @@ -7,6 +8,8 @@ use crate::components::wifi::wifiBox; use crate::components::wifi::wifiEntry::WifiEntry; use crate::components::base::listEntry::ListEntry; +use super::wifiBox::scanForWifi; + #[allow(non_snake_case)] #[derive(Default, CompositeTemplate)] #[template(resource = "/org/Xetibo/ReSet/resetWiFi.ui")] @@ -23,9 +26,12 @@ pub struct WifiBox { pub resetWifiList: TemplateChild, #[template_child] pub resetWifiAdvanced: TemplateChild