summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/draksplash
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2005-06-06 05:02:35 +0000
committerOlivier Blin <oblin@mandriva.org>2005-06-06 05:02:35 +0000
commit5d722529d5b15f443f594810a540fc7f896661e6 (patch)
treefdb839bb87c93b6b8f4b468ec00aefd8ed599a30 /perl-install/standalone/draksplash
parentb12c324e2e8892a50b51336febb664c9c441b37c (diff)
downloaddrakx-backup-do-not-use-5d722529d5b15f443f594810a540fc7f896661e6.tar
drakx-backup-do-not-use-5d722529d5b15f443f594810a540fc7f896661e6.tar.gz
drakx-backup-do-not-use-5d722529d5b15f443f594810a540fc7f896661e6.tar.bz2
drakx-backup-do-not-use-5d722529d5b15f443f594810a540fc7f896661e6.tar.xz
drakx-backup-do-not-use-5d722529d5b15f443f594810a540fc7f896661e6.zip
- draw cross in progress bar
- update_rect -> update_theme_from_rect - create update_rect out of switch_to_mode
Diffstat (limited to 'perl-install/standalone/draksplash')
-rwxr-xr-xperl-install/standalone/draksplash28
1 files changed, 17 insertions, 11 deletions
diff --git a/perl-install/standalone/draksplash b/perl-install/standalone/draksplash
index 8736a7c3e..f9f06dcdb 100755
--- a/perl-install/standalone/draksplash
+++ b/perl-install/standalone/draksplash
@@ -110,6 +110,7 @@ sub read_theme_config {
}
$theme{conf}{pc} ||= '0x21459d';
update_scale_values();
+ update_rect();
}
sub set_theme {
@@ -254,30 +255,35 @@ sub image_expose {
my ($widget) = @_;
my $window = $widget->window;
$window->draw_pixbuf($widget->style->white_gc, $image_pixbuf[$current_mode > 0], 0, 0, 0, 0, -1, -1, 'none', 0, 0) if $image_pixbuf[$current_mode > 0];
+ my $cross_gc;
if ($current_mode == 0) { #- silent
$window->draw_rectangle($widget->style->white_gc, 1, @{$theme{conf}}{'px', 'py', 'pw', 'ph'});
+ $cross_gc = $widget->style->black_gc;
} else { #- verbose or console
$window->draw_rectangle($widget->style->black_gc, 0, @{$theme{conf}}{'tx', 'ty', 'tw', 'th'});
- my ($tx1, $ty1) = @{$theme{conf}}{'tx', 'ty'};
- my ($tx2, $ty2) = ($tx1 + $theme{conf}{tw}, $ty1 + $theme{conf}{th});
- $window->draw_line($widget->style->white_gc, $tx1, $ty1, $tx2, $ty2);
- $window->draw_line($widget->style->white_gc, $tx1, $ty2, $tx2, $ty1);
+ $cross_gc = $widget->style->white_gc;
}
+ $window->draw_line($cross_gc, $current_rect->[0]{X}, $current_rect->[0]{Y}, $current_rect->[1]{X}, $current_rect->[1]{Y});
+ $window->draw_line($cross_gc, $current_rect->[0]{X}, $current_rect->[1]{Y}, $current_rect->[1]{X}, $current_rect->[0]{Y});
}
-sub switch_to_mode {
- my ($mode) = @_;
- $current_mode = $mode;
+sub update_rect() {
+ undef $current_point;
if ($current_mode == 0) { #- silent
$current_rect = bootsplash::xywh2rectangle(@{$theme{conf}}{'px', 'py', 'pw', 'ph'});
} else { #- verbose or console
$current_rect = bootsplash::xywh2rectangle(@{$theme{conf}}{'tx', 'ty', 'tw', 'th'});
}
- undef $current_point;
+}
+
+sub switch_to_mode {
+ my ($mode) = @_;
+ $current_mode = $mode;
+ update_rect();
$image_area->queue_draw;
}
-sub update_rect() {
+sub update_theme_from_rect() {
if ($current_mode == 0) { #- silent
@{$theme{conf}}{'px', 'py', 'pw', 'ph'} = bootsplash::rectangle2xywh($current_rect);
} else { #- verbose or console
@@ -292,7 +298,7 @@ sub image_button_pressed {
my $point = { X => $event->x, Y => $event->y };
$current_point = bootsplash::nearest($point, @$current_rect);
%$current_point = %$point;
- update_rect();
+ update_theme_from_rect();
}
sub image_motion_notify {
@@ -300,5 +306,5 @@ sub image_motion_notify {
member('button1-mask', @{$event->state}) or return;
my $point = { X => $event->x, Y => $event->y };
$current_point and %$current_point = %$point;
- update_rect();
+ update_theme_from_rect();
}