2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2008-07-15 19:21:50 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2008 Martin Gräßlin <mgraesslin@kde.org>
|
2008-07-15 19:21:50 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2008-07-15 19:21:50 +00:00
|
|
|
|
|
|
|
#ifndef KWIN_CUBE_H
|
|
|
|
#define KWIN_CUBE_H
|
|
|
|
|
|
|
|
#include <kwineffects.h>
|
|
|
|
#include <kwinglutils.h>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QQueue>
|
2010-12-18 09:18:54 +00:00
|
|
|
#include <QMatrix4x4>
|
2017-11-08 10:23:00 +00:00
|
|
|
#include <QFont>
|
2009-10-22 07:06:44 +00:00
|
|
|
#include "cube_inside.h"
|
|
|
|
#include "cube_proxy.h"
|
2008-07-15 19:21:50 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class CubeEffect
|
2011-02-25 19:25:21 +00:00
|
|
|
: public Effect
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2008-07-15 19:21:50 +00:00
|
|
|
Q_OBJECT
|
2012-08-11 09:24:37 +00:00
|
|
|
Q_PROPERTY(qreal cubeOpacity READ configuredCubeOpacity)
|
|
|
|
Q_PROPERTY(bool opacityDesktopOnly READ isOpacityDesktopOnly)
|
|
|
|
Q_PROPERTY(bool displayDesktopName READ isDisplayDesktopName)
|
|
|
|
Q_PROPERTY(bool reflection READ isReflection)
|
2018-07-02 08:31:20 +00:00
|
|
|
Q_PROPERTY(int rotationDuration READ configuredRotationDuration)
|
2012-08-11 09:24:37 +00:00
|
|
|
Q_PROPERTY(QColor backgroundColor READ configuredBackgroundColor)
|
|
|
|
Q_PROPERTY(QColor capColor READ configuredCapColor)
|
|
|
|
Q_PROPERTY(bool paintCaps READ isPaintCaps)
|
|
|
|
Q_PROPERTY(bool closeOnMouseRelease READ isCloseOnMouseRelease)
|
|
|
|
Q_PROPERTY(qreal zPosition READ configuredZPosition)
|
|
|
|
Q_PROPERTY(bool useForTabBox READ isUseForTabBox)
|
|
|
|
Q_PROPERTY(bool invertKeys READ isInvertKeys)
|
|
|
|
Q_PROPERTY(bool invertMouse READ isInvertMouse)
|
|
|
|
Q_PROPERTY(qreal capDeformationFactor READ configuredCapDeformationFactor)
|
|
|
|
Q_PROPERTY(bool useZOrdering READ isUseZOrdering)
|
|
|
|
Q_PROPERTY(bool texturedCaps READ isTexturedCaps)
|
|
|
|
// TODO: electric borders: not a registered type
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
|
|
|
CubeEffect();
|
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
|
|
|
~CubeEffect() override;
|
|
|
|
void reconfigure(ReconfigureFlags) override;
|
Provide expected presentation time to effects
Effects are given the interval between two consecutive frames. The main
flaw of this approach is that if the Compositor transitions from the idle
state to "active" state, i.e. when there is something to repaint,
effects may see a very large interval between the last painted frame and
the current. In order to address this issue, the Scene invalidates the
timer that is used to measure time between consecutive frames before the
Compositor is about to become idle.
While this works perfectly fine with Xinerama-style rendering, with per
screen rendering, determining whether the compositor is about to idle is
rather a tedious task mostly because a single output can't be used for
the test.
Furthermore, since the Compositor schedules pointless repaints just to
ensure that it's idle, it might take several attempts to figure out
whether the scene timer must be invalidated if you use (true) per screen
rendering.
Ideally, all effects should use a timeline helper that is aware of the
underlying render loop and its timings. However, this option is off the
table because it will involve a lot of work to implement it.
Alternative and much simpler option is to pass the expected presentation
time to effects rather than time between consecutive frames. This means
that effects are responsible for determining how much animation timelines
have to be advanced. Typically, an effect would have to store the
presentation timestamp provided in either prePaint{Screen,Window} and
use it in the subsequent prePaint{Screen,Window} call to estimate the
amount of time passed between the next and the last frames.
Unfortunately, this is an API incompatible change. However, it shouldn't
take a lot of work to port third-party binary effects, which don't use the
AnimationEffect class, to the new API. On the bright side, we no longer
need to be concerned about the Compositor getting idle.
We do still try to determine whether the Compositor is about to idle,
primarily, because the OpenGL render backend swaps buffers on present,
but that will change with the ongoing compositing timing rework.
2020-11-20 15:44:04 +00:00
|
|
|
void prePaintScreen(ScreenPrePaintData& data, std::chrono::milliseconds presentTime) override;
|
2019-10-29 22:04:15 +00:00
|
|
|
void paintScreen(int mask, const QRegion ®ion, ScreenPaintData& data) override;
|
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 postPaintScreen() override;
|
Provide expected presentation time to effects
Effects are given the interval between two consecutive frames. The main
flaw of this approach is that if the Compositor transitions from the idle
state to "active" state, i.e. when there is something to repaint,
effects may see a very large interval between the last painted frame and
the current. In order to address this issue, the Scene invalidates the
timer that is used to measure time between consecutive frames before the
Compositor is about to become idle.
While this works perfectly fine with Xinerama-style rendering, with per
screen rendering, determining whether the compositor is about to idle is
rather a tedious task mostly because a single output can't be used for
the test.
Furthermore, since the Compositor schedules pointless repaints just to
ensure that it's idle, it might take several attempts to figure out
whether the scene timer must be invalidated if you use (true) per screen
rendering.
Ideally, all effects should use a timeline helper that is aware of the
underlying render loop and its timings. However, this option is off the
table because it will involve a lot of work to implement it.
Alternative and much simpler option is to pass the expected presentation
time to effects rather than time between consecutive frames. This means
that effects are responsible for determining how much animation timelines
have to be advanced. Typically, an effect would have to store the
presentation timestamp provided in either prePaint{Screen,Window} and
use it in the subsequent prePaint{Screen,Window} call to estimate the
amount of time passed between the next and the last frames.
Unfortunately, this is an API incompatible change. However, it shouldn't
take a lot of work to port third-party binary effects, which don't use the
AnimationEffect class, to the new API. On the bright side, we no longer
need to be concerned about the Compositor getting idle.
We do still try to determine whether the Compositor is about to idle,
primarily, because the OpenGL render backend swaps buffers on present,
but that will change with the ongoing compositing timing rework.
2020-11-20 15:44:04 +00:00
|
|
|
void prePaintWindow(EffectWindow* w, WindowPrePaintData& data, std::chrono::milliseconds presentTime) override;
|
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 paintWindow(EffectWindow* w, int mask, QRegion region, WindowPaintData& data) override;
|
|
|
|
bool borderActivated(ElectricBorder border) override;
|
|
|
|
void grabbedKeyboardEvent(QKeyEvent* e) override;
|
|
|
|
void windowInputMouseEvent(QEvent* e) override;
|
|
|
|
bool isActive() const override;
|
2008-12-04 08:47:07 +00:00
|
|
|
|
2014-03-24 10:50:09 +00:00
|
|
|
int requestedEffectChainPosition() const override {
|
|
|
|
return 50;
|
|
|
|
}
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
// proxy functions
|
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* proxy() override;
|
2011-01-30 14:34:42 +00:00
|
|
|
void registerCubeInsideEffect(CubeInsideEffect* effect);
|
|
|
|
void unregisterCubeInsideEffect(CubeInsideEffect* effect);
|
2009-10-22 07:06:44 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
static bool supported();
|
2012-08-11 09:24:37 +00:00
|
|
|
|
|
|
|
// for properties
|
|
|
|
qreal configuredCubeOpacity() const {
|
|
|
|
return cubeOpacity;
|
|
|
|
}
|
|
|
|
bool isOpacityDesktopOnly() const {
|
|
|
|
return opacityDesktopOnly;
|
|
|
|
}
|
|
|
|
bool isDisplayDesktopName() const {
|
|
|
|
return displayDesktopName;
|
|
|
|
}
|
|
|
|
bool isReflection() const {
|
|
|
|
return reflection;
|
|
|
|
}
|
2018-07-02 08:31:20 +00:00
|
|
|
int configuredRotationDuration() const {
|
|
|
|
return rotationDuration.count();
|
2012-08-11 09:24:37 +00:00
|
|
|
}
|
|
|
|
QColor configuredBackgroundColor() const {
|
|
|
|
return backgroundColor;
|
|
|
|
}
|
|
|
|
QColor configuredCapColor() const {
|
|
|
|
return capColor;
|
|
|
|
}
|
|
|
|
bool isPaintCaps() const {
|
|
|
|
return paintCaps;
|
|
|
|
}
|
|
|
|
bool isCloseOnMouseRelease() const {
|
|
|
|
return closeOnMouseRelease;
|
|
|
|
}
|
|
|
|
qreal configuredZPosition() const {
|
|
|
|
return zPosition;
|
|
|
|
}
|
|
|
|
bool isUseForTabBox() const {
|
|
|
|
return useForTabBox;
|
|
|
|
}
|
|
|
|
bool isInvertKeys() const {
|
|
|
|
return invertKeys;
|
|
|
|
}
|
|
|
|
bool isInvertMouse() const {
|
|
|
|
return invertMouse;
|
|
|
|
}
|
|
|
|
qreal configuredCapDeformationFactor() const {
|
|
|
|
return capDeformationFactor;
|
|
|
|
}
|
|
|
|
bool isUseZOrdering() const {
|
|
|
|
return useZOrdering;
|
|
|
|
}
|
|
|
|
bool isTexturedCaps() const {
|
|
|
|
return texturedCaps;
|
|
|
|
}
|
2013-07-22 14:07:39 +00:00
|
|
|
private Q_SLOTS:
|
2011-01-30 14:34:42 +00:00
|
|
|
void toggleCube();
|
|
|
|
void toggleCylinder();
|
|
|
|
void toggleSphere();
|
|
|
|
// slots for global shortcut changed
|
|
|
|
// needed to toggle the effect
|
2013-08-14 19:13:12 +00:00
|
|
|
void globalShortcutChanged(QAction *action, const QKeySequence &seq);
|
2011-03-06 11:15:16 +00:00
|
|
|
void slotTabBoxAdded(int mode);
|
|
|
|
void slotTabBoxUpdated();
|
|
|
|
void slotTabBoxClosed();
|
2012-05-01 11:53:56 +00:00
|
|
|
void slotCubeCapLoaded();
|
|
|
|
void slotWallPaperLoaded();
|
2011-01-30 14:34:42 +00:00
|
|
|
private:
|
2018-06-01 15:32:27 +00:00
|
|
|
enum class AnimationState {
|
|
|
|
None,
|
|
|
|
Start,
|
|
|
|
Stop,
|
2011-01-30 14:34:42 +00:00
|
|
|
Left,
|
2018-06-01 15:32:27 +00:00
|
|
|
Right
|
|
|
|
};
|
|
|
|
enum class VerticalAnimationState {
|
|
|
|
None,
|
2011-01-30 14:34:42 +00:00
|
|
|
Upwards,
|
|
|
|
Downwards
|
|
|
|
};
|
|
|
|
enum CubeMode {
|
|
|
|
Cube,
|
|
|
|
Cylinder,
|
|
|
|
Sphere
|
|
|
|
};
|
|
|
|
void toggle(CubeMode newMode = Cube);
|
|
|
|
void paintCube(int mask, QRegion region, ScreenPaintData& data);
|
2015-11-30 10:39:04 +00:00
|
|
|
void paintCap(bool frontFirst, float zOffset, const QMatrix4x4 &projection);
|
2011-01-30 14:34:42 +00:00
|
|
|
void paintCubeCap();
|
|
|
|
void paintCylinderCap();
|
|
|
|
void paintSphereCap();
|
|
|
|
bool loadShader();
|
|
|
|
void rotateCube();
|
|
|
|
void rotateToDesktop(int desktop);
|
|
|
|
void setActive(bool active);
|
2012-05-01 11:53:56 +00:00
|
|
|
QImage loadCubeCap(const QString &capPath);
|
|
|
|
QImage loadWallPaper(const QString &file);
|
2018-06-01 15:32:27 +00:00
|
|
|
void startAnimation(AnimationState state);
|
|
|
|
void startVerticalAnimation(VerticalAnimationState state);
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
bool activated;
|
|
|
|
bool cube_painting;
|
|
|
|
bool keyboard_grab;
|
|
|
|
bool schedule_close;
|
|
|
|
QList<ElectricBorder> borderActivate;
|
|
|
|
QList<ElectricBorder> borderActivateCylinder;
|
|
|
|
QList<ElectricBorder> borderActivateSphere;
|
|
|
|
int painting_desktop;
|
|
|
|
int frontDesktop;
|
|
|
|
float cubeOpacity;
|
|
|
|
bool opacityDesktopOnly;
|
|
|
|
bool displayDesktopName;
|
|
|
|
EffectFrame* desktopNameFrame;
|
|
|
|
QFont desktopNameFont;
|
|
|
|
bool reflection;
|
|
|
|
bool rotating;
|
|
|
|
bool verticalRotating;
|
|
|
|
bool desktopChangedWhileRotating;
|
|
|
|
bool paintCaps;
|
|
|
|
QColor backgroundColor;
|
|
|
|
QColor capColor;
|
|
|
|
GLTexture* wallpaper;
|
|
|
|
bool texturedCaps;
|
|
|
|
GLTexture* capTexture;
|
2018-06-01 15:32:27 +00:00
|
|
|
// animations
|
|
|
|
// Horizontal/start/stop
|
|
|
|
float startAngle;
|
|
|
|
float currentAngle;
|
|
|
|
int startFrontDesktop;
|
|
|
|
AnimationState animationState;
|
2018-06-27 16:58:21 +00:00
|
|
|
TimeLine timeLine;
|
2018-06-01 15:32:27 +00:00
|
|
|
QQueue<AnimationState> animations;
|
|
|
|
// vertical
|
|
|
|
float verticalStartAngle;
|
|
|
|
float verticalCurrentAngle;
|
|
|
|
VerticalAnimationState verticalAnimationState;
|
2018-06-27 16:58:21 +00:00
|
|
|
TimeLine verticalTimeLine;
|
2018-06-01 15:32:27 +00:00
|
|
|
QQueue<VerticalAnimationState> verticalAnimations;
|
Provide expected presentation time to effects
Effects are given the interval between two consecutive frames. The main
flaw of this approach is that if the Compositor transitions from the idle
state to "active" state, i.e. when there is something to repaint,
effects may see a very large interval between the last painted frame and
the current. In order to address this issue, the Scene invalidates the
timer that is used to measure time between consecutive frames before the
Compositor is about to become idle.
While this works perfectly fine with Xinerama-style rendering, with per
screen rendering, determining whether the compositor is about to idle is
rather a tedious task mostly because a single output can't be used for
the test.
Furthermore, since the Compositor schedules pointless repaints just to
ensure that it's idle, it might take several attempts to figure out
whether the scene timer must be invalidated if you use (true) per screen
rendering.
Ideally, all effects should use a timeline helper that is aware of the
underlying render loop and its timings. However, this option is off the
table because it will involve a lot of work to implement it.
Alternative and much simpler option is to pass the expected presentation
time to effects rather than time between consecutive frames. This means
that effects are responsible for determining how much animation timelines
have to be advanced. Typically, an effect would have to store the
presentation timestamp provided in either prePaint{Screen,Window} and
use it in the subsequent prePaint{Screen,Window} call to estimate the
amount of time passed between the next and the last frames.
Unfortunately, this is an API incompatible change. However, it shouldn't
take a lot of work to port third-party binary effects, which don't use the
AnimationEffect class, to the new API. On the bright side, we no longer
need to be concerned about the Compositor getting idle.
We do still try to determine whether the Compositor is about to idle,
primarily, because the OpenGL render backend swaps buffers on present,
but that will change with the ongoing compositing timing rework.
2020-11-20 15:44:04 +00:00
|
|
|
std::chrono::milliseconds lastPresentTime;
|
2018-06-01 15:32:27 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
bool reflectionPainting;
|
2018-06-27 16:58:21 +00:00
|
|
|
std::chrono::milliseconds rotationDuration;
|
2011-01-30 14:34:42 +00:00
|
|
|
int activeScreen;
|
|
|
|
bool bottomCap;
|
|
|
|
bool closeOnMouseRelease;
|
|
|
|
float zoom;
|
|
|
|
float zPosition;
|
|
|
|
bool useForTabBox;
|
|
|
|
bool invertKeys;
|
|
|
|
bool invertMouse;
|
|
|
|
bool tabBoxMode;
|
|
|
|
bool shortcutsRegistered;
|
|
|
|
CubeMode mode;
|
|
|
|
bool useShaders;
|
|
|
|
GLShader* cylinderShader;
|
|
|
|
GLShader* sphereShader;
|
|
|
|
GLShader* m_reflectionShader;
|
|
|
|
GLShader* m_capShader;
|
|
|
|
float capDeformationFactor;
|
|
|
|
bool useZOrdering;
|
|
|
|
float zOrderingFactor;
|
|
|
|
bool useList;
|
|
|
|
// needed for reflection
|
|
|
|
float mAddedHeightCoeff1;
|
|
|
|
float mAddedHeightCoeff2;
|
2008-08-12 07:41:19 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
QMatrix4x4 m_rotationMatrix;
|
|
|
|
QMatrix4x4 m_reflectionMatrix;
|
|
|
|
QMatrix4x4 m_textureMirrorMatrix;
|
2015-12-01 10:24:53 +00:00
|
|
|
QMatrix4x4 m_currentFaceMatrix;
|
2011-01-30 14:34:42 +00:00
|
|
|
GLVertexBuffer *m_cubeCapBuffer;
|
2009-03-30 11:27:57 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
// Shortcuts - needed to toggle the effect
|
2013-08-14 19:13:12 +00:00
|
|
|
QList<QKeySequence> cubeShortcut;
|
|
|
|
QList<QKeySequence> cylinderShortcut;
|
|
|
|
QList<QKeySequence> sphereShortcut;
|
2009-10-22 07:06:44 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
// proxy
|
|
|
|
CubeEffectProxy m_proxy;
|
|
|
|
QList< CubeInsideEffect* > m_cubeInsideEffects;
|
2017-04-01 17:30:44 +00:00
|
|
|
|
|
|
|
QAction *m_cubeAction;
|
|
|
|
QAction *m_cylinderAction;
|
|
|
|
QAction *m_sphereAction;
|
2011-01-30 14:34:42 +00:00
|
|
|
};
|
2008-07-15 19:21:50 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|