##// 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_QFontComboBox.h
60 lines | 1.9 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QFONTCOMBOBOX_H
#define PYTHONQTWRAPPER_QFONTCOMBOBOX_H
#include <qfontcombobox.h>
#include <QObject>
#include <QVariant>
#include <qabstractitemdelegate.h>
#include <qabstractitemmodel.h>
#include <qabstractitemview.h>
#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 <qfontcombobox.h>
#include <qicon.h>
#include <qinputcontext.h>
#include <qkeysequence.h>
#include <qlayout.h>
#include <qlineedit.h>
#include <qlist.h>
#include <qlocale.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 <qstringlist.h>
#include <qstyle.h>
#include <qstyleoption.h>
#include <qvalidator.h>
#include <qwidget.h>
class PythonQtWrapper_QFontComboBox : public QObject
{ Q_OBJECT
public:
Q_ENUMS(FontFilter )
enum FontFilter{
AllFonts = QFontComboBox::AllFonts, ScalableFonts = QFontComboBox::ScalableFonts, NonScalableFonts = QFontComboBox::NonScalableFonts, MonospacedFonts = QFontComboBox::MonospacedFonts, ProportionalFonts = QFontComboBox::ProportionalFonts};
public slots:
QFontComboBox* new_QFontComboBox(QWidget* parent = 0);
void delete_QFontComboBox(QFontComboBox* obj) { delete obj; }
QFont currentFont(QFontComboBox* theWrappedObject) const;
QFontComboBox::FontFilters fontFilters(QFontComboBox* theWrappedObject) const;
void setFontFilters(QFontComboBox* theWrappedObject, QFontComboBox::FontFilters filters);
void setWritingSystem(QFontComboBox* theWrappedObject, QFontDatabase::WritingSystem arg__1);
QSize sizeHint(QFontComboBox* theWrappedObject) const;
QFontDatabase::WritingSystem writingSystem(QFontComboBox* theWrappedObject) const;
};
#endif // PYTHONQTWRAPPER_QFONTCOMBOBOX_H