##// 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_QInputContext.h
77 lines | 2.8 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QINPUTCONTEXT_H
#define PYTHONQTWRAPPER_QINPUTCONTEXT_H
#include <qinputcontext.h>
#include <QObject>
#include <PythonQt.h>
#include <QTextFormat>
#include <QVariant>
#include <qaction.h>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qevent.h>
#include <qfont.h>
#include <qinputcontext.h>
#include <qlist.h>
#include <qobject.h>
#include <qtextformat.h>
#include <qwidget.h>
class PythonQtShell_QInputContext : public QInputContext
{
public:
PythonQtShell_QInputContext(QObject* parent = 0):QInputContext(parent),_wrapper(NULL) {};
virtual QList<QAction* > actions();
virtual void childEvent(QChildEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual bool filterEvent(const QEvent* event);
virtual QFont font() const;
virtual QString identifierName();
virtual bool isComposing() const;
virtual QString language();
virtual void mouseHandler(int x, QMouseEvent* event);
virtual void reset();
virtual void setFocusWidget(QWidget* w);
virtual void timerEvent(QTimerEvent* arg__1);
virtual void update();
virtual void widgetDestroyed(QWidget* w);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QInputContext : public QInputContext
{ public:
inline void promoted_widgetDestroyed(QWidget* w) { QInputContext::widgetDestroyed(w); }
inline bool promoted_filterEvent(const QEvent* event) { return QInputContext::filterEvent(event); }
inline QFont promoted_font() const { return QInputContext::font(); }
inline void promoted_mouseHandler(int x, QMouseEvent* event) { QInputContext::mouseHandler(x, event); }
inline void promoted_update() { QInputContext::update(); }
inline QList<QAction* > promoted_actions() { return QInputContext::actions(); }
};
class PythonQtWrapper_QInputContext : public QObject
{ Q_OBJECT
public:
Q_ENUMS(StandardFormat )
enum StandardFormat{
PreeditFormat = QInputContext::PreeditFormat, SelectionFormat = QInputContext::SelectionFormat};
public slots:
QInputContext* new_QInputContext(QObject* parent = 0);
void delete_QInputContext(QInputContext* obj) { delete obj; }
void widgetDestroyed(QInputContext* theWrappedObject, QWidget* w);
QWidget* focusWidget(QInputContext* theWrappedObject) const;
bool filterEvent(QInputContext* theWrappedObject, const QEvent* event);
QFont font(QInputContext* theWrappedObject) const;
void mouseHandler(QInputContext* theWrappedObject, int x, QMouseEvent* event);
void update(QInputContext* theWrappedObject);
QList<QAction* > actions(QInputContext* theWrappedObject);
void sendEvent(QInputContext* theWrappedObject, const QInputMethodEvent& event);
QTextFormat standardFormat(QInputContext* theWrappedObject, QInputContext::StandardFormat s) const;
};
#endif // PYTHONQTWRAPPER_QINPUTCONTEXT_H