#ifndef PYTHONQTWRAPPER_QFRAME_H #define PYTHONQTWRAPPER_QFRAME_H #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include class PythonQtWrapper_QFrame : public QObject { Q_OBJECT public: Q_ENUMS(StyleMask ) enum StyleMask{ Shadow_Mask = QFrame::Shadow_Mask, Shape_Mask = QFrame::Shape_Mask}; public slots: QFrame* new_QFrame(QWidget* parent = 0, Qt::WindowFlags f = 0); void delete_QFrame(QFrame* obj) { delete obj; } QRect frameRect(QFrame* theWrappedObject) const; QFrame::Shadow frameShadow(QFrame* theWrappedObject) const; QFrame::Shape frameShape(QFrame* theWrappedObject) const; int frameStyle(QFrame* theWrappedObject) const; int frameWidth(QFrame* theWrappedObject) const; int lineWidth(QFrame* theWrappedObject) const; int midLineWidth(QFrame* theWrappedObject) const; void setFrameRect(QFrame* theWrappedObject, const QRect& arg__1); void setFrameShadow(QFrame* theWrappedObject, QFrame::Shadow arg__1); void setFrameShape(QFrame* theWrappedObject, QFrame::Shape arg__1); void setFrameStyle(QFrame* theWrappedObject, int arg__1); void setLineWidth(QFrame* theWrappedObject, int arg__1); void setMidLineWidth(QFrame* theWrappedObject, int arg__1); QSize sizeHint(QFrame* theWrappedObject) const; }; #endif // PYTHONQTWRAPPER_QFRAME_H