##// END OF EJS Templates
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well...
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@52 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r16:c68e0aff542c
Show More
PythonQtWrapper_QLineEdit.h
95 lines | 4.0 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QLINEEDIT_H
#define PYTHONQTWRAPPER_QLINEEDIT_H
#include <qlineedit.h>
#include <QObject>
#include <QVariant>
#include <qaction.h>
#include <qbitmap.h>
#include <qbytearray.h>
#include <qcompleter.h>
#include <qcoreevent.h>
#include <qcursor.h>
#include <qevent.h>
#include <qfont.h>
#include <qicon.h>
#include <qinputcontext.h>
#include <qkeysequence.h>
#include <qlayout.h>
#include <qlineedit.h>
#include <qlist.h>
#include <qlocale.h>
#include <qmenu.h>
#include <qobject.h>
#include <qpaintdevice.h>
#include <qpaintengine.h>
#include <qpainter.h>
#include <qpalette.h>
#include <qpoint.h>
#include <qrect.h>
#include <qregion.h>
#include <qsize.h>
#include <qsizepolicy.h>
#include <qstyle.h>
#include <qstyleoption.h>
#include <qvalidator.h>
#include <qwidget.h>
class PythonQtWrapper_QLineEdit : public QObject
{ Q_OBJECT
public:
public slots:
QLineEdit* new_QLineEdit(QWidget* parent = 0);
QLineEdit* new_QLineEdit(const QString& arg__1, QWidget* parent = 0);
void delete_QLineEdit(QLineEdit* obj) { delete obj; }
Qt::Alignment alignment(QLineEdit* theWrappedObject) const;
void backspace(QLineEdit* theWrappedObject);
QCompleter* completer(QLineEdit* theWrappedObject) const;
QMenu* createStandardContextMenu(QLineEdit* theWrappedObject);
void cursorBackward(QLineEdit* theWrappedObject, bool mark, int steps = 1);
void cursorForward(QLineEdit* theWrappedObject, bool mark, int steps = 1);
int cursorPosition(QLineEdit* theWrappedObject) const;
int cursorPositionAt(QLineEdit* theWrappedObject, const QPoint& pos);
void cursorWordBackward(QLineEdit* theWrappedObject, bool mark);
void cursorWordForward(QLineEdit* theWrappedObject, bool mark);
void del(QLineEdit* theWrappedObject);
void deselect(QLineEdit* theWrappedObject);
QString displayText(QLineEdit* theWrappedObject) const;
bool dragEnabled(QLineEdit* theWrappedObject) const;
QLineEdit::EchoMode echoMode(QLineEdit* theWrappedObject) const;
void end(QLineEdit* theWrappedObject, bool mark);
bool event(QLineEdit* theWrappedObject, QEvent* arg__1);
bool hasAcceptableInput(QLineEdit* theWrappedObject) const;
bool hasFrame(QLineEdit* theWrappedObject) const;
bool hasSelectedText(QLineEdit* theWrappedObject) const;
void home(QLineEdit* theWrappedObject, bool mark);
QString inputMask(QLineEdit* theWrappedObject) const;
QVariant inputMethodQuery(QLineEdit* theWrappedObject, Qt::InputMethodQuery arg__1) const;
void insert(QLineEdit* theWrappedObject, const QString& arg__1);
bool isModified(QLineEdit* theWrappedObject) const;
bool isReadOnly(QLineEdit* theWrappedObject) const;
bool isRedoAvailable(QLineEdit* theWrappedObject) const;
bool isUndoAvailable(QLineEdit* theWrappedObject) const;
int maxLength(QLineEdit* theWrappedObject) const;
QSize minimumSizeHint(QLineEdit* theWrappedObject) const;
QString selectedText(QLineEdit* theWrappedObject) const;
int selectionStart(QLineEdit* theWrappedObject) const;
void setAlignment(QLineEdit* theWrappedObject, Qt::Alignment flag);
void setCompleter(QLineEdit* theWrappedObject, QCompleter* completer);
void setCursorPosition(QLineEdit* theWrappedObject, int arg__1);
void setDragEnabled(QLineEdit* theWrappedObject, bool b);
void setEchoMode(QLineEdit* theWrappedObject, QLineEdit::EchoMode arg__1);
void setFrame(QLineEdit* theWrappedObject, bool arg__1);
void setInputMask(QLineEdit* theWrappedObject, const QString& inputMask);
void setMaxLength(QLineEdit* theWrappedObject, int arg__1);
void setModified(QLineEdit* theWrappedObject, bool arg__1);
void setReadOnly(QLineEdit* theWrappedObject, bool arg__1);
void setSelection(QLineEdit* theWrappedObject, int arg__1, int arg__2);
void setValidator(QLineEdit* theWrappedObject, const QValidator* arg__1);
QSize sizeHint(QLineEdit* theWrappedObject) const;
QString text(QLineEdit* theWrappedObject) const;
const QValidator* validator(QLineEdit* theWrappedObject) const;
};
#endif // PYTHONQTWRAPPER_QLINEEDIT_H