mirror of
https://github.com/Xetibo/ReSet.git
synced 2025-04-16 09:48:34 +02:00
62 lines
1.7 KiB
Rust
62 lines
1.7 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 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 resetWifiButton: TemplateChild<Button>,
|
|
#[template_child]
|
|
pub resetWifiConnected: TemplateChild<Image>,
|
|
#[template_child]
|
|
pub resetWifiStored: 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 NAME: &'static str = "resetWifiEntry";
|
|
type Type = wifiEntry::WifiEntry;
|
|
type ParentType = gtk::Box;
|
|
|
|
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 BoxImpl for WifiEntry {}
|
|
|
|
impl WidgetImpl for WifiEntry {}
|
|
|
|
impl WindowImpl for WifiEntry {}
|
|
|
|
impl ApplicationWindowImpl for WifiEntry {}
|