NAME ^

examples/pni/PQt.C - Qt/Parrot Library

SYNOPSIS ^

Compile with:

    g++ -fPIC -I$QTDIR/include -L$QTDIR -c PQt.C

    gcc -shared -o libPQt.so PQt.o $QTDIR/lib/libqt.so

Or something like that...

DESCRIPTION ^

Qt Native interface for Parrot. See examples/pni/QtHelloWorld.pasm for more information.

QApplication bindings ^

QApplication *QApplication_new(void)

void QApplication_exec(QApplication *app)

void QApplication_setMainWidget(QApplication *app, QWidget *w)

QLabel bindings ^

QLabel *QLabel_new(const char *txt)

void QLabel_show(QLabel *label)

void QLabel_resize(QLabel *label, int x, int y)

SEE ALSO ^

examples/pni/QtHelloWorld.pasm, docs/pdds/pdd03_calling_conventions.pod.


parrot