move from gtk buffer to RefCell

This commit is contained in:
Ward from fusion-voyager-3 2024-08-15 21:07:01 +03:00
parent 92b18f2139
commit 9a0786b0ec
6 changed files with 101 additions and 94 deletions

View File

@ -4,14 +4,16 @@ use gtk::{prelude::*, glib as glib};
use crate::partitioning_page::{get_block_devices}; use crate::partitioning_page::{get_block_devices};
use adw::{prelude::*}; use adw::{prelude::*};
use glib::{clone, closure_local}; use glib::{clone, closure_local};
use std::{rc::Rc, cell::RefCell};
pub fn automatic_partitioning_page( pub fn automatic_partitioning_page(
main_carousel: &adw::Carousel, main_carousel: &adw::Carousel,
partition_method_type_buffer: &gtk::TextBuffer, partition_method_type_refcell: &Rc<RefCell<String>>,
partition_method_automatic_target_buffer: &gtk::TextBuffer, partition_method_automatic_target_refcell: &Rc<RefCell<String>>,
partition_method_automatic_luks_buffer: &gtk::TextBuffer, partition_method_automatic_luks_enabled_refcell: &Rc<RefCell<bool>>,
partition_method_automatic_ratio_buffer: &gtk::TextBuffer, partition_method_automatic_luks_refcell: &Rc<RefCell<String>>,
partition_method_automatic_seperation_buffer: &gtk::TextBuffer, partition_method_automatic_ratio_refcell: &Rc<RefCell<String>>,
partition_method_automatic_seperation_refcell: &Rc<RefCell<String>>,
language_changed_action: &gio::SimpleAction language_changed_action: &gio::SimpleAction
) { ) {
let automatic_partitioning_page = installer_stack_page::InstallerStackPage::new(); let automatic_partitioning_page = installer_stack_page::InstallerStackPage::new();
@ -183,11 +185,11 @@ pub fn automatic_partitioning_page(
#[weak] #[weak]
partition_method_automatic_disk_small_error_label, partition_method_automatic_disk_small_error_label,
#[strong] #[strong]
partition_method_automatic_target_buffer, partition_method_automatic_target_refcell,
move |_| { move |_| {
disk_check(&device_button, &devices_selection_expander_row, &partition_method_automatic_disk_small_error_label, &device.block_name, device.block_size); disk_check(&device_button, &devices_selection_expander_row, &partition_method_automatic_disk_small_error_label, &device.block_name, device.block_size);
partition_method_automatic_disk_nodisk_error_label.set_visible(false); partition_method_automatic_disk_nodisk_error_label.set_visible(false);
partition_method_automatic_target_buffer.set_text(&device.block_name); *partition_method_automatic_target_refcell.borrow_mut() = String::from(&device.block_name);
} }
) )
); );
@ -210,7 +212,7 @@ pub fn automatic_partitioning_page(
#[weak] #[weak]
automatic_partitioning_page, automatic_partitioning_page,
#[strong] #[strong]
partition_method_automatic_luks_buffer, partition_method_automatic_luks_refcell,
move |_| { move |_| {
if partition_method_automatic_luks_checkbutton.is_active() == true { if partition_method_automatic_luks_checkbutton.is_active() == true {
partition_method_automatic_luks_password_entry.set_sensitive(true); partition_method_automatic_luks_password_entry.set_sensitive(true);
@ -221,15 +223,15 @@ pub fn automatic_partitioning_page(
} }
if partition_method_automatic_luks_password_entry.text().to_string().is_empty() { if partition_method_automatic_luks_password_entry.text().to_string().is_empty() {
partition_method_automatic_luks_error_label.set_visible(true); partition_method_automatic_luks_error_label.set_visible(true);
partition_method_automatic_luks_buffer.set_text(&partition_method_automatic_luks_password_entry.text().to_string()); partition_method_automatic_luks_refcell.set_text(&partition_method_automatic_luks_password_entry.text().to_string());
automatic_partitioning_page.set_next_sensitive(false); automatic_partitioning_page.set_next_sensitive(false);
} else { } else {
partition_method_automatic_luks_error_label.set_visible(false); partition_method_automatic_luks_error_label.set_visible(false);
if !partition_method_automatic_disk_error_label.get_visible() && !partition_method_automatic_luks_error_label.get_visible() && !partition_method_automatic_luks_error2_label.get_visible() { if !partition_method_automatic_disk_error_label.get_visible() && !partition_method_automatic_luks_error_label.get_visible() && !partition_method_automatic_luks_error2_label.get_visible() {
partition_method_automatic_luks_buffer.set_text(&partition_method_automatic_luks_password_entry.text().to_string()); partition_method_automatic_luks_refcell.set_text(&partition_method_automatic_luks_password_entry.text().to_string());
automatic_partitioning_page.set_next_sensitive(true); automatic_partitioning_page.set_next_sensitive(true);
} else { } else {
partition_method_automatic_luks_buffer.set_text(&partition_method_automatic_luks_password_entry.text().to_string()); partition_method_automatic_luks_refcell.set_text(&partition_method_automatic_luks_password_entry.text().to_string());
automatic_partitioning_page.set_next_sensitive(false); automatic_partitioning_page.set_next_sensitive(false);
} }
} }
@ -238,10 +240,10 @@ pub fn automatic_partitioning_page(
partition_method_automatic_luks_error_label.set_visible(false); partition_method_automatic_luks_error_label.set_visible(false);
partition_method_automatic_luks_error2_label.set_visible(false); partition_method_automatic_luks_error2_label.set_visible(false);
if !partition_method_automatic_disk_error_label.get_visible() && !partition_method_automatic_luks_error_label.get_visible() && !partition_method_automatic_luks_error2_label.get_visible() { if !partition_method_automatic_disk_error_label.get_visible() && !partition_method_automatic_luks_error_label.get_visible() && !partition_method_automatic_luks_error2_label.get_visible() {
partition_method_automatic_luks_buffer.set_text(&partition_method_automatic_luks_password_entry.text().to_string()); partition_method_automatic_luks_refcell.set_text(&partition_method_automatic_luks_password_entry.text().to_string());
automatic_partitioning_page.set_next_sensitive(true); automatic_partitioning_page.set_next_sensitive(true);
} else { } else {
partition_method_automatic_luks_buffer.set_text(&partition_method_automatic_luks_password_entry.text().to_string()); partition_method_automatic_luks_refcell.set_text(&partition_method_automatic_luks_password_entry.text().to_string());
automatic_partitioning_page.set_next_sensitive(false); automatic_partitioning_page.set_next_sensitive(false);
} }
} }
@ -266,7 +268,7 @@ pub fn automatic_partitioning_page(
#[weak] #[weak]
automatic_partitioning_page, automatic_partitioning_page,
#[strong] #[strong]
partition_method_automatic_luks_buffer, partition_method_automatic_luks_refcell,
move |_| { move |_| {
if partition_method_automatic_luks_checkbutton.is_active() == true { if partition_method_automatic_luks_checkbutton.is_active() == true {
partition_method_automatic_luks_password_entry.set_sensitive(true); partition_method_automatic_luks_password_entry.set_sensitive(true);
@ -277,15 +279,15 @@ pub fn automatic_partitioning_page(
} }
if partition_method_automatic_luks_password_entry.text().to_string().is_empty() { if partition_method_automatic_luks_password_entry.text().to_string().is_empty() {
partition_method_automatic_luks_error_label.set_visible(true); partition_method_automatic_luks_error_label.set_visible(true);
partition_method_automatic_luks_buffer.set_text(&partition_method_automatic_luks_password_entry.text().to_string()); partition_method_automatic_luks_refcell.set_text(&partition_method_automatic_luks_password_entry.text().to_string());
automatic_partitioning_page.set_next_sensitive(false); automatic_partitioning_page.set_next_sensitive(false);
} else { } else {
partition_method_automatic_luks_error_label.set_visible(false); partition_method_automatic_luks_error_label.set_visible(false);
if !partition_method_automatic_disk_error_label.get_visible() && !partition_method_automatic_luks_error_label.get_visible() && !partition_method_automatic_luks_error2_label.get_visible() { if !partition_method_automatic_disk_error_label.get_visible() && !partition_method_automatic_luks_error_label.get_visible() && !partition_method_automatic_luks_error2_label.get_visible() {
partition_method_automatic_luks_buffer.set_text(&partition_method_automatic_luks_password_entry.text().to_string()); partition_method_automatic_luks_refcell.set_text(&partition_method_automatic_luks_password_entry.text().to_string());
automatic_partitioning_page.set_next_sensitive(true); automatic_partitioning_page.set_next_sensitive(true);
} else { } else {
partition_method_automatic_luks_buffer.set_text(&partition_method_automatic_luks_password_entry.text().to_string()); partition_method_automatic_luks_refcell.set_text(&partition_method_automatic_luks_password_entry.text().to_string());
automatic_partitioning_page.set_next_sensitive(false); automatic_partitioning_page.set_next_sensitive(false);
} }
} }
@ -294,10 +296,10 @@ pub fn automatic_partitioning_page(
partition_method_automatic_luks_error_label.set_visible(false); partition_method_automatic_luks_error_label.set_visible(false);
partition_method_automatic_luks_error2_label.set_visible(false); partition_method_automatic_luks_error2_label.set_visible(false);
if !partition_method_automatic_disk_error_label.get_visible() && !partition_method_automatic_luks_error_label.get_visible() && !partition_method_automatic_luks_error2_label.get_visible() { if !partition_method_automatic_disk_error_label.get_visible() && !partition_method_automatic_luks_error_label.get_visible() && !partition_method_automatic_luks_error2_label.get_visible() {
partition_method_automatic_luks_buffer.set_text(&partition_method_automatic_luks_password_entry.text().to_string()); partition_method_automatic_luks_refcell.set_text(&partition_method_automatic_luks_password_entry.text().to_string());
automatic_partitioning_page.set_next_sensitive(true); automatic_partitioning_page.set_next_sensitive(true);
} else { } else {
partition_method_automatic_luks_buffer.set_text(&partition_method_automatic_luks_password_entry.text().to_string()); partition_method_automatic_luks_refcell.set_text(&partition_method_automatic_luks_password_entry.text().to_string());
automatic_partitioning_page.set_next_sensitive(false); automatic_partitioning_page.set_next_sensitive(false);
} }
} }
@ -322,7 +324,7 @@ pub fn automatic_partitioning_page(
#[weak] #[weak]
automatic_partitioning_page, automatic_partitioning_page,
#[strong] #[strong]
partition_method_automatic_luks_buffer, partition_method_automatic_luks_refcell,
move |_| { move |_| {
if partition_method_automatic_luks_checkbutton.is_active() == true { if partition_method_automatic_luks_checkbutton.is_active() == true {
partition_method_automatic_luks_password_entry.set_sensitive(true); partition_method_automatic_luks_password_entry.set_sensitive(true);
@ -333,15 +335,15 @@ pub fn automatic_partitioning_page(
} }
if partition_method_automatic_luks_password_entry.text().to_string().is_empty() { if partition_method_automatic_luks_password_entry.text().to_string().is_empty() {
partition_method_automatic_luks_error_label.set_visible(true); partition_method_automatic_luks_error_label.set_visible(true);
partition_method_automatic_luks_buffer.set_text(&partition_method_automatic_luks_password_entry.text().to_string()); partition_method_automatic_luks_refcell.set_text(&partition_method_automatic_luks_password_entry.text().to_string());
automatic_partitioning_page.set_next_sensitive(false); automatic_partitioning_page.set_next_sensitive(false);
} else { } else {
partition_method_automatic_luks_error_label.set_visible(false); partition_method_automatic_luks_error_label.set_visible(false);
if !partition_method_automatic_disk_error_label.get_visible() && !partition_method_automatic_luks_error_label.get_visible() && !partition_method_automatic_luks_error2_label.get_visible() { if !partition_method_automatic_disk_error_label.get_visible() && !partition_method_automatic_luks_error_label.get_visible() && !partition_method_automatic_luks_error2_label.get_visible() {
partition_method_automatic_luks_buffer.set_text(&partition_method_automatic_luks_password_entry.text().to_string()); partition_method_automatic_luks_refcell.set_text(&partition_method_automatic_luks_password_entry.text().to_string());
automatic_partitioning_page.set_next_sensitive(true); automatic_partitioning_page.set_next_sensitive(true);
} else { } else {
partition_method_automatic_luks_buffer.set_text(&partition_method_automatic_luks_password_entry.text().to_string()); partition_method_automatic_luks_refcell.set_text(&partition_method_automatic_luks_password_entry.text().to_string());
automatic_partitioning_page.set_next_sensitive(false); automatic_partitioning_page.set_next_sensitive(false);
} }
} }
@ -350,10 +352,10 @@ pub fn automatic_partitioning_page(
partition_method_automatic_luks_error_label.set_visible(false); partition_method_automatic_luks_error_label.set_visible(false);
partition_method_automatic_luks_error2_label.set_visible(false); partition_method_automatic_luks_error2_label.set_visible(false);
if !partition_method_automatic_disk_error_label.get_visible() && !partition_method_automatic_luks_error_label.get_visible() && !partition_method_automatic_luks_error2_label.get_visible() { if !partition_method_automatic_disk_error_label.get_visible() && !partition_method_automatic_luks_error_label.get_visible() && !partition_method_automatic_luks_error2_label.get_visible() {
partition_method_automatic_luks_buffer.set_text(&partition_method_automatic_luks_password_entry.text().to_string()); partition_method_automatic_luks_refcell.set_text(&partition_method_automatic_luks_password_entry.text().to_string());
automatic_partitioning_page.set_next_sensitive(true); automatic_partitioning_page.set_next_sensitive(true);
} else { } else {
partition_method_automatic_luks_buffer.set_text(&partition_method_automatic_luks_password_entry.text().to_string()); partition_method_automatic_luks_refcell.set_text(&partition_method_automatic_luks_password_entry.text().to_string());
automatic_partitioning_page.set_next_sensitive(false); automatic_partitioning_page.set_next_sensitive(false);
} }
} }
@ -398,23 +400,26 @@ pub fn automatic_partitioning_page(
#[weak] #[weak]
main_carousel, main_carousel,
#[strong] #[strong]
partition_method_type_buffer, partition_method_type_refcell,
#[strong] #[strong]
partition_method_automatic_target_buffer, partition_method_automatic_target_refcell,
#[strong] #[strong]
partition_method_automatic_luks_buffer, partition_method_automatic_luks_refcell,
#[strong] #[strong]
partition_method_automatic_ratio_buffer, partition_method_automatic_luks_enabled_refcell,
#[strong] #[strong]
partition_method_automatic_seperation_buffer, partition_method_automatic_ratio_refcell,
#[strong]
partition_method_automatic_seperation_refcell,
move |_automatic_partitioning_page: installer_stack_page::InstallerStackPage| move |_automatic_partitioning_page: installer_stack_page::InstallerStackPage|
{ {
//main_carousel.scroll_to(&main_carousel.nth_page(5), true) //main_carousel.scroll_to(&main_carousel.nth_page(5), true)
dbg!(partition_method_type_buffer.text(&partition_method_type_buffer.bounds().0, &partition_method_type_buffer.bounds().1, true).to_string()); dbg!(partition_method_type_refcell.borrow());
dbg!(partition_method_automatic_target_buffer.text(&partition_method_automatic_target_buffer.bounds().0, &partition_method_automatic_target_buffer.bounds().1, true).to_string()); dbg!(partition_method_automatic_target_refcell.borrow());
dbg!(partition_method_automatic_luks_buffer.text(&partition_method_automatic_luks_buffer.bounds().0, &partition_method_automatic_luks_buffer.bounds().1, true).to_string()); dbg!(partition_method_automatic_luks_enabled_refcell.borrow());
dbg!(partition_method_automatic_ratio_buffer.text(&partition_method_automatic_ratio_buffer.bounds().0, &partition_method_automatic_ratio_buffer.bounds().1, true).to_string()); dbg!(partition_method_automatic_luks_refcell.borrow());
dbg!(partition_method_automatic_seperation_buffer.text(&partition_method_automatic_seperation_buffer.bounds().0, &partition_method_automatic_seperation_buffer.bounds().1, true).to_string()); dbg!(partition_method_automatic_ratio_refcell.borrow());
dbg!(partition_method_automatic_seperation_refcell.borrow());
} }
) )
); );

View File

@ -1,4 +1,4 @@
use std::path::Path; use std::{path::Path, rc::Rc, cell::RefCell};
use gtk::{prelude::*, glib as glib, gio as gio}; use gtk::{prelude::*, glib as glib, gio as gio};
use crate::{efi_error_page, welcome_page, language_page, eula_page, keyboard_page, timezone_page, partitioning_page}; use crate::{efi_error_page, welcome_page, language_page, eula_page, keyboard_page, timezone_page, partitioning_page};
@ -49,33 +49,35 @@ pub fn build_ui(app: &adw::Application) {
_ => efi_error_page::efi_error_page(&window, &carousel) _ => efi_error_page::efi_error_page(&window, &carousel)
} }
let language_selection_text_buffer = gtk::TextBuffer::builder().build(); let language_selection_text_refcell: Rc<RefCell<String>> = Rc::new(RefCell::default());
let keymap_base_selection_text_buffer = gtk::TextBuffer::builder().build(); let keymap_base_selection_text_refcell: Rc<RefCell<String>> = Rc::new(RefCell::default());
let keymap_varient_selection_text_buffer = gtk::TextBuffer::builder().build(); let keymap_varient_selection_text_refcell: Rc<RefCell<String>> = Rc::new(RefCell::default());
let timezone_selection_text_buffer = gtk::TextBuffer::builder().build(); let timezone_selection_text_refcell: Rc<RefCell<String>> = Rc::new(RefCell::default());
let partition_method_type_buffer= gtk::TextBuffer::builder().build(); let partition_method_type_refcell: Rc<RefCell<String>> = Rc::new(RefCell::default());
let partition_method_automatic_target_buffer= gtk::TextBuffer::builder().build(); let partition_method_automatic_target_refcell: Rc<RefCell<String>> = Rc::new(RefCell::default());
let partition_method_automatic_luks_buffer = gtk::TextBuffer::builder().build(); let partition_method_automatic_luks_enabled_refcell: Rc<RefCell<bool>> = Rc::new(RefCell::new(false));
let partition_method_automatic_ratio_buffer= gtk::TextBuffer::builder().build(); let partition_method_automatic_luks_refcell: Rc<RefCell<String>> = Rc::new(RefCell::default());
let partition_method_automatic_seperation_buffer= gtk::TextBuffer::builder().build(); let partition_method_automatic_ratio_refcell: Rc<RefCell<String>> = Rc::new(RefCell::default());
let partition_method_automatic_seperation_refcell: Rc<RefCell<String>> = Rc::new(RefCell::default());
let language_changed_action = gio::SimpleAction::new("lang-changed", None); let language_changed_action = gio::SimpleAction::new("lang-changed", None);
language_page::language_page(&carousel, &language_selection_text_buffer, &language_changed_action); language_page::language_page(&carousel, &language_selection_text_refcell, &language_changed_action);
eula_page::eula_page(&carousel, &language_changed_action); eula_page::eula_page(&carousel, &language_changed_action);
keyboard_page::keyboard_page(&carousel, &keymap_base_selection_text_buffer, &keymap_varient_selection_text_buffer, &language_changed_action); keyboard_page::keyboard_page(&carousel, &keymap_base_selection_text_refcell, &keymap_varient_selection_text_refcell, &language_changed_action);
timezone_page::timezone_page(&carousel, &timezone_selection_text_buffer, &language_changed_action); timezone_page::timezone_page(&carousel, &timezone_selection_text_refcell, &language_changed_action);
partitioning_page::partitioning_page( partitioning_page::partitioning_page(
&carousel, &carousel,
&partition_method_type_buffer, &partition_method_type_refcell,
&partition_method_automatic_target_buffer, &partition_method_automatic_target_refcell,
&partition_method_automatic_luks_buffer, &partition_method_automatic_luks_enabled_refcell,
&partition_method_automatic_ratio_buffer, &partition_method_automatic_luks_refcell,
&partition_method_automatic_seperation_buffer, &partition_method_automatic_ratio_refcell,
&partition_method_automatic_seperation_refcell,
&language_changed_action); &language_changed_action);
window.present() window.present()

View File

@ -3,12 +3,12 @@ use gnome_desktop::XkbInfoExt;
use gtk::{prelude::*, glib as glib, gio as gio}; use gtk::{prelude::*, glib as glib, gio as gio};
use adw::{prelude::*}; use adw::{prelude::*};
use glib::{clone, closure_local}; use glib::{clone, closure_local};
use std::{process::Command, fs, path::Path}; use std::{process::Command, fs, path::Path, rc::Rc, cell::RefCell};
pub fn keyboard_page( pub fn keyboard_page(
main_carousel: &adw::Carousel, main_carousel: &adw::Carousel,
keymap_base_data_buffer: &gtk::TextBuffer, keymap_base_data_refcell: &Rc<RefCell<String>>,
keymap_variant_data_buffer: &gtk::TextBuffer, keymap_variant_data_refcell: &Rc<RefCell<String>>,
language_changed_action: &gio::SimpleAction language_changed_action: &gio::SimpleAction
) { ) {
let keyboard_page = installer_stack_page::InstallerStackPage::new(); let keyboard_page = installer_stack_page::InstallerStackPage::new();
@ -72,10 +72,6 @@ pub fn keyboard_page(
let keymap_list = gnome_desktop::XkbInfo::all_layouts(&xkbinfo); let keymap_list = gnome_desktop::XkbInfo::all_layouts(&xkbinfo);
let keymap_base_data_buffer_clone0 = keymap_base_data_buffer.clone();
let keymap_variant_data_buffer_clone0 = keymap_variant_data_buffer.clone();
for keymap in keymap_list.iter() { for keymap in keymap_list.iter() {
let keymap = keymap.to_string(); let keymap = keymap.to_string();
let keymap_name = xkbinfo.layout_info(&keymap).unwrap().0.unwrap().to_string(); let keymap_name = xkbinfo.layout_info(&keymap).unwrap().0.unwrap().to_string();
@ -106,10 +102,10 @@ pub fn keyboard_page(
keymap_checkbutton.connect_toggled(clone!( keymap_checkbutton.connect_toggled(clone!(
#[weak] #[weak]
keymap_checkbutton, keymap_checkbutton,
#[weak] #[strong]
keymap_base_data_buffer_clone0, keymap_base_data_refcell,
#[weak] #[strong]
keymap_variant_data_buffer_clone0, keymap_variant_data_refcell,
#[weak] #[weak]
keyboard_page, keyboard_page,
move |_| move |_|
@ -117,15 +113,15 @@ pub fn keyboard_page(
if keymap_checkbutton.is_active() == true { if keymap_checkbutton.is_active() == true {
keyboard_page.set_next_sensitive(true); keyboard_page.set_next_sensitive(true);
if keymap_variant.is_empty() { if keymap_variant.is_empty() {
keymap_base_data_buffer_clone0.set_text(&keymap_base); *keymap_base_data_refcell.borrow_mut() = String::from(&keymap_base);
Command::new("setxkbmap") Command::new("setxkbmap")
.arg("-layout") .arg("-layout")
.arg(keymap_base.clone()) .arg(keymap_base.clone())
.spawn() .spawn()
.expect("keyboard failed to start"); .expect("keyboard failed to start");
} else { } else {
keymap_base_data_buffer_clone0.set_text(&keymap_base); *keymap_base_data_refcell.borrow_mut() = String::from(&keymap_base);
keymap_variant_data_buffer_clone0.set_text(&keymap_variant); *keymap_variant_data_refcell.borrow_mut() = String::from(&keymap_variant);
Command::new("setxkbmap") Command::new("setxkbmap")
.arg("-layout") .arg("-layout")
.arg(keymap_base.clone()) .arg(keymap_base.clone())

View File

@ -2,11 +2,11 @@ use crate::installer_stack_page;
use gtk::{prelude::*, glib as glib, gio as gio}; use gtk::{prelude::*, glib as glib, gio as gio};
use adw::{prelude::*}; use adw::{prelude::*};
use glib::{clone, closure_local}; use glib::{clone, closure_local};
use std::{process::Command, env, fs, path::Path}; use std::{cell::RefCell, env, fs, path::Path, process::Command, rc::Rc};
pub fn language_page( pub fn language_page(
main_carousel: &adw::Carousel, main_carousel: &adw::Carousel,
lang_data_buffer: &gtk::TextBuffer, lang_data_refcell: &Rc<RefCell<String>>,
language_changed_action: &gio::SimpleAction language_changed_action: &gio::SimpleAction
) { ) {
let language_page = installer_stack_page::InstallerStackPage::new(); let language_page = installer_stack_page::InstallerStackPage::new();
@ -223,8 +223,6 @@ pub fn language_page(
"pt_BR", "pt_BR",
"pt_PT",]; "pt_PT",];
let lang_data_buffer_clone0 = lang_data_buffer.clone();
for locale in locale_list.iter() { for locale in locale_list.iter() {
let locale = locale.to_string(); let locale = locale.to_string();
let locale_name = gnome_desktop::language_from_locale(&locale, None).unwrap_or(locale.clone().into()).to_string(); let locale_name = gnome_desktop::language_from_locale(&locale, None).unwrap_or(locale.clone().into()).to_string();
@ -244,15 +242,15 @@ pub fn language_page(
locale_checkbutton.connect_toggled(clone!( locale_checkbutton.connect_toggled(clone!(
#[weak] #[weak]
locale_checkbutton, locale_checkbutton,
#[weak] #[strong]
lang_data_buffer_clone0, lang_data_refcell,
#[weak] #[weak]
language_page, language_page,
move |_| move |_|
{ {
if locale_checkbutton.is_active() == true { if locale_checkbutton.is_active() == true {
language_page.set_next_sensitive(true); language_page.set_next_sensitive(true);
lang_data_buffer_clone0.set_text(&locale); *lang_data_refcell.borrow_mut() = String::from(&locale);
} }
} }
)); ));
@ -319,16 +317,19 @@ pub fn language_page(
#[weak] #[weak]
main_carousel, main_carousel,
#[strong] #[strong]
lang_data_refcell,
#[strong]
language_changed_action, language_changed_action,
move |_language_page: installer_stack_page::InstallerStackPage| move |_language_page: installer_stack_page::InstallerStackPage|
{ {
let locale = &lang_data_refcell.borrow();
//Command::new("sudo") //Command::new("sudo")
// .arg("localectl") // .arg("localectl")
// .arg("set-locale") // .arg("set-locale")
// .arg("LANG=".to_owned() + &lang_data_buffer_clone0.text(&lang_data_buffer_clone0.bounds().0, &lang_data_buffer_clone0.bounds().1, true).to_string() + ".UTF-8") // .arg("LANG=".to_owned() + &locale + ".UTF-8")
// .spawn() // .spawn()
// .expect("locale failed to start"); // .expect("locale failed to start");
rust_i18n::set_locale(&lang_data_buffer_clone0.text(&lang_data_buffer_clone0.bounds().0, &lang_data_buffer_clone0.bounds().1, true).to_string()); rust_i18n::set_locale(&locale);
language_changed_action.activate(None); language_changed_action.activate(None);
main_carousel.scroll_to(&main_carousel.nth_page(2), true) main_carousel.scroll_to(&main_carousel.nth_page(2), true)
} }

View File

@ -2,15 +2,17 @@ use crate::installer_stack_page;
use gtk::{prelude::*, glib as glib, gio as gio}; use gtk::{prelude::*, glib as glib, gio as gio};
use glib::{clone, closure_local}; use glib::{clone, closure_local};
use crate::{automatic_partitioning_page}; use crate::{automatic_partitioning_page};
use std::{rc::Rc, cell::RefCell};
use std::io::BufRead; use std::io::BufRead;
pub fn partitioning_page( pub fn partitioning_page(
main_carousel: &adw::Carousel, main_carousel: &adw::Carousel,
partition_method_type_buffer: &gtk::TextBuffer, partition_method_type_refcell: &Rc<RefCell<String>>,
partition_method_automatic_target_buffer: &gtk::TextBuffer, partition_method_automatic_target_refcell: &Rc<RefCell<String>>,
partition_method_automatic_luks_buffer: &gtk::TextBuffer, partition_method_automatic_luks_enabled_refcell: &Rc<RefCell<bool>>,
partition_method_automatic_ratio_buffer: &gtk::TextBuffer, partition_method_automatic_luks_refcell: &Rc<RefCell<String>>,
partition_method_automatic_seperation_buffer: &gtk::TextBuffer, partition_method_automatic_ratio_refcell: &Rc<RefCell<String>>,
partition_method_automatic_seperation_refcell: &Rc<RefCell<String>>,
language_changed_action: &gio::SimpleAction language_changed_action: &gio::SimpleAction
) { ) {
let partitioning_page = installer_stack_page::InstallerStackPage::new(); let partitioning_page = installer_stack_page::InstallerStackPage::new();
@ -92,11 +94,12 @@ pub fn partitioning_page(
partitioning_carousel.append(&partitioning_page); partitioning_carousel.append(&partitioning_page);
automatic_partitioning_page::automatic_partitioning_page( automatic_partitioning_page::automatic_partitioning_page(
&partitioning_carousel, &partitioning_carousel,
&partition_method_type_buffer, &partition_method_type_refcell,
&partition_method_automatic_target_buffer, &partition_method_automatic_target_refcell,
&partition_method_automatic_luks_buffer, &partition_method_automatic_luks_enabled_refcell,
&partition_method_automatic_ratio_buffer, &partition_method_automatic_luks_refcell,
&partition_method_automatic_seperation_buffer, &partition_method_automatic_ratio_refcell,
&partition_method_automatic_seperation_refcell,
&language_changed_action); &language_changed_action);
partitioning_page.connect_closure( partitioning_page.connect_closure(

View File

@ -2,12 +2,12 @@ use crate::installer_stack_page;
use gtk::{prelude::*, glib as glib, gio as gio}; use gtk::{prelude::*, glib as glib, gio as gio};
use adw::{prelude::*}; use adw::{prelude::*};
use glib::{clone, closure_local}; use glib::{clone, closure_local};
use std::{process::Command, fs, path::Path}; use std::{process::Command, fs, path::Path, rc::Rc, cell::RefCell};
use std::io::BufRead; use std::io::BufRead;
pub fn timezone_page( pub fn timezone_page(
main_carousel: &adw::Carousel, main_carousel: &adw::Carousel,
timezone_data_buffer: &gtk::TextBuffer, timezone_data_refcell: &Rc<RefCell<String>>,
language_changed_action: &gio::SimpleAction language_changed_action: &gio::SimpleAction
) { ) {
let timezone_page = installer_stack_page::InstallerStackPage::new(); let timezone_page = installer_stack_page::InstallerStackPage::new();
@ -74,8 +74,6 @@ pub fn timezone_page(
let timezone_stdout = timezone_cli.stdout.expect("could not get stdout"); let timezone_stdout = timezone_cli.stdout.expect("could not get stdout");
let timezone_reader = std::io::BufReader::new(timezone_stdout); let timezone_reader = std::io::BufReader::new(timezone_stdout);
let timezone_data_buffer_clone0 = timezone_data_buffer.clone();
for timezone in timezone_reader.lines() { for timezone in timezone_reader.lines() {
let timezone = timezone.unwrap(); let timezone = timezone.unwrap();
let timezone_clone = timezone.clone(); let timezone_clone = timezone.clone();
@ -97,12 +95,12 @@ pub fn timezone_page(
#[weak] #[weak]
timezone_page, timezone_page,
#[weak] #[weak]
timezone_data_buffer, timezone_data_refcell,
move |_| move |_|
{ {
if timezone_checkbutton.is_active() == true { if timezone_checkbutton.is_active() == true {
timezone_page.set_next_sensitive(true); timezone_page.set_next_sensitive(true);
timezone_data_buffer.set_text(&timezone); *timezone_data_refcell.borrow_mut() = String::from(&timezone);
} }
} }
) )
@ -183,13 +181,15 @@ pub fn timezone_page(
closure_local!( closure_local!(
#[weak] #[weak]
main_carousel, main_carousel,
#[strong]
timezone_data_refcell,
move |_timezone_page: installer_stack_page::InstallerStackPage| move |_timezone_page: installer_stack_page::InstallerStackPage|
{ {
let timezone_selection = timezone_data_buffer_clone0.text(&timezone_data_buffer_clone0.bounds().0, &timezone_data_buffer_clone0.bounds().1, true).to_string(); let timezone = timezone_data_refcell.borrow();
Command::new("sudo") Command::new("sudo")
.arg("timedatectl") .arg("timedatectl")
.arg("set-timezone") .arg("set-timezone")
.arg(&timezone_selection) .arg(timezone.to_owned())
.spawn() .spawn()
.expect("timezone failed to start"); .expect("timezone failed to start");
main_carousel.scroll_to(&main_carousel.nth_page(5), true) main_carousel.scroll_to(&main_carousel.nth_page(5), true)