Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xacobeo::gobject(3pm) [debian man page]

Xacobeo::GObject(3pm)					User Contributed Perl Documentation				     Xacobeo::GObject(3pm)

NAME
Xacobeo::GObject - Build GObjects easily. SYNOPSIS
package My::Widget; use Xacobeo::GObject; Xacobeo::GObject->register_package('Gtk2::Entry' => properties => [ Glib::ParamSpec->object( 'ui-manager', 'UI Manager', "The UI Manager that provides the UI", 'Gtk2::UIManager', ['readable', 'writable'], ), ], ); # Builtin constructor my $widget = My::Widget->new(); # Set the property and fires the signal 'notify::ui-manager' $widget->set_ui_manager(Gtk2::UIManager->new); # Get the property $widget->get_ui_manager; # Direct accessor/setter (the setter doesn't fire any signal) $widget->ui_manager; DESCRIPTION
Simple framework for building GObjects. This package is very similar to "Glib::Object::Subclass" except this one create accessors and setters for the object properties. AUTHORS
Emmanuel Rodriguez <potyl@cpan.org>. COPYRIGHT AND LICENSE
Copyright (C) 2008,2009 by Emmanuel Rodriguez. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available. perl v5.14.2 2011-11-16 Xacobeo::GObject(3pm)

Check Out this Related Man Page

Xacobeo::I18n(3pm)					User Contributed Perl Documentation					Xacobeo::I18n(3pm)

NAME
Xacobeo::I18n - Utilities for internationalization (i18n). SYNOPSIS
# Initialize the i18n framework (done once) use FindBin; use Xacobeo::I18n; Xacobeo::I18n->init("$FindBin::Bin/../share/locale/"); # Import the i18n utilities (used everywhere where i18n is needed) use Xacobeo::I18n; print __("Hello world"), " "; DESCRIPTION
This package provides utilities that perform i18n. This module relies on gettext. The initialization of the i18n framework should be performed only once, preferably as soon as possible. Once the framework is initialized any module requiring to translate a string can include this module. This module exports automatically the shortcut functions used for translating messages. This is done in order to make the translation transparent. FUNCTIONS
The following functions are available: __ Translates a single string through gettext. Parameters: o $string The string to translate. __x Translates a string that uses place holders for variable substitution. Parameters: o $string The string to translate. o %values A series of key/value pairs that will be replacing the place holders. __n Translates a string in either singular or plural. Parameters: o $singular The string in its singular form (one item). o $plural The string in its plural form (more than one item). o $count The number of items. o %values A series of key/value pairs that will be replacing the place holders. __nx Translates a string in either singular or plural with variable substitution. Parameters: o $singular The string in its singular form (one item). o $plural The string in its plural form (more than one item). o $count The number of items. __xn Same as "__nx". Parameters: o $singular The string in its singular form (one item). o $plural The string in its plural form (more than one item). o $count The number of items. domain Returns the translation domain. init Initializes the i18n framework (gettext). Must be called in the fashion: Xacobeo::I18n->init($folder); Parameters: o $folder The folder where to find the translation files. For instance for the translation /usr/share/locale/fr/LC_MESSAGES/xacobeo.mo the folder /usr/share/locale has to be provided. AUTHORS
Emmanuel Rodriguez <potyl@cpan.org>. COPYRIGHT AND LICENSE
Copyright (C) 2008,2009 by Emmanuel Rodriguez. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available. perl v5.14.2 2011-11-16 Xacobeo::I18n(3pm)
Man Page