Browse Source

* Added AKS button.

master
freesource 24 years ago
parent
commit
3965fae37d
  1. 25
      gBootRoot

25
gBootRoot

@ -394,6 +394,8 @@ $entry5->set_usize(20,20);
$box2->pack_start( $entry5, $true, $true, 0 ); $box2->pack_start( $entry5, $true, $true, 0 );
$entry5->show(); $entry5->show();
my $button_advanced;
########################### ###########################
# The ADVANCED BOOT SECTION # The ADVANCED BOOT SECTION
########################### ###########################
@ -409,12 +411,13 @@ $vbox_advanced->show();
# The Advanced Boot Section button # The Advanced Boot Section button
hbox_advanced($vbox_advanced); hbox_advanced($vbox_advanced);
my $button_advanced = new Gtk::Button("Advanced Boot Section"); $button_advanced = new Gtk::Button("Advanced Boot Section");
$tooltips->set_tip( $button_advanced, $tooltips->set_tip( $button_advanced,
"Change settings for the Boot Disk Image.", "" ); "Change settings for the Boot Disk Image.", "" );
$button_advanced->signal_connect("clicked",\&advanced_boot_section ); $button_advanced->signal_connect("clicked",\&advanced_boot_section );
$hbox_advanced->pack_start( $button_advanced, $true, $true, 0 ); $hbox_advanced->pack_start( $button_advanced, $true, $true, 0 );
$button_advanced->show(); $button_advanced->show();
########################### ###########################
# The ADVANCED ROOT SECTION # The ADVANCED ROOT SECTION
########################### ###########################
@ -431,6 +434,24 @@ $hbox_advanced->pack_start( $button_advanced, $true, $true, 0 );
$button_advanced->show(); $button_advanced->show();
########################### ###########################
#############################
# The ADVANCED KERNEL SECTION
#############################
my $vbox_advanced_kernel = new Gtk::VBox($false,0);
$box1->add($vbox_advanced_kernel);
$vbox_advanced_kernel->show();
hbox_advanced($vbox_advanced_kernel);
$button_advanced = new Gtk::Button("Advanced Kernel Section");
$tooltips->set_tip( $button_advanced,
"Retrieve/Make Kernel Sources.", "" );
#$button_advanced->signal_connect("clicked",\&advanced_root_section );
$hbox_advanced->pack_start( $button_advanced, $true, $true, 0 );
$button_advanced->show();
#############################
# Separator # Separator
$separator = new Gtk::HSeparator(); $separator = new Gtk::HSeparator();
$box1->pack_start( $separator, $false, $true, 0 ); $box1->pack_start( $separator, $false, $true, 0 );
@ -1372,7 +1393,7 @@ sub button {
$tooltips->set_tip( $button, "Select the Kernel.", "" ); $tooltips->set_tip( $button, "Select the Kernel.", "" );
} }
elsif ($order == 2) { elsif ($order == 2) {
$tooltips->set_tip( $button, "Select the Compressed Filesystem.", "" ); $tooltips->set_tip( $button, "Select the Root Filesystem.", "" );
} }
else { else {
$tooltips->set_tip( $button, "Select the Device.", "" ); $tooltips->set_tip( $button, "Select the Device.", "" );

Loading…
Cancel
Save