summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/printerdrake
diff options
context:
space:
mode:
authorTill Kamppeter <tkamppeter@mandriva.com>2005-09-03 13:35:02 +0000
committerTill Kamppeter <tkamppeter@mandriva.com>2005-09-03 13:35:02 +0000
commit880a8fec0248a4b5f01c7bf0dd00137109910f78 (patch)
treefc494632e65f60757e76dc8cbeee6dbe6b0914a8 /perl-install/standalone/printerdrake
parent71f0e8976966c8db44a8ef13fbe65b38b228e97f (diff)
downloaddrakx-880a8fec0248a4b5f01c7bf0dd00137109910f78.tar
drakx-880a8fec0248a4b5f01c7bf0dd00137109910f78.tar.gz
drakx-880a8fec0248a4b5f01c7bf0dd00137109910f78.tar.bz2
drakx-880a8fec0248a4b5f01c7bf0dd00137109910f78.tar.xz
drakx-880a8fec0248a4b5f01c7bf0dd00137109910f78.zip
- Fixed printer list filtering in the main window, now one can also
filter on the state field, and pressing <Enter> after typing in the filter string does not cause the filter being lost when hitting the refresh button or doing some action. - Taken care that auto-refreshing does not happen when the refresh function is running.
Diffstat (limited to 'perl-install/standalone/printerdrake')
-rwxr-xr-xperl-install/standalone/printerdrake22
1 files changed, 17 insertions, 5 deletions
diff --git a/perl-install/standalone/printerdrake b/perl-install/standalone/printerdrake
index 3ce19773e..abe8e7698 100755
--- a/perl-install/standalone/printerdrake
+++ b/perl-install/standalone/printerdrake
@@ -193,7 +193,7 @@ my $searchBox = gtkpack_(Gtk2::HBox->new(0,5),
1, Gtk2::Label->new(""),
0, Gtk2::Label->new(N("Search:")),
0, gtksignal_connect($filter = Gtk2::Entry->new,
- key_press_event => sub { $_[1]->keyval == $Gtk2::Gdk::Keysyms{Return} and Refresh($filter->get_text) }),
+ key_press_event => sub { $_[1]->keyval == $Gtk2::Gdk::Keysyms{Return} and do { $stringsearch = $filter->get_text; Refresh($stringsearch) };}),
0, my $fbut = Gtk2::Button->new(N("Apply filter")),
);
gtkappend_page(my $nb = Gtk2::Notebook->new, gtkpack(create_scrolled_window($localtree)), gtkshow(Gtk2::Label->new(N("Configured on this machine"))));
@@ -271,8 +271,10 @@ gtkset_mousecursor_normal();
my $isEmbedded = $::isEmbedded;
local $::isEmbedded = 0;
+# Auto refresh
local $SIG{ALRM} = sub { Refresh($stringsearch) };
alarm $refreshinterval;
+
$us->{wnd}->main;
ugtk2->exit;
@@ -300,13 +302,18 @@ sub RefreshLocalPrintersFull {
my @LocalReal;
foreach my $p (@printers) {
# Apply string search to all fields, not only the printer name
+ my $state = ($printer->{SPOOLER} !~ /cups/ ? N("Unknown") :
+ ((any {
+ ($_->{queuename} eq $p) &&
+ ($_->{state} eq "enabled");
+ } @allprinters) ? N("Enabled") : N("Disabled")));
my $connect = printer::main::connectionstr($printer->{configured}{$p}{queuedata}{connect});
my $model = $printer->{configured}{$p}{queuedata}{make} . ' ' .
$printer->{configured}{$p}{queuedata}{model};
my $description = $printer->{configured}{$p}{queuedata}{desc};
my $location = $printer->{configured}{$p}{queuedata}{loc};
- my $searchstr = "$p|$model|$connect|$description|$location";
- push(@LocalReal, $p) if $searchstr =~ /\Q$strfilt/i;
+ my $searchstr = "$p|$state|$model|$connect|$description|$location";
+ push(@LocalReal, $p) if !$strfilt || ($searchstr =~ /\Q$strfilt/i);
}
foreach my $p (sort { lc($a) cmp lc($b) } @LocalReal) {
my $state = ($printer->{SPOOLER} !~ /cups/ ? N("Unknown") :
@@ -336,12 +343,14 @@ sub RefreshRemotePrintersFull {
next LOOP if defined($printer->{configured}{$p->{queuename}});
# Apply string search to all fields, not only the printer name
my $queue = $p->{queuename};
+ my $state = ($p->{state} eq "enabled" ?
+ N("Enabled") : N("Disabled"));
my $server = $p->{ipp} || $printer->{remote_cups_server};
my $description = $p->{description};
my $location = $p->{location};
- my $searchstr = "$queue|$server|$description|$location";
+ my $searchstr = "$queue|$state|$server|$description|$location";
# All remaining to which the search term applies
- push(@RemoteReal, $p) if $searchstr =~ /\Q$strfilt/i;
+ push(@RemoteReal, $p) if !$strfilt || ($searchstr =~ /\Q$strfilt/i);
}
foreach my $p (sort { lc($a->{queuename}) cmp lc($b->{queuename}) }
@RemoteReal) {
@@ -360,6 +369,8 @@ sub RefreshRemotePrintersFull {
}
sub Refresh {
+ # Do not have ourselves recalled if we are not running
+ alarm 0;
my ($strfilt) = @_;
my $selection = get_selection();
printer::services::wait_for_cups();
@@ -369,6 +380,7 @@ sub Refresh {
RefreshRemotePrintersFull($strfilt, @printers);
GrayDelEdit();
set_selection($selection);
+ # Recall when refresh intervall has passed
alarm $refreshinterval;
}