=head1 NAME
AnyEvent::Impl::Qt - AnyEvent adaptor for Qt
=head1 SYNOPSIS
use AnyEvent;
use Qt;
Qt::Application \@ARGV; # REQUIRED!
# this module gets loaded automatically as required
=head1 DESCRIPTION
This module provides transparent support for AnyEvent. You don't have
to do anything to make Qt work with AnyEvent except by loading Qt
before creating the first AnyEvent watcher I<and instantiating the
Qt::Application object>. Failure to do so will result in segfaults,
which is why this model doesn't work as a default model and will not be
autoprobed (but it will be autodetected when the main program uses Qt).
Qt suffers from the same limitations as Event::Lib and Tk, the workaround
is also the same (duplicating file descriptors).
Avoid Qt if you can.
=cut
no warnings;
use strict;
package AnyEvent::Impl::Qt::Timer;
use Qt;
use Qt::isa qw(Qt::Timer);
use Qt::slots cb => [];
# having to go through these contortions just to get a timer event is
# considered an advantage over other gui toolkits how?
sub NEW {
my ($class, $after, $cb) = @_;
shift->SUPER::NEW;
this->{cb} = $cb;
this->connect (this, SIGNAL "timeout()", SLOT "cb()");
this->start ($after * 1000, 1);
}
sub cb {
(delete this->{cb})->();
}
sub DESTROY {
$_[0]->stop;
}
package AnyEvent::Impl::Qt::Io;
use Qt;
use Qt::isa qw(Qt::SocketNotifier); # Socket? what where they smoking
use Qt::slots cb => [];
sub NEW {
my ($class, $fh, $mode, $cb) = @_;
shift->SUPER::NEW (fileno $fh, $mode);
this->{fh} = $fh;
this->{cb} = $cb;
this->connect (this, SIGNAL "activated(int)", SLOT "cb()");
}
sub cb {
this->setEnabled (0); # required according to the docs. heavy smoking required.
this->{cb}->();
this->setEnabled (1);
}
package AnyEvent::Impl::Qt;
use Qt;
use AnyEvent::Impl::Qt::Timer;
use AnyEvent::Impl::Qt::Io;
sub io {
my ($class, %arg) = @_;
# cygwin requires the fh mode to be matching, unix doesn't
my ($qt, $mode) = $arg{poll} eq "r" ? (Qt::SocketNotifier::Read (), "<")
: $arg{poll} eq "w" ? (Qt::SocketNotifier::Write(), ">")
: Carp::croak "AnyEvent->io requires poll set to either 'r' or 'w'";
# work around these bugs in Qt:
# - adding a callback might destroy other callbacks
# - only one callback per fd/poll combination
open my $fh2, "$mode&" . fileno $arg{fh}
or die "cannot dup() filehandle: $!";
AnyEvent::Impl::Qt::Io $fh2, $qt, $arg{cb}
}
=1= |