Help for this page

Select Code to Download


  1. or download this
    # desensitize the save button if the entry is empty or blank
    my $text = $entry->get_text;
    $window->set_response_sensitive ('accept', $text !~ m/^\s*$/);
    $window->set_response_sensitive ('reject', TRUE);
    
  2. or download this
    my $entry = Gtk2::Entry->new();    
    $entry->set_editable(FALSE);