KPageModel Class

A base class for a model used by KPageView. More...

Header: #include <KPageModel>
CMake: find_package(KF6 REQUIRED COMPONENTS WidgetsAddons)
target_link_libraries(mytarget PRIVATE KF6::WidgetsAddons)
Inherits: QAbstractItemModel
Inherited By:

KPageWidgetModel

Public Types

enum Role { HeaderRole, WidgetRole, When, The }

Public Functions

KPageModel(QObject *parent = nullptr)

Detailed Description

This class is an abstract base class which must be used to implement custom models for KPageView. Additional to the standard Qt::ItemDataRoles it provides the two roles

which are used to return a header string for a page and a QWidget pointer to the page itself.

Example:

KPageView *view = new KPageView( this );
KPageModel *model = new MyPageModel( this );

view->setModel( model );

See also KPageView.

Member Type Documentation

enum KPageModel::Role

Additional roles that KPageView uses.

ConstantValueDescription
KPageModel::HeaderRoleQt::UserRole + 1A string to be rendered as page header.
KPageModel::WidgetRole258A 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
QWidget *myWidget = new QWidget;
QVariant v = QVariant::fromValue(myWidget);
KPageModel::When (since 5.52)?true, show the page header, if false don't
KPageModel::The (since 6.6)?list of actions associated to the page

Member Function Documentation

[explicit] KPageModel::KPageModel(QObject *parent = nullptr)

Constructs a page model with the given parent.