Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

glib::log(3) [suse man page]

Glib::Log(3)						User Contributed Perl Documentation					      Glib::Log(3)

NAME
Glib::Log - A flexible logging mechanism METHODS
scalar = Glib::Log->set_always_fatal ($fatal_mask) o $fatal_mask (scalar) Glib->critical ($domain, $message) o $domain (string or undef) o $message (string) Glib->error ($domain, $message) o $domain (string or undef) o $message (string) scalar = Glib::Log->set_fatal_mask ($log_domain, $fatal_mask) o $log_domain (string) o $fatal_mask (scalar) integer = Glib::Log->set_handler ($log_domain, $log_levels, $log_func, $user_data=undef) o $log_domain (string or undef) name of the domain to handle with this callback. o $log_levels (Glib::LogLevelFlags) log levels to handle with this callback o $log_func (subroutine) handler function o $user_data (scalar) Glib->log ($log_domain, $log_level, $message) o $log_domain (string or undef) o $log_level (scalar) o $message (string) Glib->message ($domain, $message) o $domain (string or undef) o $message (string) Glib::Log->remove_handler ($log_domain, $handler_id) o $log_domain (string or undef) o $handler_id (integer) as returned by "set_handler" Glib->warning ($domain, $message) o $domain (string or undef) o $message (string) ENUMS AND FLAGS
flags Glib::LogLevelFlags o 'recursion' / 'G_LOG_FLAG_RECURSION' o 'fatal' / 'G_LOG_FLAG_FATAL' o 'error' / 'G_LOG_LEVEL_ERROR' o 'critical' / 'G_LOG_LEVEL_CRITICAL' o 'warning' / 'G_LOG_LEVEL_WARNING' o 'message' / 'G_LOG_LEVEL_MESSAGE' o 'info' / 'G_LOG_LEVEL_INFO' o 'debug' / 'G_LOG_LEVEL_DEBUG' o 'fatal-mask' / 'G_LOG_FATAL_MASK' SEE ALSO
Glib COPYRIGHT
Copyright (C) 2003-2009 by the gtk2-perl team. This software is licensed under the LGPL. See Glib for a full notice. perl v5.12.1 2010-07-05 Glib::Log(3)

Check Out this Related Man Page

Gtk2::Builder(3)					User Contributed Perl Documentation					  Gtk2::Builder(3)

NAME
Gtk2::Builder HIERARCHY
Glib::Object +----Gtk2::Builder METHODS
builder = Gtk2::Builder->new integer = $builder->add_from_file ($filename) o $filename (localized file name) May croak with a Glib::Error in $@ on failure. integer = $builder->add_from_string ($buffer) o $buffer (string) May croak with a Glib::Error in $@ on failure. integer = $builder->add_objects_from_string ($buffer, $first_object_id, ...) o $buffer (string) o $first_object_id (string) o ... (list) Since: gtk+ 2.14 $builder->connect_signals ($user_data) $builder->connect_signals ($user_data, $package) $builder->connect_signals ($user_data, %handlers) There are four ways to let Gtk2::Builder do the signal connecting work for you: "$builder->connect_signals ($user_data)" When invoked like this, Gtk2::Builder will connect signals to functions in the calling package. The callback names are specified in the UI description. "$builder->connect_signals ($user_data, $package)" When invoked like this, Gtk2::Builder will connect signals to functions in the package $package. "$builder->connect_signals ($user_data, $object)" When invoked like this, Gtk2::Builder will connect signals to method calls against the object $object. "$builder->connect_signals ($user_data, %handlers)" When invoked like this, %handlers is used as a mapping from handler names to code references. $builder->connect_signals_full ($func, $user_data=undef) o $func (scalar) o $user_data (scalar) object = $builder->get_object ($name) o $name (string) list = $builder->get_objects string or undef = $builder->get_translation_domain $builder->set_translation_domain ($domain) o $domain (string or undef) PROPERTIES
'translation-domain' (string : readable / writable / private) The translation domain used by gettext SEE ALSO
Gtk2, Glib::Object COPYRIGHT
Copyright (C) 2003-2008 by the gtk2-perl team. This software is licensed under the LGPL. See Gtk2 for a full notice. perl v5.12.1 2010-07-05 Gtk2::Builder(3)
Man Page