2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-07-13 13:22:09 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2007 Rivo Laks <rivolaks@hot.ee>
|
2007-11-13 16:20:52 +00:00
|
|
|
Copyright (C) 2007 Christian Nitschkowski <christian.nitschkowski@kdemail.net>
|
2007-07-13 13:22:09 +00:00
|
|
|
|
2007-11-27 19:40:25 +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.
|
2007-07-13 13:22:09 +00:00
|
|
|
|
2007-11-27 19:40:25 +00:00
|
|
|
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/>.
|
|
|
|
*********************************************************************/
|
2007-07-13 13:22:09 +00:00
|
|
|
|
|
|
|
#include "lookingglass.h"
|
|
|
|
|
|
|
|
#include <kwinglutils.h>
|
2011-02-19 10:08:43 +00:00
|
|
|
#include <kwinglplatform.h>
|
2007-07-13 13:22:09 +00:00
|
|
|
|
|
|
|
#include <kactioncollection.h>
|
|
|
|
#include <kaction.h>
|
2007-11-13 16:20:52 +00:00
|
|
|
#include <kconfiggroup.h>
|
2007-07-13 13:22:09 +00:00
|
|
|
#include <klocale.h>
|
|
|
|
#include <kdebug.h>
|
2011-01-06 16:18:27 +00:00
|
|
|
#include <KDE/KGlobal>
|
|
|
|
#include <KDE/KStandardDirs>
|
|
|
|
#include <QVector2D>
|
2007-07-13 13:22:09 +00:00
|
|
|
|
2007-11-13 16:20:52 +00:00
|
|
|
#include <kmessagebox.h>
|
2007-07-13 13:22:09 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KWIN_EFFECT(lookingglass, LookingGlassEffect)
|
|
|
|
KWIN_EFFECT_SUPPORTED(lookingglass, LookingGlassEffect::supported())
|
2007-07-13 13:22:09 +00:00
|
|
|
|
|
|
|
|
2011-01-06 16:18:27 +00:00
|
|
|
LookingGlassEffect::LookingGlassEffect()
|
2011-02-25 19:25:21 +00:00
|
|
|
: zoom(1.0f)
|
2011-01-30 14:34:42 +00:00
|
|
|
, target_zoom(1.0f)
|
|
|
|
, polling(false)
|
|
|
|
, m_texture(NULL)
|
|
|
|
, m_fbo(NULL)
|
|
|
|
, m_vbo(NULL)
|
|
|
|
, m_shader(NULL)
|
|
|
|
, m_enabled(false)
|
|
|
|
, m_valid(false)
|
|
|
|
{
|
|
|
|
actionCollection = new KActionCollection(this);
|
2007-11-13 16:20:52 +00:00
|
|
|
actionCollection->setConfigGlobal(true);
|
|
|
|
actionCollection->setConfigGroup("LookingGlass");
|
|
|
|
|
2007-07-13 13:22:09 +00:00
|
|
|
KAction* a;
|
2011-01-30 14:34:42 +00:00
|
|
|
a = static_cast< KAction* >(actionCollection->addAction(KStandardAction::ZoomIn, this, SLOT(zoomIn())));
|
2007-07-13 13:22:09 +00:00
|
|
|
a->setGlobalShortcut(KShortcut(Qt::META + Qt::Key_Plus));
|
2011-01-30 14:34:42 +00:00
|
|
|
a = static_cast< KAction* >(actionCollection->addAction(KStandardAction::ZoomOut, this, SLOT(zoomOut())));
|
2007-07-13 13:22:09 +00:00
|
|
|
a->setGlobalShortcut(KShortcut(Qt::META + Qt::Key_Minus));
|
2011-01-30 14:34:42 +00:00
|
|
|
a = static_cast< KAction* >(actionCollection->addAction(KStandardAction::ActualSize, this, SLOT(toggle())));
|
2007-07-13 13:22:09 +00:00
|
|
|
a->setGlobalShortcut(KShortcut(Qt::META + Qt::Key_0));
|
2011-03-12 13:37:30 +00:00
|
|
|
connect(effects, SIGNAL(mouseChanged(QPoint,QPoint,Qt::MouseButtons,Qt::MouseButtons,Qt::KeyboardModifiers,Qt::KeyboardModifiers)),
|
|
|
|
this, SLOT(slotMouseChanged(QPoint,QPoint,Qt::MouseButtons,Qt::MouseButtons,Qt::KeyboardModifiers,Qt::KeyboardModifiers)));
|
2011-01-30 14:34:42 +00:00
|
|
|
reconfigure(ReconfigureAll);
|
|
|
|
}
|
2007-11-13 16:20:52 +00:00
|
|
|
|
|
|
|
LookingGlassEffect::~LookingGlassEffect()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-01-06 16:18:27 +00:00
|
|
|
delete m_texture;
|
|
|
|
delete m_fbo;
|
|
|
|
delete m_shader;
|
|
|
|
delete m_vbo;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-07-13 13:22:09 +00:00
|
|
|
|
2011-01-06 16:18:27 +00:00
|
|
|
bool LookingGlassEffect::supported()
|
|
|
|
{
|
|
|
|
return GLRenderTarget::supported() &&
|
2011-02-19 10:08:43 +00:00
|
|
|
GLPlatform::instance()->supports(GLSL) &&
|
2011-01-30 14:34:42 +00:00
|
|
|
(effects->compositingType() == OpenGLCompositing);
|
2011-01-06 16:18:27 +00:00
|
|
|
}
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void LookingGlassEffect::reconfigure(ReconfigureFlags)
|
|
|
|
{
|
2008-10-02 09:27:32 +00:00
|
|
|
KConfigGroup conf = EffectsHandler::effectConfig("LookingGlass");
|
|
|
|
initialradius = conf.readEntry("Radius", 200);
|
|
|
|
radius = initialradius;
|
|
|
|
kDebug(1212) << QString("Radius from config: %1").arg(radius) << endl;
|
|
|
|
actionCollection->readSettings();
|
2011-01-06 16:18:27 +00:00
|
|
|
m_valid = loadData();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2011-01-06 16:18:27 +00:00
|
|
|
|
|
|
|
bool LookingGlassEffect::loadData()
|
|
|
|
{
|
|
|
|
// If NPOT textures are not supported, use nearest power-of-two sized
|
|
|
|
// texture. It wastes memory, but it's possible to support systems without
|
|
|
|
// NPOT textures that way
|
|
|
|
int texw = displayWidth();
|
|
|
|
int texh = displayHeight();
|
|
|
|
if (!GLTexture::NPOTTextureSupported()) {
|
2011-01-30 14:34:42 +00:00
|
|
|
kWarning(1212) << "NPOT textures not supported, wasting some memory" ;
|
2011-01-06 16:18:27 +00:00
|
|
|
texw = nearestPowerOfTwo(texw);
|
|
|
|
texh = nearestPowerOfTwo(texh);
|
2008-10-02 09:27:32 +00:00
|
|
|
}
|
2011-01-06 16:18:27 +00:00
|
|
|
// Create texture and render target
|
|
|
|
m_texture = new GLTexture(texw, texh);
|
|
|
|
m_texture->setFilter(GL_LINEAR_MIPMAP_LINEAR);
|
|
|
|
m_texture->setWrapMode(GL_CLAMP_TO_EDGE);
|
|
|
|
|
|
|
|
m_fbo = new GLRenderTarget(m_texture);
|
|
|
|
if (!m_fbo->valid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString fragmentshader = KGlobal::dirs()->findResource("data", "kwin/lookingglass.frag");
|
|
|
|
m_shader = ShaderManager::instance()->loadFragmentShader(ShaderManager::SimpleShader, fragmentshader);
|
|
|
|
if (m_shader->isValid()) {
|
|
|
|
ShaderManager::instance()->pushShader(m_shader);
|
|
|
|
m_shader->setUniform("u_textureSize", QVector2D(displayWidth(), displayHeight()));
|
|
|
|
ShaderManager::instance()->popShader();
|
|
|
|
} else {
|
|
|
|
kError(1212) << "The shader failed to load!" << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_vbo = new GLVertexBuffer(GLVertexBuffer::Static);
|
|
|
|
QVector<float> verts;
|
|
|
|
QVector<float> texcoords;
|
|
|
|
texcoords << displayWidth() << 0.0;
|
|
|
|
verts << displayWidth() << 0.0;
|
|
|
|
texcoords << 0.0 << 0.0;
|
|
|
|
verts << 0.0 << 0.0;
|
|
|
|
texcoords << 0.0 << displayHeight();
|
|
|
|
verts << 0.0 << displayHeight();
|
|
|
|
texcoords << 0.0 << displayHeight();
|
|
|
|
verts << 0.0 << displayHeight();
|
|
|
|
texcoords << displayWidth() << displayHeight();
|
|
|
|
verts << displayWidth() << displayHeight();
|
|
|
|
texcoords << displayWidth() << 0.0;
|
|
|
|
verts << displayWidth() << 0.0;
|
|
|
|
m_vbo->setData(6, 2, verts.constData(), texcoords.constData());
|
|
|
|
return true;
|
|
|
|
}
|
2008-10-02 09:27:32 +00:00
|
|
|
|
2007-07-13 13:22:09 +00:00
|
|
|
void LookingGlassEffect::toggle()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (target_zoom == 1.0f) {
|
2007-07-13 13:22:09 +00:00
|
|
|
target_zoom = 2.0f;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!polling) {
|
2009-04-27 20:20:05 +00:00
|
|
|
polling = true;
|
|
|
|
effects->startMousePolling();
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
m_enabled = true;
|
|
|
|
} else {
|
2007-07-13 13:22:09 +00:00
|
|
|
target_zoom = 1.0f;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (polling) {
|
2009-04-27 20:20:05 +00:00
|
|
|
polling = false;
|
|
|
|
effects->stopMousePolling();
|
|
|
|
}
|
2011-09-07 07:40:57 +00:00
|
|
|
if (zoom == target_zoom) {
|
|
|
|
m_enabled = false;
|
|
|
|
}
|
2007-07-13 13:22:09 +00:00
|
|
|
}
|
2011-09-07 07:40:57 +00:00
|
|
|
effects->addRepaint(cursorPos().x() - radius, cursorPos().y() - radius, 2 * radius, 2 * radius);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-07-13 13:22:09 +00:00
|
|
|
|
|
|
|
void LookingGlassEffect::zoomIn()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-09-03 15:00:43 +00:00
|
|
|
target_zoom = qMin(7.0, target_zoom + 0.5);
|
2011-01-06 16:18:27 +00:00
|
|
|
m_enabled = true;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!polling) {
|
2009-02-01 15:16:52 +00:00
|
|
|
polling = true;
|
|
|
|
effects->startMousePolling();
|
2007-07-13 13:22:09 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
effects->addRepaint(cursorPos().x() - radius, cursorPos().y() - radius, 2 * radius, 2 * radius);
|
|
|
|
}
|
2007-07-13 13:22:09 +00:00
|
|
|
|
|
|
|
void LookingGlassEffect::zoomOut()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-07-13 13:22:09 +00:00
|
|
|
target_zoom -= 0.5;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (target_zoom < 1) {
|
2007-07-13 13:22:09 +00:00
|
|
|
target_zoom = 1;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (polling) {
|
2009-04-27 20:20:05 +00:00
|
|
|
polling = false;
|
|
|
|
effects->stopMousePolling();
|
2009-02-01 15:16:52 +00:00
|
|
|
}
|
2011-09-07 07:40:57 +00:00
|
|
|
if (zoom == target_zoom) {
|
|
|
|
m_enabled = false;
|
|
|
|
}
|
2007-07-13 13:22:09 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
effects->addRepaint(cursorPos().x() - radius, cursorPos().y() - radius, 2 * radius, 2 * radius);
|
|
|
|
}
|
2007-07-13 13:22:09 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void LookingGlassEffect::prePaintScreen(ScreenPrePaintData& data, int time)
|
|
|
|
{
|
|
|
|
if (zoom != target_zoom) {
|
|
|
|
double diff = time / animationTime(500.0);
|
|
|
|
if (target_zoom > zoom)
|
|
|
|
zoom = qMin(zoom * qMax(1.0 + diff, 1.2), target_zoom);
|
2007-07-13 13:22:09 +00:00
|
|
|
else
|
2011-01-30 14:34:42 +00:00
|
|
|
zoom = qMax(zoom * qMin(1.0 - diff, 0.8), target_zoom);
|
2008-11-17 15:04:52 +00:00
|
|
|
kDebug(1212) << "zoom is now " << zoom;
|
2011-01-30 14:34:42 +00:00
|
|
|
radius = qBound((double)initialradius, initialradius * zoom, 3.5 * initialradius);
|
2007-07-13 13:22:09 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (zoom <= 1.0f) {
|
2011-01-06 16:18:27 +00:00
|
|
|
m_enabled = false;
|
|
|
|
}
|
2007-07-13 13:22:09 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
effects->addRepaint(cursorPos().x() - radius, cursorPos().y() - radius, 2 * radius, 2 * radius);
|
|
|
|
}
|
2011-01-06 16:18:27 +00:00
|
|
|
if (m_valid && m_enabled) {
|
|
|
|
data.mask |= PAINT_SCREEN_WITH_TRANSFORMED_WINDOWS;
|
|
|
|
// Start rendering to texture
|
2011-03-13 13:34:30 +00:00
|
|
|
GLRenderTarget::pushRenderTarget(m_fbo);
|
2011-01-06 16:18:27 +00:00
|
|
|
}
|
2007-07-13 13:22:09 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
effects->prePaintScreen(data, time);
|
|
|
|
}
|
2007-07-13 13:22:09 +00:00
|
|
|
|
2011-03-12 13:37:30 +00:00
|
|
|
void LookingGlassEffect::slotMouseChanged(const QPoint& pos, const QPoint& old, Qt::MouseButtons,
|
2011-01-30 14:34:42 +00:00
|
|
|
Qt::MouseButtons, Qt::KeyboardModifiers, Qt::KeyboardModifiers)
|
|
|
|
{
|
|
|
|
if (pos != old && m_enabled) {
|
|
|
|
effects->addRepaint(pos.x() - radius, pos.y() - radius, 2 * radius, 2 * radius);
|
|
|
|
effects->addRepaint(old.x() - radius, old.y() - radius, 2 * radius, 2 * radius);
|
2007-07-13 13:22:09 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-07-13 13:22:09 +00:00
|
|
|
|
2011-01-06 16:18:27 +00:00
|
|
|
void LookingGlassEffect::postPaintScreen()
|
|
|
|
{
|
|
|
|
// Call the next effect.
|
|
|
|
effects->postPaintScreen();
|
|
|
|
if (m_valid && m_enabled) {
|
|
|
|
// Disable render texture
|
2011-03-13 13:34:30 +00:00
|
|
|
GLRenderTarget* target = GLRenderTarget::popRenderTarget();
|
2011-01-30 14:34:42 +00:00
|
|
|
assert(target == m_fbo);
|
|
|
|
Q_UNUSED(target);
|
2011-01-06 16:18:27 +00:00
|
|
|
m_texture->bind();
|
|
|
|
|
|
|
|
// Use the shader
|
|
|
|
ShaderManager::instance()->pushShader(m_shader);
|
|
|
|
m_shader->setUniform("u_zoom", (float)zoom);
|
|
|
|
m_shader->setUniform("u_radius", (float)radius);
|
|
|
|
m_shader->setUniform("u_cursor", QVector2D(cursorPos().x(), cursorPos().y()));
|
|
|
|
m_vbo->render(GL_TRIANGLES);
|
|
|
|
ShaderManager::instance()->popShader();
|
|
|
|
m_texture->unbind();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-27 09:21:31 +00:00
|
|
|
bool LookingGlassEffect::isActive() const
|
|
|
|
{
|
|
|
|
return m_valid && m_enabled;
|
|
|
|
}
|
|
|
|
|
2007-07-13 13:22:09 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#include "lookingglass.moc"
|