kwin/kcmkwin/kwintabbox/layoutpreview.h

71 lines
2 KiB
C
Raw Normal View History

/********************************************************************
KWin - the KDE window manager
This file is part of the KDE project.
Copyright (C) 2009, 2011 Martin Gräßlin <mgraesslin@kde.org>
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 2 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/>.
*********************************************************************/
#ifndef KWIN_TABBOX_LAYOUTPREVIEW_H
#define KWIN_TABBOX_LAYOUTPREVIEW_H
#include <QAbstractListModel>
#include <QQuickView>
#include <QQuickImageProvider>
namespace KWin
{
namespace TabBox
{
class LayoutPreview : public QQuickView
2011-01-30 14:34:42 +00:00
{
Q_OBJECT
public:
explicit LayoutPreview(QWindow *parent = nullptr);
virtual ~LayoutPreview();
void setLayout(const QString &path, const QString &name);
};
class TabBoxImageProvider : public QQuickImageProvider
{
public:
explicit TabBoxImageProvider(QAbstractListModel *model);
virtual QPixmap requestPixmap(const QString &id, QSize *size, const QSize &requestedSize);
private:
QAbstractListModel *m_model;
};
class ExampleClientModel : public QAbstractListModel
{
Q_OBJECT
public:
explicit ExampleClientModel(QObject *parent = NULL);
virtual ~ExampleClientModel();
virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
virtual int rowCount(const QModelIndex &parent = QModelIndex()) const;
private:
void init();
QStringList m_nameList;
};
} // namespace TabBox
} // namespace KWin
#endif // KWIN_TABBOX_LAYOUTPREVIEW_H