parrotcode: Qt/Parrot Library | |
Contents | Examples |
examples/nci/PQt.C - Qt/Parrot Library
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...
Qt Native interface for Parrot. See examples/nci/QtHelloWorld.pasm for more information.
QApplication *QApplication_new(void)
void QApplication_exec(QApplication *app)
void QApplication_setMainWidget(QApplication *app, QWidget *w)
QLabel *QLabel_new(const char *txt)
void QLabel_show(QLabel *label)
void QLabel_resize(QLabel *label, int x, int y)
examples/nci/QtHelloWorld.pasm, docs/pdds/pdd03_calling_conventions.pod.
|