2007-04-29 17:35:43 +00:00
|
|
|
/*
|
|
|
|
* windows.h
|
|
|
|
*
|
|
|
|
* Copyright (c) 1997 Patrick Dowler dowler@morgul.fsh.uvic.ca
|
|
|
|
* Copyright (c) 2001 Waldo Bastian bastian@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, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2008-05-12 12:13:52 +00:00
|
|
|
#ifndef KKWMWINDOWS_H
|
|
|
|
#define KKWMWINDOWS_H
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include <kcmodule.h>
|
|
|
|
|
2012-09-24 03:57:52 +00:00
|
|
|
#include "ui_advanced.h"
|
2012-09-22 10:10:07 +00:00
|
|
|
#include "ui_focus.h"
|
2012-09-24 03:24:31 +00:00
|
|
|
#include "ui_moving.h"
|
2012-09-22 10:10:07 +00:00
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
class QRadioButton;
|
|
|
|
class QCheckBox;
|
|
|
|
class QPushButton;
|
2009-10-30 08:10:35 +00:00
|
|
|
class KComboBox;
|
2007-04-29 17:35:43 +00:00
|
|
|
class QGroupBox;
|
|
|
|
class QLabel;
|
|
|
|
class QSlider;
|
2013-12-12 21:37:09 +00:00
|
|
|
class QGroupBox;
|
2013-12-11 20:35:54 +00:00
|
|
|
class QSpinBox;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
class KColorButton;
|
|
|
|
|
2012-09-22 10:10:07 +00:00
|
|
|
|
|
|
|
class KWinFocusConfigForm : public QWidget, public Ui::KWinFocusConfigForm
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit KWinFocusConfigForm(QWidget* parent);
|
|
|
|
};
|
|
|
|
|
2012-09-24 03:24:31 +00:00
|
|
|
class KWinMovingConfigForm : public QWidget, public Ui::KWinMovingConfigForm
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit KWinMovingConfigForm(QWidget* parent);
|
|
|
|
};
|
|
|
|
|
2012-09-24 03:57:52 +00:00
|
|
|
class KWinAdvancedConfigForm : public QWidget, public Ui::KWinAdvancedConfigForm
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit KWinAdvancedConfigForm(QWidget* parent);
|
|
|
|
};
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
class KFocusConfig : public KCModule
|
|
|
|
{
|
2011-01-30 14:34:42 +00:00
|
|
|
Q_OBJECT
|
2007-04-29 17:35:43 +00:00
|
|
|
public:
|
2013-09-30 05:29:38 +00:00
|
|
|
KFocusConfig(bool _standAlone, KConfig *_config, QWidget *parent);
|
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
|
|
|
~KFocusConfig() override;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
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
|
|
|
void load() override;
|
|
|
|
void save() override;
|
|
|
|
void defaults() override;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2009-12-14 03:18:43 +00:00
|
|
|
protected:
|
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
|
|
|
void showEvent(QShowEvent *ev) override;
|
2009-12-14 03:18:43 +00:00
|
|
|
|
2013-09-30 05:26:46 +00:00
|
|
|
private Q_SLOTS:
|
2011-01-30 14:34:42 +00:00
|
|
|
void setDelayFocusEnabled();
|
|
|
|
void focusPolicyChanged();
|
|
|
|
void autoRaiseOnTog(bool);//CT 23Oct1998
|
|
|
|
void delayFocusOnTog(bool);
|
|
|
|
void updateActiveMouseScreen();
|
2013-04-13 18:07:08 +00:00
|
|
|
void updateMultiScreen();
|
2011-01-30 14:34:42 +00:00
|
|
|
void changed() {
|
|
|
|
emit KCModule::changed(true);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
int getFocus(void);
|
|
|
|
int getAutoRaiseInterval(void);
|
|
|
|
int getDelayFocusInterval(void);
|
|
|
|
|
|
|
|
void setFocus(int);
|
|
|
|
void setAutoRaiseInterval(int);
|
|
|
|
void setAutoRaise(bool);
|
|
|
|
void setDelayFocusInterval(int);
|
|
|
|
void setClickRaise(bool);
|
|
|
|
void setSeparateScreenFocus(bool);
|
|
|
|
void setActiveMouseScreen(bool);
|
|
|
|
|
|
|
|
void setFocusStealing(int);
|
|
|
|
|
|
|
|
KConfig *config;
|
|
|
|
bool standAlone;
|
2012-09-22 10:10:07 +00:00
|
|
|
|
|
|
|
KWinFocusConfigForm *m_ui;
|
2007-04-29 17:35:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class KMovingConfig : public KCModule
|
|
|
|
{
|
2011-01-30 14:34:42 +00:00
|
|
|
Q_OBJECT
|
2007-04-29 17:35:43 +00:00
|
|
|
public:
|
2013-09-30 05:29:38 +00:00
|
|
|
KMovingConfig(bool _standAlone, KConfig *config, QWidget *parent);
|
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
|
|
|
~KMovingConfig() override;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
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
|
|
|
void load() override;
|
|
|
|
void save() override;
|
|
|
|
void defaults() override;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2009-12-14 03:18:43 +00:00
|
|
|
protected:
|
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
|
|
|
void showEvent(QShowEvent *ev) override;
|
2009-12-14 03:18:43 +00:00
|
|
|
|
2013-09-30 05:26:46 +00:00
|
|
|
private Q_SLOTS:
|
2011-01-30 14:34:42 +00:00
|
|
|
void changed() {
|
|
|
|
emit KCModule::changed(true);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
private:
|
2011-01-30 14:34:42 +00:00
|
|
|
bool getGeometryTip(void); //KS
|
|
|
|
|
|
|
|
void setGeometryTip(bool); //KS
|
|
|
|
|
|
|
|
KConfig *config;
|
|
|
|
bool standAlone;
|
2012-09-24 03:24:31 +00:00
|
|
|
KWinMovingConfigForm *m_ui;
|
2011-01-30 14:34:42 +00:00
|
|
|
|
|
|
|
int getBorderSnapZone();
|
|
|
|
void setBorderSnapZone(int);
|
|
|
|
int getWindowSnapZone();
|
|
|
|
void setWindowSnapZone(int);
|
|
|
|
int getCenterSnapZone();
|
|
|
|
void setCenterSnapZone(int);
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class KAdvancedConfig : public KCModule
|
|
|
|
{
|
2011-01-30 14:34:42 +00:00
|
|
|
Q_OBJECT
|
2007-04-29 17:35:43 +00:00
|
|
|
public:
|
2013-09-30 05:29:38 +00:00
|
|
|
KAdvancedConfig(bool _standAlone, KConfig *config, QWidget *parent);
|
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
|
|
|
~KAdvancedConfig() override;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
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
|
|
|
void load() override;
|
|
|
|
void save() override;
|
|
|
|
void defaults() override;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2009-12-14 03:18:43 +00:00
|
|
|
protected:
|
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
|
|
|
void showEvent(QShowEvent *ev) override;
|
2009-12-14 03:18:43 +00:00
|
|
|
|
2013-09-30 05:26:46 +00:00
|
|
|
private Q_SLOTS:
|
2011-01-30 14:34:42 +00:00
|
|
|
void shadeHoverChanged(bool);
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void changed() {
|
|
|
|
emit KCModule::changed(true);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
int getShadeHoverInterval(void);
|
|
|
|
void setShadeHover(bool);
|
|
|
|
void setShadeHoverInterval(int);
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KConfig *config;
|
|
|
|
bool standAlone;
|
2012-09-24 03:57:52 +00:00
|
|
|
KWinAdvancedConfigForm *m_ui;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void setHideUtilityWindowsForInactive(bool);
|
2007-04-29 17:35:43 +00:00
|
|
|
};
|
2007-08-27 04:31:52 +00:00
|
|
|
|
2008-05-12 12:13:52 +00:00
|
|
|
#endif // KKWMWINDOWS_H
|