File indexing completed on 2024-05-19 12:54:49

0001 /* This file is part of the KDE project
0002    Copyright (C) 2016 Jarosław Staniek <staniek@kde.org>
0003 
0004    This library is free software; you can redistribute it and/or
0005    modify it under the terms of the GNU Library General Public
0006    License as published by the Free Software Foundation; either
0007    version 2 of the License, or (at your option) any later version.
0008 
0009    This library is distributed in the hope that it will be useful,
0010    but WITHOUT ANY WARRANTY; without even the implied warranty of
0011    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0012    Library General Public License for more details.
0013 
0014    You should have received a copy of the GNU Library General Public License
0015    along with this library; see the file COPYING.LIB.  If not, write to
0016    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0017  * Boston, MA 02110-1301, USA.
0018 */
0019 
0020 #ifndef KEXIGLOBALVIEWMODESELECTOR_P_H
0021 #define KEXIGLOBALVIEWMODESELECTOR_P_H
0022 
0023 #include <widget/KexiListView.h>
0024 
0025 class QPainter;
0026 
0027 //! @internal A single global mode
0028 class KexiGlobalViewModeItem
0029 {
0030 public:
0031     KexiGlobalViewModeItem() : enabled(true) {}
0032     QString name;
0033     QIcon icon;
0034     bool enabled;
0035 };
0036 
0037 //! @internal A model for KexiGlobalViewModeSelector, each item has name and icon
0038 class KexiGlobalViewModeSelectorModel : public QAbstractListModel
0039 {
0040     Q_OBJECT
0041 
0042 public:
0043     explicit KexiGlobalViewModeSelectorModel(QObject *parent = 0);
0044 
0045     ~KexiGlobalViewModeSelectorModel();
0046 
0047     int rowCount(const QModelIndex &parent = QModelIndex()) const  override;
0048 
0049     QVariant data(const QModelIndex &index, int role) const  override;
0050 
0051     Qt::ItemFlags flags(const QModelIndex &index) const override;
0052 
0053     QModelIndex index(int row, int column, const QModelIndex& parent) const override;
0054 
0055     QList<KexiGlobalViewModeItem*> modes;
0056 };
0057 
0058 //! @internal A delegate for items of KexiGlobalViewModeSelector
0059 class KexiGlobalViewModeSelectorDelegate : public KexiListViewDelegate
0060 {
0061     Q_OBJECT
0062 
0063 public:
0064     explicit KexiGlobalViewModeSelectorDelegate(QObject *parent = 0);
0065 
0066     void paint(QPainter *painter, const QStyleOptionViewItem &option,
0067                const QModelIndex &index) const override;
0068 };
0069 
0070 #endif // KEXIGLOBALVIEWMODESELECTOR_P_H