summaryrefslogtreecommitdiffstats
path: root/python/pyqt/sip/qt/qtabwidget.sip
diff options
context:
space:
mode:
Diffstat (limited to 'python/pyqt/sip/qt/qtabwidget.sip')
-rw-r--r--python/pyqt/sip/qt/qtabwidget.sip177
1 files changed, 0 insertions, 177 deletions
diff --git a/python/pyqt/sip/qt/qtabwidget.sip b/python/pyqt/sip/qt/qtabwidget.sip
deleted file mode 100644
index 9817590d..00000000
--- a/python/pyqt/sip/qt/qtabwidget.sip
+++ /dev/null
@@ -1,177 +0,0 @@
-// This is the SIP interface definition for QTabWidget.
-//
-// Copyright (c) 2007
-// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
-//
-// This file is part of PyQt.
-//
-// This copy of PyQt is free software; you can redistribute it and/or modify it
-// under the terms of the GNU General Public License as published by the Free
-// Software Foundation; either version 2, or (at your option) any later
-// version.
-//
-// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
-// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-// details.
-//
-// You should have received a copy of the GNU General Public License along with
-// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
-// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-
-%ExportedDoc
-<Sect2><Title>QTabWidget (Qt v2+)</Title>
-<Para>
-<Literal>QTabWidget</Literal> is fully implemented.
-</Para>
-</Sect2>
-%End
-
-
-%If (Qt_2_00 -)
-
-class QTabWidget : QWidget
-{
-%TypeHeaderCode
-#include <qtabwidget.h>
-%End
-
-public:
-%If (Qt_3_0_0 -)
- QTabWidget(QWidget * /TransferThis/ = 0,const char * = 0,WFlags = 0);
-%End
-%If (Qt_2_1_0 - Qt_3_0_0)
- QTabWidget(QWidget * /TransferThis/,const char *,WFlags);
-%End
-%If (- Qt_3_0_0)
- QTabWidget(QWidget * /TransferThis/ = 0,const char * = 0);
-%End
-
- // The QWidget is passed to QWidgetStack::addWidget().
-%If (- Qt_3_0_0)
- void addTab(QWidget * /Transfer/,const QString &);
- void addTab(QWidget * /Transfer/,const QIconSet &,const QString &);
- void addTab(QWidget * /Transfer/,QTab *);
-
- void insertTab(QWidget * /Transfer/,const QString &,int = -1);
- void insertTab(QWidget * /Transfer/,const QIconSet &,const QString &,
- int = -1);
- void insertTab(QWidget * /Transfer/,QTab *,int = -1);
-%End
-%If (Qt_3_0_0 -)
- virtual void addTab(QWidget * /Transfer/,const QString &);
- virtual void addTab(QWidget * /Transfer/,const QIconSet &,
- const QString &);
- virtual void addTab(QWidget * /Transfer/,QTab *);
-
- virtual void insertTab(QWidget * /Transfer/,const QString &,int = -1);
- virtual void insertTab(QWidget * /Transfer/,const QIconSet &,
- const QString &,int = -1);
- virtual void insertTab(QWidget * /Transfer/,QTab *,int = -1);
-%End
-
- void changeTab(QWidget *,const QString &);
- void changeTab(QWidget *,const QIconSet &,const QString &);
-
- bool isTabEnabled(QWidget *) const;
- void setTabEnabled(QWidget *,bool);
-
-%If (Qt_3_2_0 -)
- void setCornerWidget(QWidget *,Qt::Corner = Qt::TopRight);
- QWidget *cornerWidget(Qt::Corner = Qt::TopRight) const;
-%End
-
-%If (- Qt_3_0_0)
- void showPage(QWidget *);
- void removePage(QWidget *);
-
- QString tabLabel(QWidget *);
-%End
-%If (Qt_3_0_0 -)
- QString tabLabel(QWidget *) const;
- void setTabLabel(QWidget *,const QString &);
-
- QIconSet tabIconSet(QWidget *) const;
- void setTabIconSet(QWidget *,const QIconSet &);
-
- void removeTabToolTip(QWidget *);
- void setTabToolTip(QWidget *,const QString &);
- QString tabToolTip(QWidget *) const;
-%End
-
- QWidget *currentPage() const;
-%If (Qt_3_0_0 -)
- QWidget *page(int) const;
- QString label(int) const;
-%End
-%If (Qt_2_2_0 -)
- int currentPageIndex() const;
-%End
-%If (Qt_2_2_0 - Qt_3_0_0)
- void setCurrentPage(int);
-%End
-%If (Qt_3_0_0 -)
- int indexOf(QWidget *) const;
-%End
-
- QSize sizeHint() const;
- QSize minimumSizeHint() const;
-
- enum TabPosition {
- Top,
- Bottom
- };
-
- TabPosition tabPosition() const;
- void setTabPosition(TabPosition);
-
-%If (Qt_2_2_0 -)
- enum TabShape {
- Rounded,
- Triangular
- };
-
- TabShape tabShape() const;
- void setTabShape(TabShape);
-%End
-
- int margin() const;
- void setMargin(int);
-
-%If (Qt_2_1_0 - Qt_3_0_0)
- QSizePolicy sizePolicy() const;
-%End
-
-%If (Qt_3_0_0 -)
- int count() const;
-%End
-
-public slots:
-%If (Qt_3_0_0 -)
- void setCurrentPage(int);
- virtual void showPage(QWidget *);
- virtual void removePage(QWidget *);
-%End
-
-protected:
- void showEvent(QShowEvent *);
- void resizeEvent(QResizeEvent *);
- void setTabBar(QTabBar *);
- QTabBar *tabBar() const;
- void styleChange(QStyle &);
- void updateMask();
- bool eventFilter(QObject *,QEvent *);
-
-signals:
-%If (Qt_2_2_0 -)
- void currentChanged(QWidget *);
-%End
-
-private:
-%If (Qt_2_1_0 -)
- QTabWidget(const QTabWidget &);
-%End
-};
-
-%End