1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
package diskdrake::removable_gtk; # $Id$
use diagnostics;
use strict;
use my_gtk qw(:helpers :wrappers :ask);
sub per_entry_action_box {
my ($box, $kind, $entry) = @_;
$_->widget->destroy foreach $box->children;
if ($entry) {
my @l = (
_("Mount point") => \&raw_hd_mount_point,
_("Options") => \&raw_hd_options,
_("Type") => \&removable_type,
);
@buttons = map_each {
my ($txt, $f) = @_;
gtksignal_connect(new Gtk::Button($txt), clicked => sub { try_('', $f, $entry) });
} group_by2 @l;
gtkadd($box, gtkadd(new Gtk::Frame(_("Choose action")),
createScrolledWindow(gtkpack__(new Gtk::VBox(0,0), @buttons)))) if @buttons;
} else {
my $txt = _("Please click on a media");
gtkpack($box, gtktext_insert(new Gtk::Text, $txt));
}
}
|