Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions |
This is the verbatim text of the qtoolbox.h include file. It is provided only for illustration; the copyright remains with Trolltech.
/**************************************************************************** ** $Id: qt/qtoolbox.h 3.2.0b2 edited Apr 17 17:34 $ ** ** Definition of QToolBox widget class ** ** Created : 961105 ** ** Copyright (C) 1992-2000 Trolltech AS. All rights reserved. ** ** This file is part of the widgets module of the Qt GUI Toolkit. ** ** This file may be distributed under the terms of the Q Public License ** as defined by Trolltech AS of Norway and appearing in the file ** LICENSE.QPL included in the packaging of this file. ** ** This file may be distributed and/or modified under the terms of the ** GNU General Public License version 2 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. ** ** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition ** licenses may use this file in accordance with the Qt Commercial License ** Agreement provided with the Software. ** ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. ** ** See http://www.trolltech.com/pricing.html or email [email protected] for ** information about Qt Commercial License Agreements. ** See http://www.trolltech.com/qpl/ for QPL licensing information. ** See http://www.trolltech.com/gpl/ for GPL licensing information. ** ** Contact [email protected] if any conditions of this licensing are ** not clear to you. ** **********************************************************************/ #ifndef QTOOLBOX_H #define QTOOLBOX_H #ifndef QT_H #include <qwidget.h> #include <qiconset.h> #endif // QT_H #ifndef QT_NO_TOOLBOX class QToolBoxPrivate; class QWidgetList; class Q_EXPORT QToolBox : public QWidget { Q_OBJECT Q_PROPERTY( int currentIndex READ currentIndex WRITE setCurrentIndex ) Q_PROPERTY( int count READ count ) Q_PROPERTY( BackgroundMode pageBackgroundMode READ pageBackgroundMode WRITE setPageBackgroundMode ) public: QToolBox( QWidget *parent = 0, const char *name = 0 ); ~QToolBox(); void addPage( QWidget *page, const QString &label ); void addPage( QWidget *page, const QIconSet &iconSet, const QString &label ); void insertPage( QWidget *page, const QString &label, int index = -1 ); void insertPage( QWidget *page, const QIconSet &iconSet, const QString &label, int index = -1 ); void setPageEnabled( QWidget *page, bool enabled ); bool isPageEnabled( QWidget *page ) const; void setPageLabel( QWidget *page, const QString &label ); QString pageLabel( QWidget *page ) const; void setPageIconSet( QWidget *page, const QIconSet &iconSet ); QIconSet pageIconSet( QWidget *page ) const; void setPageToolTip( QWidget *page, const QString &toolTip ); QString pageToolTip( QWidget *page ) const; QWidget *currentPage() const; void setCurrentPage( QWidget *page ); int currentIndex() const; QWidget *page( int index ) const; int indexOf( QWidget *page ) const; int count() const; void setPageBackgroundMode( BackgroundMode bm ); BackgroundMode pageBackgroundMode() const; void removePage( QWidget *page ); public slots: void setCurrentIndex( int index ); signals: void currentChanged( int index ); private slots: void buttonClicked(); protected: void showEvent( QShowEvent *e ); private: void relayout(); void activateClosestPage( QWidget *page ); private: QToolBoxPrivate *d; }; inline void QToolBox::addPage( QWidget *page, const QString &label ) { insertPage( page, QIconSet(), label ); } inline void QToolBox::addPage( QWidget *page, const QIconSet &iconSet, const QString &label ) { insertPage( page, iconSet, label ); } inline void QToolBox::insertPage( QWidget *page, const QString &label, int index ) { insertPage( page, QIconSet(), label, index ); } #endif // QT_NO_TOOLBOX #endif
Copyright © 2003 Trolltech | Trademarks | Qt version 3.2.0b2
|