2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2013-04-03 10:19:27 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2013 Martin Gräßlin <mgraesslin@kde.org>
|
2013-04-03 10:19:27 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2013-04-03 10:19:27 +00:00
|
|
|
#ifndef KWIN_SCREENS_H
|
|
|
|
#define KWIN_SCREENS_H
|
|
|
|
|
|
|
|
// KWin includes
|
|
|
|
#include <kwinglobals.h>
|
|
|
|
// KDE includes
|
2014-03-17 15:24:10 +00:00
|
|
|
#include <KConfig>
|
2014-03-18 13:37:01 +00:00
|
|
|
#include <KSharedConfig>
|
2013-04-03 10:19:27 +00:00
|
|
|
// Qt includes
|
|
|
|
#include <QObject>
|
|
|
|
#include <QRect>
|
2013-04-21 18:18:18 +00:00
|
|
|
#include <QTimer>
|
2015-11-20 15:11:35 +00:00
|
|
|
#include <QVector>
|
2013-04-03 10:19:27 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
2015-03-05 13:07:20 +00:00
|
|
|
class AbstractClient;
|
2020-12-17 10:34:04 +00:00
|
|
|
class AbstractOutput;
|
2016-04-07 07:18:10 +00:00
|
|
|
class Platform;
|
2013-04-03 10:19:27 +00:00
|
|
|
|
2015-05-05 15:58:09 +00:00
|
|
|
class KWIN_EXPORT Screens : public QObject
|
2013-04-03 10:19:27 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(int count READ count WRITE setCount NOTIFY countChanged)
|
|
|
|
|
|
|
|
public:
|
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
|
|
|
~Screens() override;
|
2013-04-03 10:19:27 +00:00
|
|
|
int count() const;
|
2021-08-28 12:41:16 +00:00
|
|
|
QRect geometry(int screen) const;
|
2014-02-27 08:55:45 +00:00
|
|
|
/**
|
|
|
|
* The bounding geometry of all screens combined. Overlapping areas
|
|
|
|
* are not counted multiple times.
|
|
|
|
* @see geometryChanged()
|
2019-07-29 18:58:33 +00:00
|
|
|
*/
|
2014-02-27 08:55:45 +00:00
|
|
|
QRect geometry() const;
|
2016-10-25 23:36:02 +00:00
|
|
|
|
2018-06-23 22:26:54 +00:00
|
|
|
/**
|
|
|
|
* The highest scale() of all connected screens
|
|
|
|
* for use when deciding what scale to load global assets at
|
|
|
|
* Similar to QGuiApplication::scale
|
|
|
|
* @see scale
|
2019-07-29 18:58:33 +00:00
|
|
|
*/
|
2018-06-23 22:26:54 +00:00
|
|
|
qreal maxScale() const;
|
|
|
|
|
2019-02-02 18:17:44 +00:00
|
|
|
/**
|
2016-10-25 23:36:02 +00:00
|
|
|
* The output scale for this display, for use by high DPI displays
|
2019-07-29 18:58:33 +00:00
|
|
|
*/
|
2021-08-28 12:41:16 +00:00
|
|
|
qreal scale(int screen) const;
|
2014-02-27 08:55:45 +00:00
|
|
|
/**
|
|
|
|
* The bounding size of all screens combined. Overlapping areas
|
|
|
|
* are not counted multiple times.
|
|
|
|
*
|
|
|
|
* @see geometry()
|
|
|
|
* @see sizeChanged()
|
2019-07-29 18:58:33 +00:00
|
|
|
*/
|
2014-02-27 08:55:45 +00:00
|
|
|
QSize size() const;
|
2021-08-28 12:41:16 +00:00
|
|
|
int number(const QPoint &pos) const;
|
2013-04-03 10:19:27 +00:00
|
|
|
|
2013-09-23 21:04:17 +00:00
|
|
|
int intersecting(const QRect &r) const;
|
|
|
|
|
2013-04-03 10:19:27 +00:00
|
|
|
Q_SIGNALS:
|
|
|
|
void countChanged(int previousCount, int newCount);
|
|
|
|
/**
|
|
|
|
* Emitted whenever the screens are changed either count or geometry.
|
2019-07-29 18:58:33 +00:00
|
|
|
*/
|
2013-04-03 10:19:27 +00:00
|
|
|
void changed();
|
2014-02-27 08:55:45 +00:00
|
|
|
/**
|
|
|
|
* Emitted when the geometry of all screens combined changes.
|
|
|
|
* Not emitted when the geometry of an individual screen changes.
|
|
|
|
* @see geometry()
|
2019-07-29 18:58:33 +00:00
|
|
|
*/
|
2014-02-27 08:55:45 +00:00
|
|
|
void geometryChanged();
|
|
|
|
/**
|
|
|
|
* Emitted when the size of all screens combined changes.
|
|
|
|
* Not emitted when the size of an individual screen changes.
|
|
|
|
* @see size()
|
2019-07-29 18:58:33 +00:00
|
|
|
*/
|
2014-02-27 08:55:45 +00:00
|
|
|
void sizeChanged();
|
2018-06-23 22:26:54 +00:00
|
|
|
/**
|
|
|
|
* Emitted when the maximum scale of all attached screens changes
|
|
|
|
* @see maxScale
|
2019-07-29 18:58:33 +00:00
|
|
|
*/
|
2018-06-23 22:26:54 +00:00
|
|
|
void maxScaleChanged();
|
2013-04-03 10:19:27 +00:00
|
|
|
|
|
|
|
protected Q_SLOTS:
|
|
|
|
void setCount(int count);
|
2021-08-28 12:41:16 +00:00
|
|
|
void updateCount();
|
2013-04-03 10:19:27 +00:00
|
|
|
|
2014-02-27 08:55:45 +00:00
|
|
|
protected:
|
|
|
|
/**
|
|
|
|
* Called once the singleton instance has been created.
|
|
|
|
* Any initialization code should go into this method. Overriding classes have to call
|
|
|
|
* the base implementation first.
|
2019-07-29 18:58:33 +00:00
|
|
|
*/
|
2021-08-28 12:41:16 +00:00
|
|
|
void init();
|
2014-02-27 08:55:45 +00:00
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void updateSize();
|
|
|
|
|
2013-04-03 10:19:27 +00:00
|
|
|
private:
|
2020-12-17 10:34:04 +00:00
|
|
|
AbstractOutput *findOutput(int screenId) const;
|
|
|
|
|
2013-04-03 10:19:27 +00:00
|
|
|
int m_count;
|
2014-02-27 08:55:45 +00:00
|
|
|
QSize m_boundingSize;
|
2018-06-23 22:26:54 +00:00
|
|
|
qreal m_maxScale;
|
2013-04-03 10:19:27 +00:00
|
|
|
|
|
|
|
KWIN_SINGLETON(Screens)
|
|
|
|
};
|
|
|
|
|
|
|
|
inline
|
|
|
|
int Screens::count() const
|
|
|
|
{
|
|
|
|
return m_count;
|
|
|
|
}
|
|
|
|
|
2014-02-27 08:55:45 +00:00
|
|
|
inline
|
|
|
|
QSize Screens::size() const
|
|
|
|
{
|
|
|
|
return m_boundingSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
QRect Screens::geometry() const
|
|
|
|
{
|
|
|
|
return QRect(QPoint(0,0), size());
|
|
|
|
}
|
|
|
|
|
2013-04-03 10:19:27 +00:00
|
|
|
inline
|
|
|
|
Screens *screens()
|
|
|
|
{
|
|
|
|
return Screens::self();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // KWIN_SCREENS_H
|