2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2016-03-14 09:23:52 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
|
2016-03-14 09:23:52 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2022-12-16 20:08:44 +00:00
|
|
|
#pragma once
|
2016-03-14 09:23:52 +00:00
|
|
|
|
2016-03-30 14:23:58 +00:00
|
|
|
#include "input.h"
|
2017-01-01 18:06:04 +00:00
|
|
|
#include "input_event_spy.h"
|
2022-03-23 10:13:38 +00:00
|
|
|
#include <config-kwin.h>
|
|
|
|
#include <kwin_export.h>
|
2016-03-14 09:23:52 +00:00
|
|
|
|
|
|
|
#include <QAbstractItemModel>
|
|
|
|
#include <QStyledItemDelegate>
|
|
|
|
#include <QVector>
|
2021-04-07 16:53:09 +00:00
|
|
|
#include <functional>
|
2022-08-01 21:29:02 +00:00
|
|
|
#include <memory>
|
2016-03-14 09:23:52 +00:00
|
|
|
|
2016-03-30 14:23:58 +00:00
|
|
|
class QTextEdit;
|
|
|
|
|
2016-03-14 09:23:52 +00:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class DebugConsole;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2023-09-13 17:59:29 +00:00
|
|
|
class AbstractDataSource;
|
2022-04-22 17:39:12 +00:00
|
|
|
class Window;
|
2022-04-22 17:54:31 +00:00
|
|
|
class X11Window;
|
2022-04-22 17:45:19 +00:00
|
|
|
class InternalWindow;
|
2016-03-30 14:23:58 +00:00
|
|
|
class DebugConsoleFilter;
|
2022-04-22 17:51:07 +00:00
|
|
|
class WaylandWindow;
|
2016-03-14 09:23:52 +00:00
|
|
|
|
|
|
|
class KWIN_EXPORT DebugConsoleModel : public QAbstractItemModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit DebugConsoleModel(QObject *parent = nullptr);
|
Run clang-tidy with modernize-use-override check
Summary:
Currently code base of kwin can be viewed as two pieces. One is very
ancient, and the other one is more modern, which uses new C++ features.
The main problem with the ancient code is that it was written before
C++11 era. So, no override or final keywords, lambdas, etc.
Quite recently, KDE compiler settings were changed to show a warning if
a virtual method has missing override keyword. As you might have already
guessed, this fired back at us because of that ancient code. We had
about 500 new compiler warnings.
A "solution" was proposed to that problem - disable -Wno-suggest-override
and the other similar warning for clang. It's hard to call a solution
because those warnings are disabled not only for the old code, but also
for new. This is not what we want!
The main argument for not actually fixing the problem was that git
history will be screwed as well because of human factor. While good git
history is a very important thing, we should not go crazy about it and
block every change that somehow alters git history. git blame allows to
specify starting revision for a reason.
The other argument (human factor) can be easily solved by using tools
such as clang-tidy. clang-tidy is a clang-based linter for C++. It can
be used for various things, e.g. fixing coding style(e.g. add missing
braces to if statements, readability-braces-around-statements check),
or in our case add missing override keywords.
Test Plan: Compiles.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: davidedmundson, apol, romangg, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D22371
2019-07-22 16:52:26 +00:00
|
|
|
~DebugConsoleModel() override;
|
2016-03-14 09:23:52 +00:00
|
|
|
|
|
|
|
int columnCount(const QModelIndex &parent) const override;
|
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
2022-03-23 10:13:38 +00:00
|
|
|
QModelIndex index(int row, int column, const QModelIndex &parent) const override;
|
2016-03-14 09:23:52 +00:00
|
|
|
int rowCount(const QModelIndex &parent) const override;
|
|
|
|
QModelIndex parent(const QModelIndex &child) const override;
|
|
|
|
|
2020-07-22 18:35:41 +00:00
|
|
|
private Q_SLOTS:
|
2022-04-23 08:33:23 +00:00
|
|
|
void handleWindowAdded(Window *window);
|
|
|
|
void handleWindowRemoved(Window *window);
|
2020-07-22 18:35:41 +00:00
|
|
|
|
2016-03-14 09:23:52 +00:00
|
|
|
private:
|
2022-03-23 10:13:38 +00:00
|
|
|
template<class T>
|
2022-04-23 08:33:23 +00:00
|
|
|
QModelIndex indexForWindow(int row, int column, const QVector<T *> &windows, int id) const;
|
2022-03-23 10:13:38 +00:00
|
|
|
template<class T>
|
|
|
|
QModelIndex indexForProperty(int row, int column, const QModelIndex &parent, T *(DebugConsoleModel::*filter)(const QModelIndex &) const) const;
|
|
|
|
template<class T>
|
|
|
|
int propertyCount(const QModelIndex &parent, T *(DebugConsoleModel::*filter)(const QModelIndex &) const) const;
|
2016-03-14 09:23:52 +00:00
|
|
|
QVariant propertyData(QObject *object, const QModelIndex &index, int role) const;
|
2022-03-23 10:13:38 +00:00
|
|
|
template<class T>
|
2022-04-23 08:33:23 +00:00
|
|
|
QVariant windowData(const QModelIndex &index, int role, const QVector<T *> windows, const std::function<QString(T *)> &toString) const;
|
2022-03-23 10:13:38 +00:00
|
|
|
template<class T>
|
2022-04-23 08:33:23 +00:00
|
|
|
void add(int parentRow, QVector<T *> &windows, T *window);
|
2022-03-23 10:13:38 +00:00
|
|
|
template<class T>
|
2022-04-23 08:33:23 +00:00
|
|
|
void remove(int parentRow, QVector<T *> &windows, T *window);
|
|
|
|
WaylandWindow *waylandWindow(const QModelIndex &index) const;
|
|
|
|
InternalWindow *internalWindow(const QModelIndex &index) const;
|
|
|
|
X11Window *x11Window(const QModelIndex &index) const;
|
2023-03-28 11:38:19 +00:00
|
|
|
X11Window *unmanaged(const QModelIndex &index) const;
|
2016-03-14 09:23:52 +00:00
|
|
|
int topLevelRowCount() const;
|
|
|
|
|
2022-04-23 08:33:23 +00:00
|
|
|
QVector<WaylandWindow *> m_waylandWindows;
|
|
|
|
QVector<InternalWindow *> m_internalWindows;
|
|
|
|
QVector<X11Window *> m_x11Windows;
|
2023-03-28 11:38:19 +00:00
|
|
|
QVector<X11Window *> m_unmanageds;
|
2016-03-14 09:23:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class DebugConsoleDelegate : public QStyledItemDelegate
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit DebugConsoleDelegate(QObject *parent = nullptr);
|
Run clang-tidy with modernize-use-override check
Summary:
Currently code base of kwin can be viewed as two pieces. One is very
ancient, and the other one is more modern, which uses new C++ features.
The main problem with the ancient code is that it was written before
C++11 era. So, no override or final keywords, lambdas, etc.
Quite recently, KDE compiler settings were changed to show a warning if
a virtual method has missing override keyword. As you might have already
guessed, this fired back at us because of that ancient code. We had
about 500 new compiler warnings.
A "solution" was proposed to that problem - disable -Wno-suggest-override
and the other similar warning for clang. It's hard to call a solution
because those warnings are disabled not only for the old code, but also
for new. This is not what we want!
The main argument for not actually fixing the problem was that git
history will be screwed as well because of human factor. While good git
history is a very important thing, we should not go crazy about it and
block every change that somehow alters git history. git blame allows to
specify starting revision for a reason.
The other argument (human factor) can be easily solved by using tools
such as clang-tidy. clang-tidy is a clang-based linter for C++. It can
be used for various things, e.g. fixing coding style(e.g. add missing
braces to if statements, readability-braces-around-statements check),
or in our case add missing override keywords.
Test Plan: Compiles.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: davidedmundson, apol, romangg, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D22371
2019-07-22 16:52:26 +00:00
|
|
|
~DebugConsoleDelegate() override;
|
2016-03-14 09:23:52 +00:00
|
|
|
|
|
|
|
QString displayText(const QVariant &value, const QLocale &locale) const override;
|
|
|
|
};
|
|
|
|
|
2016-10-04 11:37:25 +00:00
|
|
|
class KWIN_EXPORT DebugConsole : public QWidget
|
2016-03-14 09:23:52 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
DebugConsole();
|
Run clang-tidy with modernize-use-override check
Summary:
Currently code base of kwin can be viewed as two pieces. One is very
ancient, and the other one is more modern, which uses new C++ features.
The main problem with the ancient code is that it was written before
C++11 era. So, no override or final keywords, lambdas, etc.
Quite recently, KDE compiler settings were changed to show a warning if
a virtual method has missing override keyword. As you might have already
guessed, this fired back at us because of that ancient code. We had
about 500 new compiler warnings.
A "solution" was proposed to that problem - disable -Wno-suggest-override
and the other similar warning for clang. It's hard to call a solution
because those warnings are disabled not only for the old code, but also
for new. This is not what we want!
The main argument for not actually fixing the problem was that git
history will be screwed as well because of human factor. While good git
history is a very important thing, we should not go crazy about it and
block every change that somehow alters git history. git blame allows to
specify starting revision for a reason.
The other argument (human factor) can be easily solved by using tools
such as clang-tidy. clang-tidy is a clang-based linter for C++. It can
be used for various things, e.g. fixing coding style(e.g. add missing
braces to if statements, readability-braces-around-statements check),
or in our case add missing override keywords.
Test Plan: Compiles.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: davidedmundson, apol, romangg, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D22371
2019-07-22 16:52:26 +00:00
|
|
|
~DebugConsole() override;
|
2016-03-14 09:23:52 +00:00
|
|
|
|
2016-10-04 12:06:01 +00:00
|
|
|
protected:
|
|
|
|
void showEvent(QShowEvent *event) override;
|
|
|
|
|
2016-03-14 09:23:52 +00:00
|
|
|
private:
|
2016-08-10 06:25:20 +00:00
|
|
|
void initGLTab();
|
2016-11-16 10:18:36 +00:00
|
|
|
void updateKeyboardTab();
|
2016-08-10 06:25:20 +00:00
|
|
|
|
2022-08-01 21:29:02 +00:00
|
|
|
std::unique_ptr<Ui::DebugConsole> m_ui;
|
|
|
|
std::unique_ptr<DebugConsoleFilter> m_inputFilter;
|
2016-03-14 09:23:52 +00:00
|
|
|
};
|
|
|
|
|
2016-03-23 10:25:58 +00:00
|
|
|
class SurfaceTreeModel : public QAbstractItemModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit SurfaceTreeModel(QObject *parent = nullptr);
|
Run clang-tidy with modernize-use-override check
Summary:
Currently code base of kwin can be viewed as two pieces. One is very
ancient, and the other one is more modern, which uses new C++ features.
The main problem with the ancient code is that it was written before
C++11 era. So, no override or final keywords, lambdas, etc.
Quite recently, KDE compiler settings were changed to show a warning if
a virtual method has missing override keyword. As you might have already
guessed, this fired back at us because of that ancient code. We had
about 500 new compiler warnings.
A "solution" was proposed to that problem - disable -Wno-suggest-override
and the other similar warning for clang. It's hard to call a solution
because those warnings are disabled not only for the old code, but also
for new. This is not what we want!
The main argument for not actually fixing the problem was that git
history will be screwed as well because of human factor. While good git
history is a very important thing, we should not go crazy about it and
block every change that somehow alters git history. git blame allows to
specify starting revision for a reason.
The other argument (human factor) can be easily solved by using tools
such as clang-tidy. clang-tidy is a clang-based linter for C++. It can
be used for various things, e.g. fixing coding style(e.g. add missing
braces to if statements, readability-braces-around-statements check),
or in our case add missing override keywords.
Test Plan: Compiles.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: davidedmundson, apol, romangg, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D22371
2019-07-22 16:52:26 +00:00
|
|
|
~SurfaceTreeModel() override;
|
2016-03-23 10:25:58 +00:00
|
|
|
|
|
|
|
int columnCount(const QModelIndex &parent) const override;
|
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
2022-03-23 10:13:38 +00:00
|
|
|
QModelIndex index(int row, int column, const QModelIndex &parent) const override;
|
2016-03-23 10:25:58 +00:00
|
|
|
int rowCount(const QModelIndex &parent) const override;
|
|
|
|
QModelIndex parent(const QModelIndex &child) const override;
|
|
|
|
};
|
|
|
|
|
2017-01-01 18:06:04 +00:00
|
|
|
class DebugConsoleFilter : public InputEventSpy
|
2016-03-30 14:23:58 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit DebugConsoleFilter(QTextEdit *textEdit);
|
Run clang-tidy with modernize-use-override check
Summary:
Currently code base of kwin can be viewed as two pieces. One is very
ancient, and the other one is more modern, which uses new C++ features.
The main problem with the ancient code is that it was written before
C++11 era. So, no override or final keywords, lambdas, etc.
Quite recently, KDE compiler settings were changed to show a warning if
a virtual method has missing override keyword. As you might have already
guessed, this fired back at us because of that ancient code. We had
about 500 new compiler warnings.
A "solution" was proposed to that problem - disable -Wno-suggest-override
and the other similar warning for clang. It's hard to call a solution
because those warnings are disabled not only for the old code, but also
for new. This is not what we want!
The main argument for not actually fixing the problem was that git
history will be screwed as well because of human factor. While good git
history is a very important thing, we should not go crazy about it and
block every change that somehow alters git history. git blame allows to
specify starting revision for a reason.
The other argument (human factor) can be easily solved by using tools
such as clang-tidy. clang-tidy is a clang-based linter for C++. It can
be used for various things, e.g. fixing coding style(e.g. add missing
braces to if statements, readability-braces-around-statements check),
or in our case add missing override keywords.
Test Plan: Compiles.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: davidedmundson, apol, romangg, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D22371
2019-07-22 16:52:26 +00:00
|
|
|
~DebugConsoleFilter() override;
|
2016-03-30 14:23:58 +00:00
|
|
|
|
2017-01-01 18:06:04 +00:00
|
|
|
void pointerEvent(MouseEvent *event) override;
|
|
|
|
void wheelEvent(WheelEvent *event) override;
|
|
|
|
void keyEvent(KeyEvent *event) override;
|
2022-12-21 00:55:20 +00:00
|
|
|
void touchDown(qint32 id, const QPointF &pos, std::chrono::microseconds time) override;
|
|
|
|
void touchMotion(qint32 id, const QPointF &pos, std::chrono::microseconds time) override;
|
|
|
|
void touchUp(qint32 id, std::chrono::microseconds time) override;
|
2017-01-01 18:06:04 +00:00
|
|
|
|
2022-12-21 00:55:20 +00:00
|
|
|
void pinchGestureBegin(int fingerCount, std::chrono::microseconds time) override;
|
|
|
|
void pinchGestureUpdate(qreal scale, qreal angleDelta, const QPointF &delta, std::chrono::microseconds time) override;
|
|
|
|
void pinchGestureEnd(std::chrono::microseconds time) override;
|
|
|
|
void pinchGestureCancelled(std::chrono::microseconds time) override;
|
2017-01-01 18:06:04 +00:00
|
|
|
|
2022-12-21 00:55:20 +00:00
|
|
|
void swipeGestureBegin(int fingerCount, std::chrono::microseconds time) override;
|
|
|
|
void swipeGestureUpdate(const QPointF &delta, std::chrono::microseconds time) override;
|
|
|
|
void swipeGestureEnd(std::chrono::microseconds time) override;
|
|
|
|
void swipeGestureCancelled(std::chrono::microseconds time) override;
|
2016-08-05 12:35:33 +00:00
|
|
|
|
2017-12-27 19:25:36 +00:00
|
|
|
void switchEvent(SwitchEvent *event) override;
|
|
|
|
|
2020-03-17 14:21:35 +00:00
|
|
|
void tabletToolEvent(TabletEvent *event) override;
|
2022-12-21 00:55:20 +00:00
|
|
|
void tabletToolButtonEvent(uint button, bool pressed, const TabletToolId &tabletToolId, std::chrono::microseconds time) override;
|
|
|
|
void tabletPadButtonEvent(uint button, bool pressed, const TabletPadId &tabletPadId, std::chrono::microseconds time) override;
|
|
|
|
void tabletPadStripEvent(int number, int position, bool isFinger, const TabletPadId &tabletPadId, std::chrono::microseconds time) override;
|
|
|
|
void tabletPadRingEvent(int number, int position, bool isFinger, const TabletPadId &tabletPadId, std::chrono::microseconds time) override;
|
2019-12-01 17:51:15 +00:00
|
|
|
|
2016-03-30 14:23:58 +00:00
|
|
|
private:
|
|
|
|
QTextEdit *m_textEdit;
|
|
|
|
};
|
|
|
|
|
[libinput] Add a wrapper class Device for a libinput_device
Summary:
The Device class wraps all the information we can get from libinput
about the device, like whether it's a keyboard, pointer, touch, etc.
In addition some more information is queried to figure out how "useful"
a device is. For a keyboard all alphanumeric keys are checked whether
they exist, for a pointer all (normal) buttons are queried.
All the information is exposed as Q_PROPERTY and used by the
DebugConsole. The DebugConsole gained a new tab "Input Devices" which
renders all devices and their properties in a tree view. When plugging
in/out a device, the model gets reset, so it's always up to date.
The new Device class can be used in future to configure the device,
e.g. disable touch pad, set mouse acceleration, etc.
Reviewers: #plasma
Subscribers: plasma-devel
Projects: #plasma
Differential Revision: https://phabricator.kde.org/D1538
2016-05-04 11:42:26 +00:00
|
|
|
class InputDeviceModel : public QAbstractItemModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit InputDeviceModel(QObject *parent = nullptr);
|
Run clang-tidy with modernize-use-override check
Summary:
Currently code base of kwin can be viewed as two pieces. One is very
ancient, and the other one is more modern, which uses new C++ features.
The main problem with the ancient code is that it was written before
C++11 era. So, no override or final keywords, lambdas, etc.
Quite recently, KDE compiler settings were changed to show a warning if
a virtual method has missing override keyword. As you might have already
guessed, this fired back at us because of that ancient code. We had
about 500 new compiler warnings.
A "solution" was proposed to that problem - disable -Wno-suggest-override
and the other similar warning for clang. It's hard to call a solution
because those warnings are disabled not only for the old code, but also
for new. This is not what we want!
The main argument for not actually fixing the problem was that git
history will be screwed as well because of human factor. While good git
history is a very important thing, we should not go crazy about it and
block every change that somehow alters git history. git blame allows to
specify starting revision for a reason.
The other argument (human factor) can be easily solved by using tools
such as clang-tidy. clang-tidy is a clang-based linter for C++. It can
be used for various things, e.g. fixing coding style(e.g. add missing
braces to if statements, readability-braces-around-statements check),
or in our case add missing override keywords.
Test Plan: Compiles.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: davidedmundson, apol, romangg, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D22371
2019-07-22 16:52:26 +00:00
|
|
|
~InputDeviceModel() override;
|
[libinput] Add a wrapper class Device for a libinput_device
Summary:
The Device class wraps all the information we can get from libinput
about the device, like whether it's a keyboard, pointer, touch, etc.
In addition some more information is queried to figure out how "useful"
a device is. For a keyboard all alphanumeric keys are checked whether
they exist, for a pointer all (normal) buttons are queried.
All the information is exposed as Q_PROPERTY and used by the
DebugConsole. The DebugConsole gained a new tab "Input Devices" which
renders all devices and their properties in a tree view. When plugging
in/out a device, the model gets reset, so it's always up to date.
The new Device class can be used in future to configure the device,
e.g. disable touch pad, set mouse acceleration, etc.
Reviewers: #plasma
Subscribers: plasma-devel
Projects: #plasma
Differential Revision: https://phabricator.kde.org/D1538
2016-05-04 11:42:26 +00:00
|
|
|
|
|
|
|
int columnCount(const QModelIndex &parent) const override;
|
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
2022-03-23 10:13:38 +00:00
|
|
|
QModelIndex index(int row, int column, const QModelIndex &parent) const override;
|
[libinput] Add a wrapper class Device for a libinput_device
Summary:
The Device class wraps all the information we can get from libinput
about the device, like whether it's a keyboard, pointer, touch, etc.
In addition some more information is queried to figure out how "useful"
a device is. For a keyboard all alphanumeric keys are checked whether
they exist, for a pointer all (normal) buttons are queried.
All the information is exposed as Q_PROPERTY and used by the
DebugConsole. The DebugConsole gained a new tab "Input Devices" which
renders all devices and their properties in a tree view. When plugging
in/out a device, the model gets reset, so it's always up to date.
The new Device class can be used in future to configure the device,
e.g. disable touch pad, set mouse acceleration, etc.
Reviewers: #plasma
Subscribers: plasma-devel
Projects: #plasma
Differential Revision: https://phabricator.kde.org/D1538
2016-05-04 11:42:26 +00:00
|
|
|
int rowCount(const QModelIndex &parent) const override;
|
|
|
|
QModelIndex parent(const QModelIndex &child) const override;
|
2016-05-06 12:48:25 +00:00
|
|
|
|
2021-10-22 16:50:18 +00:00
|
|
|
private Q_SLOTS:
|
|
|
|
void slotPropertyChanged();
|
|
|
|
|
2016-05-06 12:48:25 +00:00
|
|
|
private:
|
2021-10-02 08:26:51 +00:00
|
|
|
void setupDeviceConnections(InputDevice *device);
|
|
|
|
QList<InputDevice *> m_devices;
|
[libinput] Add a wrapper class Device for a libinput_device
Summary:
The Device class wraps all the information we can get from libinput
about the device, like whether it's a keyboard, pointer, touch, etc.
In addition some more information is queried to figure out how "useful"
a device is. For a keyboard all alphanumeric keys are checked whether
they exist, for a pointer all (normal) buttons are queried.
All the information is exposed as Q_PROPERTY and used by the
DebugConsole. The DebugConsole gained a new tab "Input Devices" which
renders all devices and their properties in a tree view. When plugging
in/out a device, the model gets reset, so it's always up to date.
The new Device class can be used in future to configure the device,
e.g. disable touch pad, set mouse acceleration, etc.
Reviewers: #plasma
Subscribers: plasma-devel
Projects: #plasma
Differential Revision: https://phabricator.kde.org/D1538
2016-05-04 11:42:26 +00:00
|
|
|
};
|
|
|
|
|
2021-08-31 06:45:20 +00:00
|
|
|
class DataSourceModel : public QAbstractItemModel
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
using QAbstractItemModel::QAbstractItemModel;
|
|
|
|
|
|
|
|
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
QModelIndex parent(const QModelIndex &child) const override;
|
|
|
|
int rowCount(const QModelIndex &parent) const override;
|
|
|
|
int columnCount(const QModelIndex &parent) const override
|
|
|
|
{
|
|
|
|
return parent.isValid() ? 0 : 2;
|
|
|
|
}
|
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
|
|
|
|
|
2023-09-13 17:59:29 +00:00
|
|
|
void setSource(AbstractDataSource *source);
|
2021-08-31 06:45:20 +00:00
|
|
|
|
|
|
|
private:
|
2023-09-13 17:59:29 +00:00
|
|
|
AbstractDataSource *m_source = nullptr;
|
2021-08-31 06:45:20 +00:00
|
|
|
QVector<QByteArray> m_data;
|
|
|
|
};
|
2016-03-14 09:23:52 +00:00
|
|
|
}
|