#!/usr/bin/perl -w
# This file was preprocessed, do not edit!
package Debconf::Element::Gnome::Select;
use strict;
use Gtk2;
use Gnome2;
use utf8;
use Debconf::Encoding qw(to_Unicode);
use base qw(Debconf::Element::Gnome Debconf::Element::Select);
sub init {
	my $this=shift;
	my $default=$this->translate_default;
	my @choices= map { to_Unicode($_) } $this->question->choices_split;
	$this->SUPER::init(@_);
	$this->widget(Gtk2::Combo->new);
	$this->widget->show;
	$this->widget->set_popdown_strings(@choices);
	$this->widget->set_value_in_list(1, 0);
	$this->widget->entry->set_editable(0);
	if (defined($default) and length($default) != 0) {
		$this->widget->entry->set_text(to_Unicode($default));
	}
	else {
		$this->widget->entry->set_text($choices[0]);
	}
	$this->adddescription;
	$this->addwidget($this->widget);
	$this->tip( $this->widget->entry );
	$this->addhelp;
}
sub value {
	my $this=shift;
	return $this->translate_to_C_uni($this->widget->entry->get_chars(0, -1));
}
1
