##// END OF EJS Templates
Added an example QFileImportInterface which doesn't work yet!...
Added an example QFileImportInterface which doesn't work yet! git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@42 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r7:404e8f96a20b
r7:404e8f96a20b
Show More
CPPPyWrapperExample.cpp
49 lines | 2.0 KiB | text/x-c | CppLexer
ezust
- Added CHANGELOG...
r2 #include <PythonQt.h>
#include <QtGui>
ezust
Added an example QFileImportInterface which doesn't work yet!...
r7 #include "QFileImportInterface.h"
ezust
- Added CHANGELOG...
r2 int main (int argc, char* argv[]) {
QApplication app(argc, argv);
PythonQt::init();
PythonQtObjectPtr mainModule = PythonQt::self()->getMainModule();
ezust
Added an example QFileImportInterface which doesn't work yet!...
r7 mainModule.evalScript(QString("import sys\n"));
ezust
- Added CHANGELOG...
r2 Q_ASSERT(!mainModule.isNull());
{
// evaluate a python file embedded in executable as resource:
mainModule.evalFile(":eyed3tagger.py");
ezust
Documentation updates only. No changes to code....
r6 // create an object, hold onto its reference
ezust
- Added CHANGELOG...
r2 PythonQtObjectPtr tag = mainModule.evalScript("EyeD3Tagger()\n", Py_eval_input);
Q_ASSERT(!tag.isNull());
tag.call("setFileName", QVariantList() << "t.mp3");
QVariant fn = tag.call("fileName", QVariantList());
Q_ASSERT(fn.toString() == QString("t.mp3"));
ezust
Documentation updates only. No changes to code....
r6 // tag goes out of scope, reference count decremented.
ezust
- Added CHANGELOG...
r2 }
qDebug() << "test1";
ezust
Added an example QFileImportInterface which doesn't work yet!...
r7 /*
{
// Allow the python system path to recognize QFile paths in the sys.path
QFileImportInterface qfii;
// append the Qt resource root directory to the sys.path
mainModule.evalScript("sys.path.append(':')\n");
mainModule.evalScript("import eyed3tagger\n");
PythonQtObjectPtr tag = mainModule.evalScript("eyed3tagger.EyeD3Tagger()\n", Py_eval_input);
Q_ASSERT(!tag.isNull());
tag.call("setFileName", QVariantList() << "t.mp3");
QVariant fn = tag.call("fileName", QVariantList());
Q_ASSERT(fn.toString() == QString("t.mp3"));
}
qDebug() << "test2"; */
ezust
- Added CHANGELOG...
r2 { // alternative using import and loading it as a real module from sys.path
// import sys first
mainModule.evalScript(QString("sys.path.append('%1')\n").arg(QDir::currentPath()));
mainModule.evalScript("import eyed3tagger\n");
PythonQtObjectPtr tag = mainModule.evalScript("eyed3tagger.EyeD3Tagger()\n", Py_eval_input);
Q_ASSERT(!tag.isNull());
tag.call("setFileName", QVariantList() << "t.mp3");
QVariant fn = tag.call("fileName", QVariantList());
Q_ASSERT(fn.toString() == QString("t.mp3"));
}
qDebug() << "finished";
return 0;
}