#!/usr/bin/perl -w
# This file was preprocessed, do not edit directly.
package Debconf::Element::Gnome::Select;
use strict;
use Gtk;
use Gnome;
use base qw(Debconf::Element::Gnome Debconf::Element::Select);
sub init {
	my $this=shift;
	my $default=$this->translate_default;
	my @choices=$this->question->choices_split;
	$this->SUPER::init(@_);
	$this->widget(Gtk::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($default);
	}
	else {
		$this->widget->entry->set_text($choices[0]);
	}
	$this->adddescription;
	$this->addwidget($this->widget);
	$this->addbutton;
}
sub value {
	my $this=shift;
	my @choices=$this->question->choices_split;
	return $this->translate_to_C($this->widget->entry->get_chars(0, -1));
}
1
