in reply to Qt5 and perl

Hi, your question is lazy. Who knows what "Qt5" is? I didn't, but I know that the place where stable Perl initiatives can be found is the CPAN. So I looked there by searching in the search box for "QT5."

This led me to QMake::Project, the documentation of which states, in part:

COMPATIBILITY

This module should work with qmake from Qt 3, Qt 4 and Qt 5.

Hope this helps!


The way forward always starts with a minimal test.

Replies are listed 'Best First'.
Re^2: Qt5 and perl
by ptizoom (Scribe) on Nov 12, 2018 at 18:53 UTC
      now, it seems to me that the project: https://github.com/chrisburel/perlqt give this perl porting another puff of smoke...but it is not the glossed item yet. one can code...
      use PerlQt5::QtCore; use PerlQt5::QtGui; use PerlQt5::QtWidgets; package MyApp; use base qw(PerlQt5::QtCore::QCoreApplication); package MyPushButton; use base qw(PerlQt5::QtWidgets::QPushButton); package main; my $app = MyApp->new(scalar @ARGV, \@ARGV); $app = PerlQt5::QtWidgets::QApplication->new( 'Hello, World!', undef); # but crash here with error ... QWidget: Cannot create a QWidget witho +ut QApplication my $button = PerlQt5::QtWidgets::QPushButton->new( 'Hello, World!', un +def);
      yes, I am noy sure how to instanciate a global QApplication ?
        Just started with working with Perl Tk. I think there is interests in this subject, especially to overcome the impression that, Perl is not vibrant and state of the art or leading edge. I disagree with this view, but the argument is made by younger users, which don’t use Perl or don’t even want to spend the time to lern it. The feel much more then the look is determined by the GUI.