qtoolbox.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 QTOOLBOX_H
  38. #define QTOOLBOX_H
  39. #include <QtGui/qframe.h>
  40. #include <QtGui/qicon.h>
  41. QT_BEGIN_HEADER
  42. QT_BEGIN_NAMESPACE
  43. QT_MODULE(Gui)
  44. #ifndef QT_NO_TOOLBOX
  45. class QToolBoxPrivate;
  46. class Q_GUI_EXPORT QToolBox : public QFrame
  47. {
  48.     Q_OBJECT
  49.     Q_PROPERTY(int currentIndex READ currentIndex WRITE setCurrentIndex NOTIFY currentChanged)
  50.     Q_PROPERTY(int count READ count)
  51. public:
  52.     explicit QToolBox(QWidget *parent = 0, Qt::WindowFlags f = 0);
  53.     ~QToolBox();
  54.     int addItem(QWidget *widget, const QString &text);
  55.     int addItem(QWidget *widget, const QIcon &icon, const QString &text);
  56.     int insertItem(int index, QWidget *widget, const QString &text);
  57.     int insertItem(int index, QWidget *widget, const QIcon &icon, const QString &text);
  58.     void removeItem(int index);
  59.     void setItemEnabled(int index, bool enabled);
  60.     bool isItemEnabled(int index) const;
  61.     void setItemText(int index, const QString &text);
  62.     QString itemText(int index) const;
  63.     void setItemIcon(int index, const QIcon &icon);
  64.     QIcon itemIcon(int index) const;
  65. #ifndef QT_NO_TOOLTIP
  66.     void setItemToolTip(int index, const QString &toolTip);
  67.     QString itemToolTip(int index) const;
  68. #endif
  69.     int currentIndex() const;
  70.     QWidget *currentWidget() const;
  71.     QWidget *widget(int index) const;
  72.     int indexOf(QWidget *widget) const;
  73.     int count() const;
  74. public Q_SLOTS:
  75.     void setCurrentIndex(int index);
  76.     void setCurrentWidget(QWidget *widget);
  77. Q_SIGNALS:
  78.     void currentChanged(int index);
  79. protected:
  80.     bool event(QEvent *e);
  81.     virtual void itemInserted(int index);
  82.     virtual void itemRemoved(int index);
  83.     void showEvent(QShowEvent *e);
  84.     void changeEvent(QEvent *);
  85. #ifdef QT3_SUPPORT
  86. public:
  87.     QT3_SUPPORT_CONSTRUCTOR QToolBox(QWidget *parent, const char *name, Qt::WindowFlags f = 0);
  88.     inline QT3_SUPPORT void setItemLabel(int index, const QString &text) { setItemText(index, text); }
  89.     inline QT3_SUPPORT QString itemLabel(int index) const { return itemText(index); }
  90.     inline QT3_SUPPORT QWidget *currentItem() const { return widget(currentIndex()); }
  91.     inline QT3_SUPPORT void setCurrentItem(QWidget *item) { setCurrentIndex(indexOf(item)); }
  92.     inline QT3_SUPPORT void setItemIconSet(int index, const QIcon &icon) { setItemIcon(index, icon); }
  93.     inline QT3_SUPPORT QIcon itemIconSet(int index) const { return itemIcon(index); }
  94.     inline QT3_SUPPORT int removeItem(QWidget *item)
  95.     { int i = indexOf(item); removeItem(i); return i; }
  96.     inline QT3_SUPPORT QWidget *item(int index) const { return widget(index); }
  97.     QT3_SUPPORT void setMargin(int margin) { setContentsMargins(margin, margin, margin, margin); }
  98.     QT3_SUPPORT int margin() const
  99.     { int margin; int dummy; getContentsMargins(&margin, &dummy, &dummy, &dummy);  return margin; }
  100. #endif
  101. private:
  102.     Q_DECLARE_PRIVATE(QToolBox)
  103.     Q_DISABLE_COPY(QToolBox)
  104.     Q_PRIVATE_SLOT(d_func(), void _q_buttonClicked())
  105.     Q_PRIVATE_SLOT(d_func(), void _q_widgetDestroyed(QObject*))
  106. };
  107. inline int QToolBox::addItem(QWidget *item, const QString &text)
  108. { return insertItem(-1, item, QIcon(), text); }
  109. inline int QToolBox::addItem(QWidget *item, const QIcon &iconSet,
  110.                               const QString &text)
  111. { return insertItem(-1, item, iconSet, text); }
  112. inline int QToolBox::insertItem(int index, QWidget *item, const QString &text)
  113. { return insertItem(index, item, QIcon(), text); }
  114. #endif // QT_NO_TOOLBOX
  115. QT_END_NAMESPACE
  116. QT_END_HEADER
  117. #endif // QTOOLBOX_H