summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-09-28 21:33:49 +0000
committerThierry Vignaud <tv@mandriva.org>2008-09-28 21:33:49 +0000
commitab51d9e75890692fed119c1a168fdc5088c4538d (patch)
tree86f9855027650e4c949fd4a917e779fdc4591ebb /perl-install/standalone
parentb5abe203ac1a7cabb419ad65cd0680d2f48767f3 (diff)
downloaddrakx-backup-do-not-use-ab51d9e75890692fed119c1a168fdc5088c4538d.tar
drakx-backup-do-not-use-ab51d9e75890692fed119c1a168fdc5088c4538d.tar.gz
drakx-backup-do-not-use-ab51d9e75890692fed119c1a168fdc5088c4538d.tar.bz2
drakx-backup-do-not-use-ab51d9e75890692fed119c1a168fdc5088c4538d.tar.xz
drakx-backup-do-not-use-ab51d9e75890692fed119c1a168fdc5088c4538d.zip
make it fit in 800x600 resolution by spliting into notebook (#36105)
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-xperl-install/standalone/draksplash8
1 files changed, 8 insertions, 0 deletions
diff --git a/perl-install/standalone/draksplash b/perl-install/standalone/draksplash
index 567581797..b5aec0bab 100755
--- a/perl-install/standalone/draksplash
+++ b/perl-install/standalone/draksplash
@@ -58,6 +58,9 @@ my $notebook = gtksignal_connect(gtknew('Notebook'), switch_page => sub {
switch_to_mode($mode);
});
$notebook->append_page(gtknew('VBox', spacing => 5, children_tight => [
+ gtknew('Notebook', children => [
+ gtknew('Label', text => N("Progress Bar")),
+ gtknew('VBox', spacing => 5, children_tight => [
create_scale_table('px', 'pw', 'py', 'ph', 'ptransp'),
gtknew('Button', text => N("Choose progress bar color 1"),
clicked => sub { choose_color('pc1') }),
@@ -71,11 +74,16 @@ $notebook->append_page(gtknew('VBox', spacing => 5, children_tight => [
Gtk2::ComboBox->new_with_strings([ 'vertical', 'horizontal' ], 'vertical'),
changed => sub { $theme{conf}{gradient} = $_[0]->entry->get_text }),
]),
+ ]),
+ gtknew('Label', text => N("Text")),
+ gtknew('VBox', spacing => 5, children_tight => [
gtknew('Button', text => N("Choose text color"),
clicked => sub { choose_color('text_color') }),
create_scale_table('text_x', 'text_y', 'text_size'),
gtknew('Button', text => N("Choose picture"),
clicked => sub { choose_image('silentjpeg') })]),
+ ])
+]),
N("Silent bootsplash"));
$notebook->append_page(gtknew('VBox', spacing => 5, children_tight => [
create_scale_table('tb_x', 'tb_y', 'tb_w', 'tb_h', 'transp'),