kdelibs/kdeui/paged/kpageview.h
Ivailo Monev 6a18754f1b kdeui: merge KPageModel into KPageView and KPageWidgetModel
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-06-14 16:10:43 +03:00

226 lines
6.2 KiB
C++

/*
This file is part of the KDE Libraries
Copyright (C) 2006 Tobias Koenig (tokoe@kde.org)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KPAGEVIEW_H
#define KPAGEVIEW_H
#include <kdeui_export.h>
#include <QWidget>
#include <QAbstractItemDelegate>
#include <QAbstractItemView>
#include <QModelIndex>
#include <QAbstractItemModel>
class KPageViewPrivate;
/**
* @short A base class which can handle multiple pages.
*
* This class provides a widget base class which handles multiple
* pages and allows the user to switch between these pages in
* different ways.
*
* Additional to the standard Qt::ItemDataRoles it provides the two roles
*
* @li HeaderRole
* @li WidgetRole
*
* which are used to return a header string for a page and a QWidget
* pointer to the page itself.
*
* Currently, @p Auto, @p Plain, @p List, @p Tree and @p Tabbed face
* types are available. @see KPageWidget
*
* <b>Example:</b>\n
*
* \code
* QAbstractItemModel *model = new MyPageModel();
*
* KPageView *view = new KPageView( this );
* view->setModel( model );
*
* view->setFaceType( KPageView::List );
* \endcode
*
* @author Tobias Koenig (tokoe@kde.org)
*/
class KDEUI_EXPORT KPageView : public QWidget
{
Q_OBJECT
Q_ENUMS( FaceType )
Q_PROPERTY( FaceType faceType READ faceType WRITE setFaceType )
Q_DECLARE_PRIVATE(KPageView)
public:
/**
* Additional roles that KPageView uses.
*/
enum Role {
/**
* A string to be rendered as page header.
*/
HeaderRole = Qt::UserRole + 1,
/**
* A pointer to the page widget. This is the widget that is shown when the item is
* selected.
*
* You can make QVariant take a QWidget using
* \code
* QWidget *myWidget = new QWidget;
* QVariant v = QVariant::fromValue(myWidget);
* \endcode
*/
WidgetRole
};
/**
* This enum is used to decide which type of navigation view
* shall be used in the page view.
*
* @li Auto - Depending on the number of pages in the model,
* the Plain (one page), the List (several pages)
* or the Tree face (nested pages) will be used.
* This is the default face type.
* @li Plain - No navigation view will be visible and only the
* first page of the model will be shown.
*
* @li List - An icon list is used as navigation view.
*
* @li Tree - A tree list is used as navigation view.
*
* @li Tabbed - A tab widget is used as navigation view.
*/
enum FaceType
{
Auto,
Plain,
List,
Tree,
Tabbed
};
/**
* Creates a page view with given parent.
*/
explicit KPageView( QWidget *parent = 0 );
/**
* Destroys the page view.
*/
virtual ~KPageView();
/**
* Sets the @p model of the page view.
*
* The model has to provide data for the roles defined in KPageView::Role.
*/
void setModel(QAbstractItemModel *model);
/**
* Returns the model of the page view.
*/
QAbstractItemModel* model() const;
/**
* Sets the face type of the page view.
*/
void setFaceType( FaceType faceType );
/**
* Returns the face type of the page view.
*/
FaceType faceType() const;
/**
* Sets the page with @param index to be the current page and emits
* the @see currentPageChanged signal.
*/
void setCurrentPage( const QModelIndex &index );
/**
* Returns the index for the current page or an invalid index
* if no current page exists.
*/
QModelIndex currentPage() const;
/**
* Sets the item @param delegate which can be used customize
* the page view.
*/
void setItemDelegate( QAbstractItemDelegate *delegate );
/**
* Returns the item delegate of the page view.
*/
QAbstractItemDelegate* itemDelegate() const;
/**
* Sets the @p widget which will be shown when a page is selected
* that has no own widget set.
*/
void setDefaultWidget( QWidget *widget );
Q_SIGNALS:
/**
* This signal is emitted whenever the current page changes.
* The previous page index is replaced by the current index.
*/
void currentPageChanged( const QModelIndex &current, const QModelIndex &previous );
protected:
/**
* Returns the navigation view, depending on the current
* face type.
*
* This method can be reimplemented to provide custom
* navigation views.
*/
virtual QAbstractItemView* createView();
/**
* Returns whether the page header should be visible.
*
* This method can be reimplemented for adapting custom
* views.
*/
virtual bool showPageHeader() const;
/**
* Returns the position where the navigation view should be
* located according to the page stack.
*
* This method can be reimplemented for adapting custom
* views.
*/
virtual Qt::Alignment viewPosition() const;
KPageView(KPageViewPrivate &dd, QWidget *parent);
KPageViewPrivate *const d_ptr;
private:
Q_PRIVATE_SLOT(d_func(), void _k_rebuildGui())
Q_PRIVATE_SLOT(d_func(), void _k_modelChanged())
Q_PRIVATE_SLOT(d_func(), void _k_pageSelected(const QItemSelection &, const QItemSelection &))
Q_PRIVATE_SLOT(d_func(), void _k_dataChanged(const QModelIndex &, const QModelIndex &))
};
#endif