App-Chart
view release on metacpan or search on metacpan
lib/App/Chart/Gtk2/Diagnostics.pm view on Meta::CPAN
# Copyright 2007, 2008, 2009, 2010, 2011, 2016 Kevin Ryde
# This file is part of Chart.
#
# Chart is free software; you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
# Foundation; either version 3, or (at your option) any later version.
#
# Chart is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along
# with Chart. If not, see <http://www.gnu.org/licenses/>.
package App::Chart::Gtk2::Diagnostics;
use 5.010;
use strict;
use warnings;
use List::Util qw(min max);
use Scalar::Util;
use Gtk2;
use Locale::TextDomain ('App-Chart');
use Gtk2::Ex::Units;
use App::Chart;
# uncomment this to run the ### lines
#use Smart::Comments;
use Glib::Object::Subclass 'Gtk2::Dialog';
sub popup {
my ($class, $parent) = @_;
require App::Chart::Gtk2::Ex::ToplevelBits;
my $self = App::Chart::Gtk2::Ex::ToplevelBits::popup ($class,
screen => $parent);
$self->refresh;
return $self;
}
Gtk2::Rc->parse_string (<<'HERE');
style "Chart_fixed_width_font" {
font_name = "Courier 12"
}
widget_class "App__Chart__Gtk2__Diagnostics.*.GtkTextView" style:gtk "Chart_fixed_width_font"
HERE
use constant RESPONSE_REFRESH => 0;
sub INIT_INSTANCE {
my ($self) = @_;
my $vbox = $self->vbox;
$self->set_title (__('Chart: Diagnostics'));
$self->add_buttons ('gtk-close' => 'close',
'gtk-refresh' => RESPONSE_REFRESH);
$self->signal_connect (response => \&_do_response);
my $scrolled = Gtk2::ScrolledWindow->new;
$scrolled->set_policy ('never', 'automatic');
$vbox->pack_start ($scrolled, 1,1,0);
my $textbuf = $self->{'textbuf'} = Gtk2::TextBuffer->new;
$textbuf->set_text ('');
my $textview = $self->{'textview'}
= Gtk2::TextView->new_with_buffer ($textbuf);
$textview->set (wrap_mode => 'char',
editable => 0);
$scrolled->add ($textview);
$vbox->show_all;
# with a sensible rows and columns size for the TextView
Gtk2::Ex::Units::set_default_size_with_subsizes
($self,
[$textview, '60 ems', -1],
[$scrolled, -1, '40 lines']);
# limit to 80% screen height
my ($width, $height) = $self->get_default_size;
$height = min ($height, 0.8 * $self->get_screen->get_height);
$self->set_default_size ($width, $height);
}
sub _do_response {
my ($self, $response) = @_;
if ($response eq RESPONSE_REFRESH) {
$self->refresh;
} elsif ($response eq 'close') {
# close signal as per a keyboard Esc close; it defaults to raising
# 'delete-event', which in turn defaults to a destroy
$self->signal_emit ('close');
lib/App/Chart/Gtk2/Diagnostics.pm view on Meta::CPAN
}
} else {
$ret = " no resources in use\n";
}
}
1;
}) {
(my $err = $@) =~ s/^/ /mg;
$ret .= $err;
}
return $ret;
}
#------------------------------------------------------------------------------
# generic helpers
# return true if $class is not a subclass of anything in $class_list (an
# arrayref)
sub is_toplevel_class {
my ($class, $class_list) = @_;
return ! List::Util::first {$class ne $_ && $class->isa($_)} @$class_list;
}
# return a string of the contents of a hash (passed as a hashref)
sub hash_format {
my ($h) = @_;
my $nf = App::Chart::number_formatter();
require Scalar::Util;
my %mung;
foreach my $key (keys %$h) {
my $value = $h->{$key};
if (Scalar::Util::looks_like_number ($value)) {
$mung{$key} = $nf->format_number ($value);
} elsif (ref ($_) && ref($_) eq 'HASH') {
$mung{$key} = "subhash, " . scalar(keys %{$_}) . " keys";
} else {
$mung{$key} = $value;
}
}
my $field_width = max (map {length} keys %mung);
my $value_width = max (map {length} values %mung);
return join ('', map { sprintf (" %-*s %*s\n",
$field_width, $_,
$value_width, $mung{$_})
} sort keys %mung);
}
1;
__END__
=head1 NAME
App::Chart::Gtk2::Diagnostics -- diagnostics dialog module
=head1 SYNOPSIS
use App::Chart::Gtk2::Diagnostics;
App::Chart::Gtk2::Diagnostics->popup();
=head1 WIDGET HIERARCHY
C<App::Chart::Gtk2::Diagnostics> is a subclass of C<Gtk2::Dialog>.
Gtk2::Widget
Gtk2::Container
Gtk2::Bin
Gtk2::Window
Gtk2::Dialog
App::Chart::Gtk2::Diagnostics
=head1 DESCRIPTION
A C<App::Chart::Gtk2::Diagnostics> dialog shows various bits of diagnostic
information like memory use, database size, etc.
=head1 FUNCTIONS
=over 4
=item C<< App::Chart::Gtk2::Diagnostics->popup() >>
Present a C<Diagnostics> dialog to the user. C<popup()> creates and then
re-uses a single dialog, re-presenting it (C<< $widget->present() >>) and
refreshing its contents each time. A single diagnostics dialog like this
will be enough for most uses.
=item C<< $dialog = App::Chart::Gtk2::Diagnostics->new() >>
Create and return a new Diagnostics dialog widget. Initially it's empty and
C<refresh()> must be called to put some diagnostic information in it.
=item C<< $diagnostics->refresh() >>
Refresh the information displayed in C<$diagnostics>. The "Refresh" button
in the dialog calls this.
=item C<< $str = App::Chart::Gtk2::Diagnostics->str() >>
Return the diagnostics in string form, as would be shown in a dialog. This
just makes a string, no dialog is opened, created or updated.
=back
=head1 SEE ALSO
L<App::Chart>, L<Gtk2::Dialog>
=head1 HOME PAGE
L<http://user42.tuxfamily.org/chart/index.html>
=head1 LICENCE
Copyright 2007, 2008, 2009, 2010, 2011, 2016 Kevin Ryde
Chart is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
Chart is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along with
Chart; see the file F<COPYING>. Failing that, see
L<http://www.gnu.org/licenses/>.
=cut
# Local variables:
# compile-command: "perl -MApp::Chart::Gtk2::Diagnostics -e 'print App::Chart::Gtk2::Diagnostics->str'"
# End:
( run in 0.663 second using v1.01-cache-2.11-cpan-364913b4093 )