##// END OF EJS Templates
added PyLauncher example...
added PyLauncher example added hadError() to scripting console added addSysPath() git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@50 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r14:59f352c6d9fb
Show More
PythonQtWrapper_QDesktopServices.cpp
35 lines | 1.0 KiB | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_gui / PythonQtWrapper_QDesktopServices.cpp
#include "PythonQtWrapper_QDesktopServices.h"
#include <QVariant>
#include <qobject.h>
#include <qurl.h>
QDesktopServices* PythonQtWrapper_QDesktopServices::new_QDesktopServices()
{
return new QDesktopServices(); }
QString PythonQtWrapper_QDesktopServices::static_QDesktopServices_displayName(QDesktopServices::StandardLocation type)
{
return QDesktopServices::displayName(type);
}
bool PythonQtWrapper_QDesktopServices::static_QDesktopServices_openUrl(const QUrl& url)
{
return QDesktopServices::openUrl(url);
}
void PythonQtWrapper_QDesktopServices::static_QDesktopServices_setUrlHandler(const QString& scheme, QObject* receiver, const char* method)
{
QDesktopServices::setUrlHandler(scheme, receiver, method);
}
QString PythonQtWrapper_QDesktopServices::static_QDesktopServices_storageLocation(QDesktopServices::StandardLocation type)
{
return QDesktopServices::storageLocation(type);
}
void PythonQtWrapper_QDesktopServices::static_QDesktopServices_unsetUrlHandler(const QString& scheme)
{
QDesktopServices::unsetUrlHandler(scheme);
}