NAME
ZConf::template::GUI -
VERSION
Version 0.0.0
SYNOPSIS
Quick summary of what the module does.
Perhaps a little code snippet.
use ZConf::template::GUI;
my $foo = ZConf::template::GUI->new();
...
METHODS
new
args hash
obj
This is object returned by %%%PARENT%%%.
my $foogui=ZConf::template::GUI->new({obj=>$obj});
if($foogui->{error}){
print "Error!\n";
}
app
Runs some application.
$foogui->app;
if($foogui->{error}){
print "Error!\n";
}
hasApp
If this returns true, it means it has a application.
my $hasApp=$foogui->hasApp;
if($foogui->{error}){
print "Error!\n";
}else{
if($hasApp){
print "Yes\n";
}
}
dialogs
This returns a array of available dialogs.
my @dialogs=$foogui->dialogs;
if($foogui->{error}){
print "Error!\n";
}
windows
This returns a array of available dialogs.
my @windows=$foogui->windows;
if($foogui->{error}){
print "Error!\n";
}
errorblank
This blanks the error storage and is only meant for internal usage.
It does the following.
$self->{error}=undef;
$self->{errorString}="";
ERROR CODES
1
Failed to initiate %%%PARENT%%%.
2
Failed to initiate ZConf::GUI.
3
Failed to get the preferred.
4
Failed to initiate the backend.
5
Backend errored.
AUTHOR
%%%AUTHOR%%%, <%%%EMAIL%%%>
BUGS
Please report any bugs or feature requests to bug-zconf-devtemplate at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=ZConf-template. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc ZConf::template::GUI
You can also look for information at:
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
COPYRIGHT & LICENSE
Copyright 2009 %%%AUTHOR%%%, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.