The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

QtCore

QtCore is a library for working with Qt4 QtCore in Perl.

SYNOPSIS

    use Qt;
    use Qt::QTimer;
    use Qt::QCoreApplication;

    my $app = QCoreApplication(\@ARGV);
    my $timer = QTimer();
    print "app = $app, timer = $timer\n";
    $app->connect($timer, SIGNAL('timeout()'), $app, SLOT('quit()'));
    $timer->start(2000);

    print "start (wait 2 seconds) ...\n";
    $app->exec();
    print "quit -- OK\n";
    print "\nok\n";
    
    # See other instances in examples directory.

DESCRIPTION

Creating this library we aimed to use the Perl functionality as much as possible, but to make the syntax similar to C++ Qt4. This allows to use the original Qt4 documentation. All the list classes (QVector,QList) are replaced by the Perl arrays. All the associated arrays (QMap,QHash,QPair) are replaced by Perl hashes. The classes of modules are completely coincide with the corresponding ones of C++ Qt4. One can use all the protected functions from the object classes (QObject children) except of those that use *Private classes as input parameter.

It's advisable to study the examples attached before writing programs.

EXPORT

None by default.

SEE ALSO

Qt Reference Documentation http://doc.trolltech.com/

AUTHOR

Vadim Likhota, <vadim-lvv@yandex.ru>

COPYRIGHT AND LICENSE

Copyright (C) 2007-2008 by Vadim Likhota

This library is free software; you can redistribute Perl/Qt4 modules under the GPL2 or any other Qt4 licencies.