qtabbar.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:5k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QTABBAR_H
  38. #define QTABBAR_H
  39. #include <QtGui/qwidget.h>
  40. QT_BEGIN_HEADER
  41. QT_BEGIN_NAMESPACE
  42. QT_MODULE(Gui)
  43. #ifndef QT_NO_TABBAR
  44. class QIcon;
  45. class QTabBarPrivate;
  46. class QStyleOptionTab;
  47. class Q_GUI_EXPORT QTabBar: public QWidget
  48. {
  49.     Q_OBJECT
  50.     Q_ENUMS(Shape)
  51.     Q_PROPERTY(Shape shape READ shape WRITE setShape)
  52.     Q_PROPERTY(int currentIndex READ currentIndex WRITE setCurrentIndex NOTIFY currentChanged)
  53.     Q_PROPERTY(int count READ count)
  54.     Q_PROPERTY(bool drawBase READ drawBase WRITE setDrawBase)
  55.     Q_PROPERTY(QSize iconSize READ iconSize WRITE setIconSize)
  56.     Q_PROPERTY(Qt::TextElideMode elideMode READ elideMode WRITE setElideMode)
  57.     Q_PROPERTY(bool usesScrollButtons READ usesScrollButtons WRITE setUsesScrollButtons)
  58. public:
  59.     explicit QTabBar(QWidget* parent=0);
  60.     ~QTabBar();
  61.     enum Shape { RoundedNorth, RoundedSouth, RoundedWest, RoundedEast,
  62.                  TriangularNorth, TriangularSouth, TriangularWest, TriangularEast
  63. #if defined(QT3_SUPPORT) && !defined(Q_MOC_RUN)
  64.                 , RoundedAbove = RoundedNorth, RoundedBelow = RoundedSouth,
  65.                 TriangularAbove = TriangularNorth, TriangularBelow = TriangularSouth
  66. #endif
  67.     };
  68.     Shape shape() const;
  69.     void setShape(Shape shape);
  70.     int addTab(const QString &text);
  71.     int addTab(const QIcon &icon, const QString &text);
  72.     int insertTab(int index, const QString &text);
  73.     int insertTab(int index, const QIcon&icon, const QString &text);
  74.     void removeTab(int index);
  75.     bool isTabEnabled(int index) const;
  76.     void setTabEnabled(int index, bool);
  77.     QString tabText(int index) const;
  78.     void setTabText(int index, const QString &text);
  79.     QColor tabTextColor(int index) const;
  80.     void setTabTextColor(int index, const QColor &color);
  81.     QIcon tabIcon(int index) const;
  82.     void setTabIcon(int index, const QIcon &icon);
  83.     Qt::TextElideMode elideMode() const;
  84.     void setElideMode(Qt::TextElideMode);
  85. #ifndef QT_NO_TOOLTIP
  86.     void setTabToolTip(int index, const QString &tip);
  87.     QString tabToolTip(int index) const;
  88. #endif
  89. #ifndef QT_NO_WHATSTHIS
  90.     void setTabWhatsThis(int index, const QString &text);
  91.     QString tabWhatsThis(int index) const;
  92. #endif
  93.     void setTabData(int index, const QVariant &data);
  94.     QVariant tabData(int index) const;
  95.     QRect tabRect(int index) const;
  96.     int tabAt(const QPoint &pos) const;
  97.     int currentIndex() const;
  98.     int count() const;
  99.     QSize sizeHint() const;
  100.     QSize minimumSizeHint() const;
  101.     void setDrawBase(bool drawTheBase);
  102.     bool drawBase() const;
  103.     QSize iconSize() const;
  104.     void setIconSize(const QSize &size);
  105.     bool usesScrollButtons() const;
  106.     void setUsesScrollButtons(bool useButtons);
  107. public Q_SLOTS:
  108.     void setCurrentIndex(int index);
  109. Q_SIGNALS:
  110.     void currentChanged(int index);
  111. protected:
  112.     virtual QSize tabSizeHint(int index) const;
  113.     virtual void tabInserted(int index);
  114.     virtual void tabRemoved(int index);
  115.     virtual void tabLayoutChange();
  116.     bool event(QEvent *);
  117.     void resizeEvent(QResizeEvent *);
  118.     void showEvent(QShowEvent *);
  119.     void paintEvent(QPaintEvent *);
  120.     void mousePressEvent (QMouseEvent *);
  121.     void mouseMoveEvent (QMouseEvent *);
  122.     void mouseReleaseEvent (QMouseEvent *);
  123.     void keyPressEvent(QKeyEvent *);
  124.     void changeEvent(QEvent *);
  125.     void initStyleOption(QStyleOptionTab *option, int tabIndex) const;
  126. #ifdef QT3_SUPPORT
  127. public Q_SLOTS:
  128.     QT_MOC_COMPAT void setCurrentTab(int index) { setCurrentIndex(index); }
  129. Q_SIGNALS:
  130.     QT_MOC_COMPAT void selected(int);
  131. #endif
  132.     friend class QAccessibleTabBar;
  133. private:
  134.     Q_DISABLE_COPY(QTabBar)
  135.     Q_DECLARE_PRIVATE(QTabBar)
  136.     Q_PRIVATE_SLOT(d_func(), void _q_scrollTabs())
  137. };
  138. #endif // QT_NO_TABBAR
  139. QT_END_NAMESPACE
  140. QT_END_HEADER
  141. #endif // QTABBAR_H