summaryrefslogtreecommitdiffstats
path: root/perl-install/Xconfig
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-08-08 18:53:17 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-08-08 18:53:17 +0000
commit9aa1aa83f3e46a0ae1964a019b8a31354eff127c (patch)
tree6433059d9f1f217d0c821e9a01ca0dcfda9396ef /perl-install/Xconfig
parentde8e97a540900e64701063a58c47d95017c62b11 (diff)
downloaddrakx-backup-do-not-use-9aa1aa83f3e46a0ae1964a019b8a31354eff127c.tar
drakx-backup-do-not-use-9aa1aa83f3e46a0ae1964a019b8a31354eff127c.tar.gz
drakx-backup-do-not-use-9aa1aa83f3e46a0ae1964a019b8a31354eff127c.tar.bz2
drakx-backup-do-not-use-9aa1aa83f3e46a0ae1964a019b8a31354eff127c.tar.xz
drakx-backup-do-not-use-9aa1aa83f3e46a0ae1964a019b8a31354eff127c.zip
handle the pb of resolutions where X doesn't imply Y (eg: 1280x1024 and 1280x960)
Diffstat (limited to 'perl-install/Xconfig')
-rw-r--r--perl-install/Xconfig/resolution_and_depth.pm28
1 files changed, 19 insertions, 9 deletions
diff --git a/perl-install/Xconfig/resolution_and_depth.pm b/perl-install/Xconfig/resolution_and_depth.pm
index 500b431c1..110448e98 100644
--- a/perl-install/Xconfig/resolution_and_depth.pm
+++ b/perl-install/Xconfig/resolution_and_depth.pm
@@ -161,7 +161,8 @@ sub choices {
#- finding it in @resolutions (well @matching)
#- (that way, we check it exists, and we get field "bios" for fbdev)
- my ($default_resolution) = grep { $_->{Depth} eq $Depth } @matching;
+ my @default_resolutions = grep { $_->{Depth} eq $Depth } @matching;
+ my $default_resolution = first(grep { $resolution_wanted->{Y} eq $_->{Y} } @default_resolutions) || $default_resolutions[0];
$default_resolution, @resolutions;
}
@@ -197,10 +198,9 @@ sub configure_auto_install {
sub choose_gtk {
my ($card, $default_resolution, @resolutions) = @_;
- my ($chosen_x_res, $chosen_Depth) = @$default_resolution{'X', 'Depth'};
+ my ($chosen_x_res, $chosen_y_res, $chosen_Depth) = @$default_resolution{'X', 'Y', 'Depth'};
$chosen_x_res ||= 640;
- my %x_res2y_res = map { $_->{X} => $_->{Y} } @resolutions;
my %x_res2depth; push @{$x_res2depth{$_->{X}}}, $_->{Depth} foreach @resolutions;
my %depth2x_res; push @{$depth2x_res{$_->{Depth}}}, $_->{X} foreach @resolutions;
@@ -238,10 +238,17 @@ sub choose_gtk {
my $pixmap_mo;
my $set_chosen_x_res = sub {
$chosen_x_res = $_[0];
+ if ($_[1]) {
+ $chosen_y_res = $_[1];
+ } else {
+ #- take one
+ my ($one) = grep { $_->{X} eq $chosen_x_res } @resolutions;
+ $chosen_y_res = $one->{Y};
+ }
my $image = $monitor_images_x_res{$chosen_x_res} or internal_error("no image for resolution $chosen_x_res");
$pixmap_mo ? $pixmap_mo->set($image->[0], $image->[1]) : ($pixmap_mo = new Gtk::Pixmap($image->[0], $image->[1]));
};
- $set_chosen_x_res->($chosen_x_res);
+ $set_chosen_x_res->($chosen_x_res, $chosen_y_res);
gtkadd($W->{window},
gtkpack_($W->create_box_with_title(_("Choose the resolution and the color depth"),
@@ -264,6 +271,7 @@ sub choose_gtk {
$depth_combo->set_use_arrows_always(1);
$depth_combo->entry->set_editable(0);
$depth_combo->set_popdown_strings(map { translate($depth2text{$_}) } ikeys %depth2x_res);
+ $depth_combo->entry->set_usize(220, 0);
$depth_combo->entry->signal_connect(changed => sub {
my %txt2depth = reverse %depth2text;
my $s = $depth_combo->entry->get_text;
@@ -277,10 +285,10 @@ sub choose_gtk {
$x_res_combo->disable_activate;
$x_res_combo->set_use_arrows_always(1);
$x_res_combo->entry->set_editable(0);
- $x_res_combo->set_popdown_strings(map { $_ . "x" . $x_res2y_res{$_} } ikeys %x_res2y_res);
+ $x_res_combo->set_popdown_strings(uniq map { "$_->{X}x$_->{Y}" } sort { $a->{X} <=> $b->{X} } @resolutions);
$x_res_combo->entry->signal_connect(changed => sub {
- $x_res_combo->entry->get_text =~ /(.*?)x/;
- $set_chosen_x_res->($1);
+ $x_res_combo->entry->get_text =~ /(\d+)x(\d+)/;
+ $set_chosen_x_res->($1, $2);
if (!member($chosen_Depth, @{$x_res2depth{$chosen_x_res}})) {
$set_chosen_Depth->(max(@{$x_res2depth{$chosen_x_res}}));
@@ -289,10 +297,12 @@ sub choose_gtk {
$set_chosen_Depth->($chosen_Depth);
$W->{ok}->grab_focus;
- $x_res_combo->entry->set_text($chosen_x_res . "x" . $x_res2y_res{$chosen_x_res});
+ $x_res_combo->entry->set_text($chosen_x_res . "x" . $chosen_y_res);
$W->main or return;
- first(grep { $_->{X} == $chosen_x_res && $_->{Depth} == $chosen_Depth } @resolutions);
+ first(grep { $_->{X} == $chosen_x_res &&
+ $_->{Y} == $chosen_y_res &&
+ $_->{Depth} == $chosen_Depth } @resolutions);
}
1;