KDEUI
kpagewidget.h
Go to the documentation of this file.
00001 /* 00002 This file is part of the KDE Libraries 00003 00004 Copyright (C) 2006 Tobias Koenig (tokoe@kde.org) 00005 00006 This library is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU Library General Public 00008 License as published by the Free Software Foundation; either 00009 version 2 of the License, or (at your option) any later version. 00010 00011 This library is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 Library General Public License for more details. 00015 00016 You should have received a copy of the GNU Library General Public License 00017 along with this library; see the file COPYING.LIB. If not, write to 00018 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00019 Boston, MA 02110-1301, USA. 00020 */ 00021 00022 #ifndef KPAGEWIDGET_H 00023 #define KPAGEWIDGET_H 00024 00025 #include <kpagewidgetmodel.h> 00026 00027 #include "kpageview.h" 00028 00029 class KPageWidgetPrivate; 00036 class KDEUI_EXPORT KPageWidget : public KPageView 00037 { 00038 Q_OBJECT 00039 Q_DECLARE_PRIVATE(KPageWidget) 00040 00041 public: 00047 explicit KPageWidget( QWidget *parent = 0 ); 00048 00052 ~KPageWidget(); 00053 00062 KPageWidgetItem* addPage( QWidget *widget, const QString &name ); 00063 00069 void addPage( KPageWidgetItem *item ); 00070 00081 KPageWidgetItem* insertPage( KPageWidgetItem *before, QWidget *widget, const QString &name ); 00082 00091 void insertPage( KPageWidgetItem *before, KPageWidgetItem *item ); 00092 00102 KPageWidgetItem* addSubPage( KPageWidgetItem *parent, QWidget *widget, const QString &name ); 00103 00111 void addSubPage( KPageWidgetItem *parent, KPageWidgetItem *item ); 00112 00116 void removePage( KPageWidgetItem *item ); 00117 00122 void setCurrentPage( KPageWidgetItem *item ); 00123 00128 KPageWidgetItem* currentPage() const; 00129 00130 Q_SIGNALS: 00136 void currentPageChanged( KPageWidgetItem *current, KPageWidgetItem *before ); 00137 00142 void pageToggled( KPageWidgetItem *page, bool checked ); 00143 00148 void pageRemoved( KPageWidgetItem *page ); 00149 00150 protected: 00151 KPageWidget(KPageWidgetPrivate &dd, QWidget *parent); 00152 00153 private: 00154 Q_PRIVATE_SLOT(d_func(), void _k_slotCurrentPageChanged(const QModelIndex &, const QModelIndex &)) 00155 }; 00156 00157 #endif
KDE 4.6 API Reference