##// END OF EJS Templates
added experimental compacting to avoid generation of hundreds of files that all include the same stuff...
added experimental compacting to avoid generation of hundreds of files that all include the same stuff git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@128 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r92:f97ec94c87a9
Show More
PythonQtWrapper_QDesktopServices.cpp
38 lines | 1.2 KiB | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_gui / PythonQtWrapper_QDesktopServices.cpp
#include "PythonQtWrapper_QDesktopServices.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qobject.h>
#include <qurl.h>
QDesktopServices* PythonQtWrapper_QDesktopServices::new_QDesktopServices()
{
return new PythonQtShell_QDesktopServices(); }
bool PythonQtWrapper_QDesktopServices::static_QDesktopServices_openUrl(const QUrl& url)
{
return (QDesktopServices::openUrl(url));
}
void PythonQtWrapper_QDesktopServices::static_QDesktopServices_unsetUrlHandler(const QString& scheme)
{
(QDesktopServices::unsetUrlHandler(scheme));
}
QString PythonQtWrapper_QDesktopServices::static_QDesktopServices_storageLocation(QDesktopServices::StandardLocation type)
{
return (QDesktopServices::storageLocation(type));
}
QString PythonQtWrapper_QDesktopServices::static_QDesktopServices_displayName(QDesktopServices::StandardLocation type)
{
return (QDesktopServices::displayName(type));
}
void PythonQtWrapper_QDesktopServices::static_QDesktopServices_setUrlHandler(const QString& scheme, QObject* receiver, const char* method)
{
(QDesktopServices::setUrlHandler(scheme, receiver, method));
}