##// END OF EJS Templates
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes...
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@70 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r34:5daedfb035c8
Show More
PythonQtWrapper_QPixmapCache.h
35 lines | 939 B | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QPIXMAPCACHE_H
#define PYTHONQTWRAPPER_QPIXMAPCACHE_H
#include <qpixmapcache.h>
#include <QObject>
#include <PythonQt.h>
#include <QVariant>
#include <qpixmap.h>
class PythonQtShell_QPixmapCache : public QPixmapCache
{
public:
PythonQtShell_QPixmapCache():QPixmapCache(),_wrapper(NULL) {};
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QPixmapCache : public QObject
{ Q_OBJECT
public:
public slots:
QPixmapCache* new_QPixmapCache();
void delete_QPixmapCache(QPixmapCache* obj) { delete obj; }
void static_QPixmapCache_remove(const QString& key);
int static_QPixmapCache_cacheLimit();
bool static_QPixmapCache_find(const QString& key, QPixmap& arg__2);
bool static_QPixmapCache_insert(const QString& key, const QPixmap& arg__2);
void static_QPixmapCache_setCacheLimit(int arg__1);
void static_QPixmapCache_clear();
};
#endif // PYTHONQTWRAPPER_QPIXMAPCACHE_H