mirror of
https://github.com/Xetibo/ReSet.git
synced 2025-04-19 19:08:33 +02:00
68 lines
1.8 KiB
Rust
68 lines
1.8 KiB
Rust
use crate::components::base::popup::Popup;
|
|
use crate::components::wifi::wifiEntry;
|
|
use gtk::subclass::prelude::*;
|
|
use gtk::{glib, Button, CompositeTemplate, Image, Label};
|
|
use std::cell::RefCell;
|
|
use adw::ActionRow;
|
|
use adw::subclass::preferences_row::PreferencesRowImpl;
|
|
use adw::subclass::prelude::ActionRowImpl;
|
|
use ReSet_Lib::network::network::{AccessPoint, WifiStrength};
|
|
|
|
#[allow(non_snake_case)]
|
|
#[derive(Default, CompositeTemplate)]
|
|
#[template(resource = "/org/Xetibo/ReSet/resetWifiEntry.ui")]
|
|
pub struct WifiEntry {
|
|
#[template_child]
|
|
pub resetWifiStrength: TemplateChild<Image>,
|
|
#[template_child]
|
|
pub resetWifiEncrypted: TemplateChild<Image>,
|
|
#[template_child]
|
|
pub resetWifiLabel: TemplateChild<Label>,
|
|
#[template_child]
|
|
pub resetWifiEditButton: TemplateChild<Button>,
|
|
#[template_child]
|
|
pub resetWifiConnected: TemplateChild<Image>,
|
|
#[template_child]
|
|
pub resetWifiPopup: TemplateChild<Popup>,
|
|
pub wifiName: RefCell<String>,
|
|
pub wifiStrength: RefCell<WifiStrength>,
|
|
pub accessPoint: RefCell<AccessPoint>,
|
|
}
|
|
|
|
unsafe impl Send for WifiEntry {}
|
|
unsafe impl Sync for WifiEntry {}
|
|
|
|
#[glib::object_subclass]
|
|
impl ObjectSubclass for WifiEntry {
|
|
const ABSTRACT: bool = false;
|
|
const NAME: &'static str = "resetWifiEntry";
|
|
type Type = wifiEntry::WifiEntry;
|
|
type ParentType = ActionRow;
|
|
|
|
fn class_init(klass: &mut Self::Class) {
|
|
klass.bind_template();
|
|
}
|
|
|
|
fn instance_init(obj: &glib::subclass::InitializingObject<Self>) {
|
|
obj.init_template();
|
|
}
|
|
}
|
|
|
|
impl ObjectImpl for WifiEntry {
|
|
fn constructed(&self) {
|
|
self.parent_constructed();
|
|
}
|
|
}
|
|
|
|
impl PreferencesRowImpl for WifiEntry {}
|
|
|
|
impl ListBoxRowImpl for WifiEntry {}
|
|
|
|
impl ActionRowImpl for WifiEntry {}
|
|
|
|
impl WidgetImpl for WifiEntry {}
|
|
|
|
impl WindowImpl for WifiEntry {}
|
|
|
|
impl ApplicationWindowImpl for WifiEntry {}
|