// Use libraries use adw::prelude::*; use adw::*; use gtk::glib; use gtk::glib::*; /// Use all gtk4 libraries (gtk4 -> gtk because cargo) /// Use all libadwaita libraries (libadwaita -> adw because cargo) use gtk::*; use std::io::BufRead; use std::io::BufReader; use std::process::Command; use std::process::Stdio; use std::{str}; use std::fs; use std::path::Path; use gnome_desktop::*; pub fn keyboard_page(content_stack: >k::Stack, keyboard_main_box: >k::Box, ) { // create the bottom box for next and back buttons let bottom_box = gtk::Box::builder() .orientation(Orientation::Horizontal) .valign(gtk::Align::End) .vexpand(true) .build(); // Next and back button let bottom_back_button = gtk::Button::builder() .label(t!("back")) .margin_top(15) .margin_bottom(15) .margin_start(15) .margin_end(15) .halign(gtk::Align::Start) .hexpand(true) .build(); let bottom_next_button = gtk::Button::builder() .label(t!("next")) .margin_top(15) .margin_bottom(15) .margin_start(15) .margin_end(15) .halign(gtk::Align::End) .hexpand(true) .sensitive(false) .build(); // Start Applying css classes bottom_next_button.add_css_class("suggested-action"); // / bottom_box appends //// Add the next and back buttons bottom_box.append(&bottom_back_button); bottom_box.append(&bottom_next_button); // the header box for the keyboard page let keyboard_header_box = gtk::Box::builder() .orientation(Orientation::Horizontal) .build(); // the header text for the keyboard page let keyboard_header_text = gtk::Label::builder() .label(t!("select_a_keyboard")) .halign(gtk::Align::End) .hexpand(true) .margin_top(15) .margin_bottom(15) .margin_start(15) .margin_end(5) .build(); keyboard_header_text.add_css_class("header_sized_text"); // the header icon for the keyboard icon let keyboard_header_icon = gtk::Image::builder() .icon_name("keyboard") .halign(gtk::Align::Start) .hexpand(true) .pixel_size(78) .margin_top(15) .margin_bottom(15) .margin_start(0) .margin_end(15) .build(); // make keyboard selection box for choosing installation or live media let keyboard_selection_box = gtk::Box::builder() .orientation(Orientation::Vertical) .build(); // / keyboard_header_box appends //// Add the keyboard page header text and icon keyboard_header_box.append(&keyboard_header_text); keyboard_header_box.append(&keyboard_header_icon); // / keyboard_main_box appends //// Add the keyboard header to keyboard main box keyboard_main_box.append(&keyboard_header_box); //// Add the keyboard selection/page content box to keyboard main box keyboard_main_box.append(&keyboard_selection_box); // text above keyboard selection box let keyboard_selection_text = gtk::Label::builder() .label(t!("please_select_keyboard")) .halign(gtk::Align::Center) .hexpand(true) .margin_top(15) .margin_bottom(15) .margin_start(15) .margin_end(15) .build(); keyboard_selection_text.add_css_class("medium_sized_text"); let keyboard_selection_expander_row = adw::ExpanderRow::builder() .title(t!("no_keyboard_selected")) .build(); let null_checkbutton = gtk::CheckButton::builder() .label(t!("no_keyboard_selected")) .build(); let keyboard_selection_expander_row_viewport = gtk::ScrolledWindow::builder().height_request(355).build(); let keyboard_selection_expander_row_viewport_box = gtk::ListBox::builder().build(); keyboard_selection_expander_row_viewport_box.add_css_class("boxed-list"); let keyboard_selection_expander_row_viewport_listbox = gtk::ListBox::builder() .selection_mode(SelectionMode::None) .margin_top(15) .margin_bottom(15) .margin_start(15) .margin_end(15) .build(); keyboard_selection_expander_row_viewport_listbox.add_css_class("boxed-list"); keyboard_selection_expander_row_viewport_listbox.append(&keyboard_selection_expander_row); keyboard_selection_expander_row_viewport .set_child(Some(&keyboard_selection_expander_row_viewport_box)); keyboard_selection_expander_row.add_row(&keyboard_selection_expander_row_viewport); let keyboard_search_bar = gtk::SearchEntry::builder() .halign(gtk::Align::Center) .hexpand(true) .margin_top(15) .margin_bottom(15) .margin_start(15) .margin_end(15) .search_delay(500) .build(); let current_keyboard_cli = Command::new("localectl") .arg("status") .stdin(Stdio::piped()) .stdout(Stdio::piped()) .spawn() .unwrap_or_else(|e| panic!("failed {}", e)); let current_keyboard_grep = Command::new("grep") .arg("X11 Layout") .stdin(Stdio::from(current_keyboard_cli.stdout.unwrap())) // Pipe through. .stdout(Stdio::piped()) .spawn() .unwrap(); let current_keyboard_cut = Command::new("cut") .arg("-d:") .arg("-f2") .stdin(Stdio::from(current_keyboard_grep.stdout.unwrap())) .stdout(Stdio::piped()) .spawn() .unwrap(); let current_keyboard_output = current_keyboard_cut.wait_with_output().unwrap(); let current_keyboard = str::from_utf8(¤t_keyboard_output.stdout) .unwrap() .trim(); let keyboard_layout_cli = Command::new("localectl") .arg("list-x11-keymap-layouts") .stdin(Stdio::piped()) .stdout(Stdio::piped()) .spawn() .unwrap_or_else(|e| panic!("failed {}", e)); let keyboard_layout_stdout = keyboard_layout_cli.stdout.expect("could not get stdout"); let keyboard_layout_reader = BufReader::new(keyboard_layout_stdout); let keyboard_data_buffer = gtk::TextBuffer::builder().build(); for keyboard_layout in keyboard_layout_reader.lines() { let keyboard_layout = keyboard_layout.unwrap(); let keyboard_layout_clone = keyboard_layout.clone(); let keyboard_layout_checkbutton = gtk::CheckButton::builder() .valign(Align::Center) .can_focus(false) .build(); let keyboard_layout_row = adw::ActionRow::builder() .activatable_widget(&keyboard_layout_checkbutton) .title( gnome_desktop::XkbInfo::new() .layout_info(&keyboard_layout) .unwrap() .0 .unwrap().to_string(), ) .subtitle(keyboard_layout.clone()) .build(); keyboard_layout_row.add_prefix(&keyboard_layout_checkbutton); keyboard_layout_checkbutton.set_group(Some(&null_checkbutton)); keyboard_selection_expander_row_viewport_box.append(&keyboard_layout_row); keyboard_layout_checkbutton.connect_toggled(clone!(@weak keyboard_layout_checkbutton, @weak keyboard_selection_expander_row, @weak bottom_next_button, @weak keyboard_data_buffer => move |_| { if keyboard_layout_checkbutton.is_active() == true { keyboard_selection_expander_row.set_title(&keyboard_layout_row.title()); bottom_next_button.set_sensitive(true); keyboard_data_buffer.set_text(&keyboard_layout); Command::new("setxkbmap") .arg("-layout") .arg(keyboard_layout.clone()) .spawn() .expect("keyboard failed to start"); } })); if current_keyboard.contains(&(keyboard_layout_clone)) { keyboard_layout_checkbutton.set_active(true); } } // / keyboard_selection_box appends //// add text and and entry to keyboard page selections keyboard_selection_box.append(&keyboard_selection_text); keyboard_selection_box.append(&keyboard_search_bar); keyboard_selection_box.append(&keyboard_selection_expander_row_viewport_listbox); // / keyboard_header_box appends //// Add the keyboard page header text and icon keyboard_header_box.append(&keyboard_header_text); keyboard_header_box.append(&keyboard_header_icon); // / keyboard_main_box appends //// Add the keyboard header to keyboard main box keyboard_main_box.append(&keyboard_header_box); //// Add the keyboard selection/page content box to keyboard main box keyboard_main_box.append(&keyboard_selection_box); //// Add the keyboard selection/page content box to keyboard main box keyboard_main_box.append( >k::Entry::builder() .hexpand(true) .valign(Align::End) .vexpand(false) .margin_bottom(15) .margin_top(15) .margin_end(15) .margin_start(15) .placeholder_text(t!("test_your_keyboard")) .build(), ); keyboard_main_box.append(&bottom_box); let keyboard_data_buffer_clone = keyboard_data_buffer.clone(); keyboard_search_bar.connect_search_changed(clone!(@weak keyboard_search_bar, @weak keyboard_selection_expander_row_viewport_box => move |_| { let mut counter = keyboard_selection_expander_row_viewport_box.first_child(); while let Some(row) = counter { if row.widget_name() == "AdwActionRow" { if !keyboard_search_bar.text().is_empty() { if row.property::("subtitle").to_lowercase().contains(&keyboard_search_bar.text().to_string().to_lowercase()) || row.property::("title").to_lowercase().contains(&keyboard_search_bar.text().to_string().to_lowercase()) { keyboard_selection_expander_row.set_expanded(true); //row.grab_focus(); //row.add_css_class("highlight-widget"); row.set_property("visible", true); keyboard_search_bar.grab_focus(); } else { row.set_property("visible", false); } } else { row.set_property("visible", true); } } counter = row.next_sibling(); } })); bottom_next_button.connect_clicked(clone!(@weak content_stack => move |_| { if Path::new("/tmp/pika-installer-gtk4-keyboard.txt").exists() { fs::remove_file("/tmp/pika-installer-gtk4-keyboard.txt").expect("Bad permissions on /tmp/pika-installer-gtk4-keyboard.txt"); } fs::write("/tmp/pika-installer-gtk4-keyboard.txt", keyboard_data_buffer_clone.text(&keyboard_data_buffer_clone.bounds().0, &keyboard_data_buffer_clone.bounds().1, true).to_string()).expect("Unable to write file"); content_stack.set_visible_child_name("partitioning_page") })); bottom_back_button.connect_clicked(clone!(@weak content_stack => move |_| { content_stack.set_visible_child_name("timezone_page") })); }