/usr/include/KF5/KWidgetsAddons/kpageview.h is in libkf5widgetsaddons-dev 5.18.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | /*
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 <kwidgetsaddons_export.h>
#include <QWidget>
class KPageModel;
class QAbstractItemDelegate;
class QAbstractItemView;
class QModelIndex;
class KPageViewPrivate;
class QAbstractItemModel;
/**
* @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.
*
* Currently, @p Auto, @p Plain, @p List, @p Tree and @p Tabbed face
* types are available. @see KPageWidget
*
* <b>Example:</b>\n
*
* \code
* KPageModel *model = new MyPageModel();
*
* KPageView *view = new KPageView( this );
* view->setModel( model );
*
* view->setFaceType( KPageView::List );
* \endcode
*
* @author Tobias Koenig (tokoe@kde.org)
*/
class KWIDGETSADDONS_EXPORT KPageView : public QWidget
{
Q_OBJECT
Q_ENUMS(FaceType)
Q_PROPERTY(FaceType faceType READ faceType WRITE setFaceType)
Q_DECLARE_PRIVATE(KPageView)
public:
/**
* 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 KPageModel::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 ¤t, 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
|