2009-09-13 11:36:45 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
2013-03-12 12:17:53 +00:00
|
|
|
Copyright (C) 2009 Martin Gräßlin <mgraesslin@kde.org>
|
2009-09-13 11:36:45 +00:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*********************************************************************/
|
|
|
|
|
2009-09-15 10:43:42 +00:00
|
|
|
#ifndef CLIENTMODEL_H
|
|
|
|
#define CLIENTMODEL_H
|
2009-09-13 11:36:45 +00:00
|
|
|
#include "tabboxhandler.h"
|
|
|
|
|
|
|
|
#include <QModelIndex>
|
|
|
|
/**
|
2019-02-02 18:17:44 +00:00
|
|
|
* @file
|
|
|
|
* This file defines the class ClientModel, the model for TabBoxClients.
|
|
|
|
*
|
|
|
|
* @author Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
* @since 4.4
|
|
|
|
**/
|
2009-09-13 11:36:45 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
namespace TabBox
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2019-02-02 18:17:44 +00:00
|
|
|
* The model for TabBoxClients used in TabBox.
|
|
|
|
*
|
|
|
|
* @author Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
* @since 4.4
|
|
|
|
**/
|
2009-09-13 11:36:45 +00:00
|
|
|
class ClientModel
|
|
|
|
: public QAbstractItemModel
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-11-27 14:00:09 +00:00
|
|
|
Q_OBJECT
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
ClientRole = Qt::UserRole, ///< The TabBoxClient
|
|
|
|
CaptionRole = Qt::UserRole + 1, ///< The caption of TabBoxClient
|
|
|
|
DesktopNameRole = Qt::UserRole + 2, ///< The name of the desktop the TabBoxClient is on
|
|
|
|
IconRole = Qt::UserRole + 3, // TODO: to be removed
|
|
|
|
WIdRole = Qt::UserRole + 5, ///< The window ID of TabBoxClient
|
2011-11-27 13:15:49 +00:00
|
|
|
MinimizedRole = Qt::UserRole + 6, ///< TabBoxClient is minimized
|
|
|
|
CloseableRole = Qt::UserRole + 7 ///< TabBoxClient can be closed
|
2011-01-30 14:34:42 +00:00
|
|
|
};
|
2014-02-24 15:42:43 +00:00
|
|
|
explicit ClientModel(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
|
|
|
~ClientModel() override;
|
|
|
|
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
|
|
|
|
int columnCount(const QModelIndex& parent = QModelIndex()) const override;
|
|
|
|
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
|
|
|
|
QModelIndex parent(const QModelIndex& child) const override;
|
|
|
|
QModelIndex index(int row, int column, const QModelIndex& parent = QModelIndex()) const override;
|
|
|
|
QHash<int, QByteArray> roleNames() const override;
|
2013-12-09 14:37:56 +00:00
|
|
|
Q_INVOKABLE QString longestCaption() const;
|
2009-09-13 11:36:45 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
/**
|
2019-02-02 18:17:44 +00:00
|
|
|
* @param client The TabBoxClient whose index should be returned
|
|
|
|
* @return Returns the ModelIndex of given TabBoxClient or an invalid ModelIndex
|
|
|
|
* if the model does not contain the given TabBoxClient.
|
|
|
|
**/
|
2012-05-20 13:52:24 +00:00
|
|
|
QModelIndex index(QWeakPointer<TabBoxClient> client) const;
|
2009-09-13 11:36:45 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
/**
|
2019-02-02 18:17:44 +00:00
|
|
|
* Generates a new list of TabBoxClients based on the current config.
|
|
|
|
* Calling this method will reset the model. If partialReset is true
|
|
|
|
* the top of the list is kept as a starting point. If not the
|
|
|
|
* current active client is used as the starting point to generate the
|
|
|
|
* list.
|
|
|
|
* @param desktop The desktop for which the list should be created
|
|
|
|
* @param partialReset Keep the currently selected client or regenerate everything
|
|
|
|
**/
|
2011-01-30 14:34:42 +00:00
|
|
|
void createClientList(int desktop, bool partialReset = false);
|
|
|
|
/**
|
2019-02-02 18:17:44 +00:00
|
|
|
* This method is provided as a overload for current desktop
|
|
|
|
* @see createClientList
|
|
|
|
**/
|
2011-01-30 14:34:42 +00:00
|
|
|
void createClientList(bool partialReset = false);
|
|
|
|
/**
|
2019-02-02 18:17:44 +00:00
|
|
|
* @return Returns the current list of TabBoxClients.
|
|
|
|
**/
|
2011-01-30 14:34:42 +00:00
|
|
|
TabBoxClientList clientList() const {
|
|
|
|
return m_clientList;
|
|
|
|
}
|
2009-09-13 11:36:45 +00:00
|
|
|
|
2011-11-27 14:00:09 +00:00
|
|
|
public Q_SLOTS:
|
|
|
|
void close(int index);
|
2011-11-27 16:03:35 +00:00
|
|
|
/**
|
|
|
|
* Activates the client at @p index and closes the TabBox.
|
|
|
|
* @param index The row index
|
|
|
|
**/
|
|
|
|
void activate(int index);
|
2011-11-27 14:00:09 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
private:
|
|
|
|
TabBoxClientList m_clientList;
|
|
|
|
};
|
2009-09-13 11:36:45 +00:00
|
|
|
|
|
|
|
} // namespace Tabbox
|
|
|
|
} // namespace KWin
|
|
|
|
|
2009-09-15 10:43:42 +00:00
|
|
|
#endif // CLIENTMODEL_H
|