2024-02-14 16:32:01 +01:00
// Use libraries
use adw ::prelude ::* ;
use adw ::* ;
2024-02-16 22:21:09 +01:00
use glib ::* ;
/// Use all gtk4 libraries (gtk4 -> gtk because cargo)
/// Use all libadwaita libraries (libadwaita -> adw because cargo)
use gtk ::* ;
2024-02-14 16:32:01 +01:00
2024-02-18 19:30:41 +01:00
use gettextrs ::{ gettext } ;
2024-02-18 18:28:14 +01:00
2024-02-14 16:32:01 +01:00
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 ;
pub fn timezone_page ( content_stack : & gtk ::Stack ) {
// 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 ( )
2024-02-18 19:30:41 +01:00
. label ( gettext ( " back " ) )
2024-02-14 16:32:01 +01:00
. 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 ( )
2024-02-18 19:30:41 +01:00
. label ( gettext ( " next " ) )
2024-02-14 16:32:01 +01:00
. 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 timezone page
let timezone_main_box = gtk ::Box ::builder ( )
. orientation ( Orientation ::Vertical )
. build ( ) ;
// the header box for the timezone page
let timezone_header_box = gtk ::Box ::builder ( )
. orientation ( Orientation ::Horizontal )
. build ( ) ;
// the header text for the timezone page
let timezone_header_text = gtk ::Label ::builder ( )
2024-02-18 19:30:41 +01:00
. label ( gettext ( " select_a_timezone " ) )
2024-02-14 16:32:01 +01:00
. halign ( gtk ::Align ::End )
. hexpand ( true )
. margin_top ( 15 )
. margin_bottom ( 15 )
. margin_start ( 15 )
. margin_end ( 5 )
. build ( ) ;
timezone_header_text . add_css_class ( " header_sized_text " ) ;
// the header icon for the timezone icon
let timezone_header_icon = gtk ::Image ::builder ( )
2024-02-18 19:30:41 +01:00
. icon_name ( " alarm-clock " )
2024-02-14 16:32:01 +01:00
. halign ( gtk ::Align ::Start )
. hexpand ( true )
. pixel_size ( 78 )
. margin_top ( 15 )
. margin_bottom ( 15 )
. margin_start ( 0 )
. margin_end ( 15 )
. build ( ) ;
// make timezone selection box for choosing installation or live media
let timezone_selection_box = gtk ::Box ::builder ( )
. orientation ( Orientation ::Vertical )
. build ( ) ;
// / timezone_header_box appends
//// Add the timezone page header text and icon
timezone_header_box . append ( & timezone_header_text ) ;
timezone_header_box . append ( & timezone_header_icon ) ;
// / timezone_main_box appends
//// Add the timezone header to timezone main box
timezone_main_box . append ( & timezone_header_box ) ;
//// Add the timezone selection/page content box to timezone main box
timezone_main_box . append ( & timezone_selection_box ) ;
// text above timezone selection box
let timezone_selection_text = gtk ::Label ::builder ( )
2024-02-18 19:30:41 +01:00
. label ( gettext ( " please_select_timezone " ) )
2024-02-14 16:32:01 +01:00
. halign ( gtk ::Align ::Center )
. hexpand ( true )
. margin_top ( 15 )
. margin_bottom ( 15 )
. margin_start ( 15 )
. margin_end ( 15 )
. build ( ) ;
timezone_selection_text . add_css_class ( " medium_sized_text " ) ;
let timezone_selection_expander_row = adw ::ExpanderRow ::builder ( )
2024-02-18 19:30:41 +01:00
. title ( gettext ( " no_timezone_select " ) )
2024-02-14 16:32:01 +01:00
. build ( ) ;
let null_checkbutton = gtk ::CheckButton ::builder ( )
2024-02-18 19:30:41 +01:00
. label ( gettext ( " no_timezone_select " ) )
2024-02-14 16:32:01 +01:00
. build ( ) ;
2024-02-16 22:21:09 +01:00
let timezone_selection_expander_row_viewport =
gtk ::ScrolledWindow ::builder ( ) . height_request ( 200 ) . build ( ) ;
2024-02-14 16:32:01 +01:00
let timezone_selection_expander_row_viewport_box = gtk ::Box ::builder ( )
. orientation ( Orientation ::Vertical )
. build ( ) ;
let timezone_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 ( ) ;
timezone_selection_expander_row_viewport_listbox . add_css_class ( " boxed-list " ) ;
timezone_selection_expander_row_viewport_listbox . append ( & timezone_selection_expander_row ) ;
2024-02-16 22:21:09 +01:00
timezone_selection_expander_row_viewport
. set_child ( Some ( & timezone_selection_expander_row_viewport_box ) ) ;
2024-02-14 16:32:01 +01:00
timezone_selection_expander_row . add_row ( & timezone_selection_expander_row_viewport ) ;
let current_timezone_cli = Command ::new ( " timedatectl " )
. arg ( " show " )
. arg ( " --va " )
. arg ( " -p " )
. arg ( " Timezone " )
. stdin ( Stdio ::piped ( ) )
. stdout ( Stdio ::piped ( ) )
. spawn ( )
. unwrap_or_else ( | e | panic! ( " failed {} " , e ) ) ;
let current_timezone_output = current_timezone_cli . wait_with_output ( ) . unwrap ( ) ;
2024-02-16 22:21:09 +01:00
let current_timezone = str ::from_utf8 ( & current_timezone_output . stdout )
. unwrap ( )
. trim ( ) ;
2024-02-14 16:32:01 +01:00
let timezone_layout_cli = Command ::new ( " timedatectl " )
. arg ( " list-timezones " )
. stdin ( Stdio ::piped ( ) )
. stdout ( Stdio ::piped ( ) )
. spawn ( )
. unwrap_or_else ( | e | panic! ( " failed {} " , e ) ) ;
let timezone_layout_stdout = timezone_layout_cli . stdout . expect ( " could not get stdout " ) ;
let timezone_layout_reader = BufReader ::new ( timezone_layout_stdout ) ;
2024-02-16 22:21:09 +01:00
let timezone_data_buffer = gtk ::TextBuffer ::builder ( ) . build ( ) ;
2024-02-14 16:32:01 +01:00
for timezone_layout in timezone_layout_reader . lines ( ) {
let timezone_layout = timezone_layout . unwrap ( ) ;
let timezone_layout_clone = timezone_layout . clone ( ) ;
let timezone_layout_checkbutton = gtk ::CheckButton ::builder ( )
. label ( timezone_layout . clone ( ) )
. build ( ) ;
timezone_layout_checkbutton . set_group ( Some ( & null_checkbutton ) ) ;
timezone_selection_expander_row_viewport_box . append ( & timezone_layout_checkbutton ) ;
timezone_layout_checkbutton . connect_toggled ( clone! ( @ weak timezone_layout_checkbutton , @ weak timezone_selection_expander_row , @ weak bottom_next_button , @ weak timezone_data_buffer = > move | _ | {
if timezone_layout_checkbutton . is_active ( ) = = true {
timezone_selection_expander_row . set_title ( & timezone_layout ) ;
bottom_next_button . set_sensitive ( true ) ;
timezone_data_buffer . set_text ( & timezone_layout ) ;
}
} ) ) ;
if current_timezone . contains ( & ( timezone_layout_clone ) ) {
timezone_layout_checkbutton . set_active ( true ) ;
}
}
// / timezone_selection_box appends
//// add text and and entry to timezone page selections
timezone_selection_box . append ( & timezone_selection_text ) ;
timezone_selection_box . append ( & timezone_selection_expander_row_viewport_listbox ) ;
// / timezone_header_box appends
//// Add the timezone page header text and icon
timezone_header_box . append ( & timezone_header_text ) ;
timezone_header_box . append ( & timezone_header_icon ) ;
// / timezone_main_box appends
//// Add the timezone header to timezone main box
timezone_main_box . append ( & timezone_header_box ) ;
//// Add the timezone selection/page content box to timezone main box
timezone_main_box . append ( & timezone_selection_box ) ;
timezone_main_box . append ( & bottom_box ) ;
// / Content stack appends
//// Add the timezone_main_box as page: timezone_page, Give it nice title
2024-02-18 19:30:41 +01:00
content_stack . add_titled ( & timezone_main_box , Some ( " timezone_page " ) , & gettext ( " timezone " ) ) ;
2024-02-14 16:32:01 +01:00
let timezone_data_buffer_clone = timezone_data_buffer . clone ( ) ;
bottom_next_button . connect_clicked ( clone! ( @ weak content_stack = > move | _ | {
if Path ::new ( " /tmp/pika-installer-gtk4-timezone.txt " ) . exists ( ) {
fs ::remove_file ( " /tmp/pika-installer-gtk4-timezone.txt " ) . expect ( " Bad permissions on /tmp/pika-installer-gtk4-timezone.txt " ) ;
}
fs ::write ( " /tmp/pika-installer-gtk4-timezone.txt " , timezone_data_buffer_clone . text ( & timezone_data_buffer_clone . bounds ( ) . 0 , & timezone_data_buffer_clone . bounds ( ) . 1 , true ) . to_string ( ) ) . expect ( " Unable to write file " ) ;
Command ::new ( " sudo " )
. arg ( " timedatectl " )
. arg ( " set-timezone " )
. arg ( & timezone_data_buffer_clone . text ( & timezone_data_buffer_clone . bounds ( ) . 0 , & timezone_data_buffer_clone . bounds ( ) . 1 , true ) . to_string ( ) )
. spawn ( )
. expect ( " timezone failed to start " ) ;
content_stack . set_visible_child_name ( " keyboard_page " )
} ) ) ;
bottom_back_button . connect_clicked ( clone! ( @ weak content_stack = > move | _ | {
content_stack . set_visible_child_name ( " eula_page " )
} ) ) ;
}