1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-14 19:12:11 +01:00
falkonOfficial/src/lib/tabwidget/tabmodel.h

58 lines
1.8 KiB
C
Raw Normal View History

2018-01-30 14:53:18 +01:00
/* ============================================================
* Falkon - Qt web browser
* Copyright (C) 2018 David Rosca <nowrep@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* ============================================================ */
#pragma once
#include <QAbstractListModel>
#include "qzcommon.h"
class WebTab;
class BrowserWindow;
class FALKON_EXPORT TabModel : public QAbstractListModel
{
Q_OBJECT
public:
enum Roles {
WebTabRole = Qt::UserRole + 1,
TitleRole = Qt::UserRole + 2,
IconRole = Qt::UserRole + 3,
PinnedRole = Qt::UserRole + 4,
RestoredRole = Qt::UserRole + 5,
ParentTabRole = Qt::UserRole + 6,
ChildTabsRole = Qt::UserRole + 7
2018-01-30 14:53:18 +01:00
};
explicit TabModel(BrowserWindow *window, QObject *parent = nullptr);
WebTab *webTab(int row) const;
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
private:
void init();
void tabInserted(int index);
void tabRemoved(int index);
void tabMoved(int from, int to);
BrowserWindow *m_window;
QVector<WebTab*> m_tabs;
};