2ec6c54769
screen and noborder there is a good idea. How does an application get notified that it was switched to full screen mode? How do you revert these settings? svn path=/trunk/kdebase/kwin/; revision=254230
782 lines
23 KiB
C++
782 lines
23 KiB
C++
/*****************************************************************
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
Copyright (C) 2003 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
You can Freely distribute this program under the GNU General Public
|
|
License. See the file "COPYING" for the exact licensing terms.
|
|
******************************************************************/
|
|
|
|
/*
|
|
|
|
This file contains things relevant to direct user actions, such as
|
|
responses to global keyboard shortcuts, or selecting actions
|
|
from the window operations menu.
|
|
|
|
*/
|
|
|
|
#include "client.h"
|
|
#include "workspace.h"
|
|
|
|
#include <qpopupmenu.h>
|
|
#include <kglobalsettings.h>
|
|
#include <kiconloader.h>
|
|
#include <klocale.h>
|
|
#include <kconfig.h>
|
|
#include <kglobalaccel.h>
|
|
#include <kapplication.h>
|
|
|
|
#include "popupinfo.h"
|
|
#include "killwindow.h"
|
|
#include "tabbox.h"
|
|
|
|
namespace KWinInternal
|
|
{
|
|
|
|
//****************************************
|
|
// Workspace
|
|
//****************************************
|
|
|
|
QPopupMenu* Workspace::clientPopup()
|
|
{
|
|
if ( !popup )
|
|
{
|
|
popup = new QPopupMenu;
|
|
popup->setCheckable( TRUE );
|
|
popup->setFont(KGlobalSettings::menuFont());
|
|
connect( popup, SIGNAL( aboutToShow() ), this, SLOT( clientPopupAboutToShow() ) );
|
|
connect( popup, SIGNAL( activated(int) ), this, SLOT( clientPopupActivated(int) ) );
|
|
|
|
popup->insertItem( SmallIconSet( "move" ), i18n("&Move")+'\t'+keys->shortcut("Window Move").seq(0).toString(), Options::MoveOp );
|
|
popup->insertItem( i18n("&Size")+'\t'+keys->shortcut("Window Resize").seq(0).toString(), Options::ResizeOp );
|
|
popup->insertItem( i18n("Mi&nimize")+'\t'+keys->shortcut("Window Minimize").seq(0).toString(), Options::MinimizeOp );
|
|
popup->insertItem( i18n("Ma&ximize")+'\t'+keys->shortcut("Window Maximize").seq(0).toString(), Options::MaximizeOp );
|
|
popup->insertItem( i18n("Sh&ade")+'\t'+keys->shortcut("Window Shade").seq(0).toString(), Options::ShadeOp );
|
|
|
|
options_popup = new QPopupMenu( popup );
|
|
options_popup->setCheckable( TRUE );
|
|
options_popup->setFont(KGlobalSettings::menuFont());
|
|
connect( options_popup, SIGNAL( activated(int) ), this, SLOT( clientPopupActivated(int) ) );
|
|
options_popup->insertItem( SmallIconSet( "attach" ), i18n("Window &Above Others"), Options::KeepAboveOp );
|
|
options_popup->insertItem( i18n("Window &Below Others"), Options::KeepBelowOp );
|
|
options_popup->insertItem( i18n("Window &Fullscreen"), Options::FullScreenOp );
|
|
options_popup->insertItem( i18n("Window &Noborder"), Options::NoBorderOp );
|
|
options_popup->insertItem( SmallIconSet( "filesave" ), i18n("Sto&re Window Settings"), Options::ToggleStoreSettingsOp );
|
|
popup->insertItem(i18n("&Window Settings"), options_popup );
|
|
|
|
popup->insertSeparator();
|
|
desk_popup_index = popup->count();
|
|
|
|
if (!KGlobal::config()->isImmutable())
|
|
popup->insertItem(SmallIconSet( "configure" ), i18n("Configur&e Window Behavior..."), this, SLOT( configureWM() ));
|
|
|
|
popup->insertSeparator();
|
|
|
|
popup->insertItem( SmallIconSet( "fileclose" ), i18n("&Close")+'\t'+keys->shortcut("Window Close").seq(0).toString(), Options::CloseOp );
|
|
}
|
|
return popup;
|
|
}
|
|
|
|
/*!
|
|
The client popup menu will become visible soon.
|
|
|
|
Adjust the items according to the respective popup client.
|
|
*/
|
|
void Workspace::clientPopupAboutToShow()
|
|
{
|
|
if ( !popup_client || !popup )
|
|
return;
|
|
|
|
if ( numberOfDesktops() == 1 )
|
|
{
|
|
delete desk_popup;
|
|
desk_popup = 0;
|
|
}
|
|
else
|
|
{
|
|
initDesktopPopup();
|
|
}
|
|
|
|
popup->setItemEnabled( Options::ResizeOp, popup_client->isResizable() );
|
|
popup->setItemEnabled( Options::MoveOp, popup_client->isMovable() );
|
|
popup->setItemEnabled( Options::MaximizeOp, popup_client->isMaximizable() );
|
|
popup->setItemChecked( Options::MaximizeOp, popup_client->maximizeMode() == Client::MaximizeFull );
|
|
// TODO this doesn't show it's shaded when it's hovered or activated
|
|
popup->setItemChecked( Options::ShadeOp, popup_client->isShade() );
|
|
options_popup->setItemChecked( Options::KeepAboveOp, popup_client->keepAbove() );
|
|
options_popup->setItemChecked( Options::KeepBelowOp, popup_client->keepBelow() );
|
|
options_popup->setItemChecked( Options::FullScreenOp, popup_client->isFullScreen() );
|
|
options_popup->setItemEnabled( Options::FullScreenOp, popup_client->userCanSetFullScreen() );
|
|
options_popup->setItemChecked( Options::NoBorderOp, popup_client->noBorder() );
|
|
options_popup->setItemEnabled( Options::NoBorderOp, popup_client->userCanSetNoBorder() );
|
|
popup->setItemEnabled( Options::MinimizeOp, popup_client->isMinimizable() );
|
|
options_popup->setItemChecked( Options::ToggleStoreSettingsOp, popup_client->storeSettings() );
|
|
popup->setItemEnabled( Options::CloseOp, popup_client->isCloseable() );
|
|
}
|
|
|
|
|
|
void Workspace::initDesktopPopup()
|
|
{
|
|
if (desk_popup)
|
|
return;
|
|
|
|
desk_popup = new QPopupMenu( popup );
|
|
desk_popup->setCheckable( TRUE );
|
|
desk_popup->setFont(KGlobalSettings::menuFont());
|
|
connect( desk_popup, SIGNAL( activated(int) ),
|
|
this, SLOT( sendToDesktop(int) ) );
|
|
connect( desk_popup, SIGNAL( aboutToShow() ),
|
|
this, SLOT( desktopPopupAboutToShow() ) );
|
|
|
|
popup->insertItem(i18n("To &Desktop"), desk_popup, -1, desk_popup_index );
|
|
}
|
|
|
|
/*!
|
|
Adjusts the desktop popup to the current values and the location of
|
|
the popup client.
|
|
*/
|
|
void Workspace::desktopPopupAboutToShow()
|
|
{
|
|
if ( !desk_popup )
|
|
return;
|
|
|
|
desk_popup->clear();
|
|
desk_popup->insertItem( i18n("&All Desktops"), 0 );
|
|
if ( active_client && active_client->isOnAllDesktops() )
|
|
desk_popup->setItemChecked( 0, TRUE );
|
|
desk_popup->insertSeparator( -1 );
|
|
int id;
|
|
const int BASE = 10;
|
|
for ( int i = 1; i <= numberOfDesktops(); i++ )
|
|
{
|
|
QString basic_name("%1 %2");
|
|
if (i<BASE)
|
|
{
|
|
basic_name.prepend('&');
|
|
}
|
|
id = desk_popup->insertItem(
|
|
basic_name
|
|
.arg(i)
|
|
.arg( desktopName(i).replace( '&', "&&" )),
|
|
i );
|
|
if ( active_client &&
|
|
!active_client->isOnAllDesktops() && active_client->desktop() == i )
|
|
desk_popup->setItemChecked( id, TRUE );
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
Create the global accel object \c keys.
|
|
*/
|
|
void Workspace::initShortcuts()
|
|
{
|
|
keys = new KGlobalAccel( this );
|
|
#include "kwinbindings.cpp"
|
|
readShortcuts();
|
|
}
|
|
|
|
void Workspace::readShortcuts()
|
|
{
|
|
keys->readSettings();
|
|
|
|
cutWalkThroughDesktops = keys->shortcut("Walk Through Desktops");
|
|
cutWalkThroughDesktopsReverse = keys->shortcut("Walk Through Desktops (Reverse)");
|
|
cutWalkThroughDesktopList = keys->shortcut("Walk Through Desktop List");
|
|
cutWalkThroughDesktopListReverse = keys->shortcut("Walk Through Desktop List (Reverse)");
|
|
cutWalkThroughWindows = keys->shortcut("Walk Through Windows");
|
|
cutWalkThroughWindowsReverse = keys->shortcut("Walk Through Windows (Reverse)");
|
|
|
|
keys->updateConnections();
|
|
}
|
|
|
|
|
|
void Workspace::clientPopupActivated( int id )
|
|
{
|
|
performWindowOperation( popup_client ? popup_client : active_client, (Options::WindowOperation) id );
|
|
}
|
|
|
|
|
|
void Workspace::performWindowOperation( Client* c, Options::WindowOperation op )
|
|
{
|
|
if ( !c )
|
|
return;
|
|
|
|
if (op == Options::MoveOp || op == Options::UnrestrictedMoveOp )
|
|
QCursor::setPos( c->geometry().center() );
|
|
if (op == Options::ResizeOp || op == Options::UnrestrictedResizeOp )
|
|
QCursor::setPos( c->geometry().bottomRight());
|
|
switch ( op )
|
|
{
|
|
case Options::MoveOp:
|
|
c->performMouseCommand( Options::MouseMove, QCursor::pos() );
|
|
break;
|
|
case Options::UnrestrictedMoveOp:
|
|
c->performMouseCommand( Options::MouseUnrestrictedMove, QCursor::pos() );
|
|
break;
|
|
case Options::ResizeOp:
|
|
c->performMouseCommand( Options::MouseResize, QCursor::pos() );
|
|
break;
|
|
case Options::UnrestrictedResizeOp:
|
|
c->performMouseCommand( Options::MouseUnrestrictedResize, QCursor::pos() );
|
|
break;
|
|
case Options::CloseOp:
|
|
c->closeWindow();
|
|
break;
|
|
case Options::MaximizeOp:
|
|
c->maximize( c->maximizeMode() == Client::MaximizeFull
|
|
? Client::MaximizeRestore : Client::MaximizeFull );
|
|
break;
|
|
case Options::HMaximizeOp:
|
|
c->maximize( c->maximizeMode() ^ Client::MaximizeHorizontal );
|
|
break;
|
|
case Options::VMaximizeOp:
|
|
c->maximize( c->maximizeMode() ^ Client::MaximizeVertical );
|
|
break;
|
|
case Options::MinimizeOp:
|
|
c->minimize();
|
|
break;
|
|
case Options::ShadeOp:
|
|
c->toggleShade();
|
|
break;
|
|
case Options::OnAllDesktopsOp:
|
|
c->setOnAllDesktops( !c->isOnAllDesktops() );
|
|
break;
|
|
case Options::FullScreenOp:
|
|
c->setFullScreen( !c->isFullScreen(), true );
|
|
break;
|
|
case Options::NoBorderOp:
|
|
c->setUserNoBorder( !c->isUserNoBorder());
|
|
break;
|
|
case Options::KeepAboveOp:
|
|
c->setKeepAbove( !c->keepAbove() );
|
|
break;
|
|
case Options::KeepBelowOp:
|
|
c->setKeepBelow( !c->keepBelow() );
|
|
break;
|
|
case Options::ToggleStoreSettingsOp:
|
|
c->setStoreSettings( !c->storeSettings() );
|
|
break;
|
|
case Options::LowerOp:
|
|
lowerClient(c);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
/*!
|
|
Performs a mouse command on this client (see options.h)
|
|
*/
|
|
bool Client::performMouseCommand( Options::MouseCommand command, QPoint globalPos)
|
|
{
|
|
bool replay = FALSE;
|
|
switch (command)
|
|
{
|
|
case Options::MouseRaise:
|
|
workspace()->raiseClient( this );
|
|
break;
|
|
case Options::MouseLower:
|
|
workspace()->lowerClient( this );
|
|
break;
|
|
case Options::MouseShade :
|
|
toggleShade();
|
|
break;
|
|
case Options::MouseOperationsMenu:
|
|
if ( isActive() & options->clickRaise )
|
|
autoRaise();
|
|
workspace()->showWindowMenu( globalPos, this );
|
|
break;
|
|
case Options::MouseToggleRaiseAndLower:
|
|
workspace()->raiseOrLowerClient( this );
|
|
break;
|
|
case Options::MouseActivateAndRaise:
|
|
replay = isActive(); // for clickraise mode
|
|
workspace()->requestFocus( this );
|
|
workspace()->raiseClient( this );
|
|
break;
|
|
case Options::MouseActivateAndLower:
|
|
workspace()->requestFocus( this );
|
|
workspace()->lowerClient( this );
|
|
break;
|
|
case Options::MouseActivate:
|
|
replay = isActive(); // for clickraise mode
|
|
workspace()->requestFocus( this );
|
|
break;
|
|
case Options::MouseActivateRaiseAndPassClick:
|
|
workspace()->requestFocus( this );
|
|
workspace()->raiseClient( this );
|
|
replay = TRUE;
|
|
break;
|
|
case Options::MouseActivateAndPassClick:
|
|
workspace()->requestFocus( this );
|
|
replay = TRUE;
|
|
break;
|
|
case Options::MouseActivateRaiseAndMove:
|
|
case Options::MouseActivateRaiseAndUnrestrictedMove:
|
|
workspace()->raiseClient( this );
|
|
workspace()->requestFocus( this );
|
|
if( options->moveMode == Options::Transparent && isMovable())
|
|
move_faked_activity = workspace()->fakeRequestedActivity( this );
|
|
// fallthrough
|
|
case Options::MouseMove:
|
|
case Options::MouseUnrestrictedMove:
|
|
{
|
|
if (!isMovable())
|
|
break;
|
|
if( moveResizeMode )
|
|
finishMoveResize( false );
|
|
mode = Center;
|
|
buttonDown = TRUE;
|
|
moveOffset = QPoint( globalPos.x() - x(), globalPos.y() - y()); // map from global
|
|
invertedMoveOffset = rect().bottomRight() - moveOffset;
|
|
unrestrictedMoveResize = ( command == Options::MouseActivateRaiseAndUnrestrictedMove
|
|
|| command == Options::MouseUnrestrictedMove );
|
|
startMoveResize();
|
|
break;
|
|
}
|
|
case Options::MouseResize:
|
|
case Options::MouseUnrestrictedResize:
|
|
{
|
|
if (!isResizable() || isShade()) // SHADE
|
|
break;
|
|
if( moveResizeMode )
|
|
finishMoveResize( false );
|
|
buttonDown = TRUE;
|
|
moveOffset = QPoint( globalPos.x() - x(), globalPos.y() - y()); // map from global
|
|
int x = moveOffset.x(), y = moveOffset.y();
|
|
bool left = x < width() / 3;
|
|
bool right = x >= 2 * width() / 3;
|
|
bool top = y < height() / 3;
|
|
bool bot = y >= 2 * height() / 3;
|
|
if (top)
|
|
mode = left ? TopLeft2 : (right ? TopRight2 : Top);
|
|
else if (bot)
|
|
mode = left ? BottomLeft2 : (right ? BottomRight2 : Bottom);
|
|
else
|
|
mode = (x < width() / 2) ? Left : Right;
|
|
invertedMoveOffset = rect().bottomRight() - moveOffset;
|
|
unrestrictedMoveResize = ( command == Options::MouseUnrestrictedResize );
|
|
setCursor( mode );
|
|
startMoveResize();
|
|
break;
|
|
}
|
|
case Options::MouseMinimize:
|
|
minimize();
|
|
break;
|
|
case Options::MouseNothing:
|
|
// fall through
|
|
default:
|
|
replay = TRUE;
|
|
break;
|
|
}
|
|
return replay;
|
|
}
|
|
|
|
// KDE4 remove me
|
|
void Workspace::showWindowMenuAt( unsigned long, int, int )
|
|
{
|
|
slotWindowOperations();
|
|
}
|
|
|
|
void Workspace::slotActivateAttentionWindow()
|
|
{
|
|
if( attention_chain.count() > 0 )
|
|
activateClient( attention_chain.first());
|
|
}
|
|
|
|
void Workspace::slotSwitchDesktopNext()
|
|
{
|
|
int d = currentDesktop() + 1;
|
|
if ( d > numberOfDesktops() )
|
|
{
|
|
if ( options->rollOverDesktops )
|
|
{
|
|
d = 1;
|
|
}
|
|
else
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
setCurrentDesktop(d);
|
|
popupinfo->showInfo( desktopName(currentDesktop()) );
|
|
}
|
|
|
|
void Workspace::slotSwitchDesktopPrevious()
|
|
{
|
|
int d = currentDesktop() - 1;
|
|
if ( d <= 0 )
|
|
{
|
|
if ( options->rollOverDesktops )
|
|
d = numberOfDesktops();
|
|
else
|
|
return;
|
|
}
|
|
setCurrentDesktop(d);
|
|
popupinfo->showInfo( desktopName(currentDesktop()) );
|
|
}
|
|
|
|
void Workspace::slotSwitchDesktopRight()
|
|
{
|
|
int x,y;
|
|
calcDesktopLayout(x,y);
|
|
int dt = currentDesktop()-1;
|
|
if (layoutOrientation == Qt::Vertical)
|
|
{
|
|
dt += y;
|
|
if ( dt >= numberOfDesktops() )
|
|
{
|
|
if ( options->rollOverDesktops )
|
|
dt -= numberOfDesktops();
|
|
else
|
|
return;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
int d = (dt % x) + 1;
|
|
if ( d >= x )
|
|
{
|
|
if ( options->rollOverDesktops )
|
|
d -= x;
|
|
else
|
|
return;
|
|
}
|
|
dt = dt - (dt % x) + d;
|
|
}
|
|
setCurrentDesktop(dt+1);
|
|
popupinfo->showInfo( desktopName(currentDesktop()) );
|
|
}
|
|
|
|
void Workspace::slotSwitchDesktopLeft()
|
|
{
|
|
int x,y;
|
|
calcDesktopLayout(x,y);
|
|
int dt = currentDesktop()-1;
|
|
if (layoutOrientation == Qt::Vertical)
|
|
{
|
|
dt -= y;
|
|
if ( dt < 0 )
|
|
{
|
|
if ( options->rollOverDesktops )
|
|
dt += numberOfDesktops();
|
|
else
|
|
return;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
int d = (dt % x) - 1;
|
|
if ( d < 0 )
|
|
{
|
|
if ( options->rollOverDesktops )
|
|
d += x;
|
|
else
|
|
return;
|
|
}
|
|
dt = dt - (dt % x) + d;
|
|
}
|
|
setCurrentDesktop(dt+1);
|
|
popupinfo->showInfo( desktopName(currentDesktop()) );
|
|
}
|
|
|
|
void Workspace::slotSwitchDesktopUp()
|
|
{
|
|
int x,y;
|
|
calcDesktopLayout(x,y);
|
|
int dt = currentDesktop()-1;
|
|
if (layoutOrientation == Qt::Horizontal)
|
|
{
|
|
dt -= x;
|
|
if ( dt < 0 )
|
|
{
|
|
if ( options->rollOverDesktops )
|
|
dt += numberOfDesktops();
|
|
else
|
|
return;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
int d = (dt % y) - 1;
|
|
if ( d < 0 )
|
|
{
|
|
if ( options->rollOverDesktops )
|
|
d += y;
|
|
else
|
|
return;
|
|
}
|
|
dt = dt - (dt % y) + d;
|
|
}
|
|
setCurrentDesktop(dt+1);
|
|
popupinfo->showInfo( desktopName(currentDesktop()) );
|
|
}
|
|
|
|
void Workspace::slotSwitchDesktopDown()
|
|
{
|
|
int x,y;
|
|
calcDesktopLayout(x,y);
|
|
int dt = currentDesktop()-1;
|
|
if (layoutOrientation == Qt::Horizontal)
|
|
{
|
|
dt += x;
|
|
if ( dt >= numberOfDesktops() )
|
|
{
|
|
if ( options->rollOverDesktops )
|
|
dt -= numberOfDesktops();
|
|
else
|
|
return;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
int d = (dt % y) + 1;
|
|
if ( d >= y )
|
|
{
|
|
if ( options->rollOverDesktops )
|
|
d -= y;
|
|
else
|
|
return;
|
|
}
|
|
dt = dt - (dt % y) + d;
|
|
}
|
|
setCurrentDesktop(dt+1);
|
|
popupinfo->showInfo( desktopName(currentDesktop()) );
|
|
}
|
|
|
|
void Workspace::slotSwitchToDesktop( int i )
|
|
{
|
|
setCurrentDesktop( i );
|
|
popupinfo->showInfo( desktopName(currentDesktop()) );
|
|
}
|
|
|
|
|
|
void Workspace::slotWindowToDesktop( int i )
|
|
{
|
|
if( i >= 1 && i <= numberOfDesktops() && active_client
|
|
&& !active_client->isDesktop()
|
|
&& !active_client->isDock()
|
|
&& !active_client->isTopMenu())
|
|
sendClientToDesktop( active_client, i, true );
|
|
}
|
|
|
|
/*!
|
|
Maximizes the popup client
|
|
*/
|
|
void Workspace::slotWindowMaximize()
|
|
{
|
|
if ( active_client )
|
|
performWindowOperation( active_client, Options::MaximizeOp );
|
|
}
|
|
|
|
/*!
|
|
Maximizes the popup client vertically
|
|
*/
|
|
void Workspace::slotWindowMaximizeVertical()
|
|
{
|
|
if ( active_client )
|
|
performWindowOperation( active_client, Options::VMaximizeOp );
|
|
}
|
|
|
|
/*!
|
|
Maximizes the popup client horiozontally
|
|
*/
|
|
void Workspace::slotWindowMaximizeHorizontal()
|
|
{
|
|
if ( active_client )
|
|
performWindowOperation( active_client, Options::HMaximizeOp );
|
|
}
|
|
|
|
|
|
/*!
|
|
Minimizes the popup client
|
|
*/
|
|
void Workspace::slotWindowMinimize()
|
|
{
|
|
performWindowOperation( active_client, Options::MinimizeOp );
|
|
}
|
|
|
|
/*!
|
|
Shades/unshades the popup client respectively
|
|
*/
|
|
void Workspace::slotWindowShade()
|
|
{
|
|
performWindowOperation( active_client, Options::ShadeOp );
|
|
}
|
|
|
|
/*!
|
|
Raises the popup client
|
|
*/
|
|
void Workspace::slotWindowRaise()
|
|
{
|
|
if ( active_client )
|
|
raiseClient( active_client );
|
|
}
|
|
|
|
/*!
|
|
Lowers the popup client
|
|
*/
|
|
void Workspace::slotWindowLower()
|
|
{
|
|
if ( active_client )
|
|
lowerClient( active_client );
|
|
}
|
|
|
|
/*!
|
|
Does a toggle-raise-and-lower on the popup client;
|
|
*/
|
|
void Workspace::slotWindowRaiseOrLower()
|
|
{
|
|
if ( active_client )
|
|
raiseOrLowerClient( active_client );
|
|
}
|
|
|
|
void Workspace::slotWindowOnAllDesktops()
|
|
{
|
|
if( active_client )
|
|
active_client->toggleOnAllDesktops();
|
|
}
|
|
|
|
void Workspace::slotWindowFullScreen()
|
|
{
|
|
if( active_client )
|
|
performWindowOperation( active_client, Options::FullScreenOp );
|
|
}
|
|
|
|
void Workspace::slotWindowNoBorder()
|
|
{
|
|
if( active_client )
|
|
performWindowOperation( active_client, Options::NoBorderOp );
|
|
}
|
|
|
|
void Workspace::slotWindowAbove()
|
|
{
|
|
if( active_client )
|
|
performWindowOperation( active_client, Options::KeepAboveOp );
|
|
}
|
|
|
|
void Workspace::slotWindowBelow()
|
|
{
|
|
if( active_client )
|
|
performWindowOperation( active_client, Options::KeepBelowOp );
|
|
}
|
|
|
|
/*!
|
|
Move window to next desktop
|
|
*/
|
|
void Workspace::slotWindowToNextDesktop()
|
|
{
|
|
int d = currentDesktop() + 1;
|
|
if ( d > numberOfDesktops() )
|
|
d = 1;
|
|
if (active_client && !active_client->isDesktop()
|
|
&& !active_client->isDock() && !active_client->isTopMenu())
|
|
sendClientToDesktop(active_client,d,true);
|
|
setCurrentDesktop(d);
|
|
popupinfo->showInfo( desktopName(currentDesktop()) );
|
|
}
|
|
|
|
/*!
|
|
Move window to previous desktop
|
|
*/
|
|
void Workspace::slotWindowToPreviousDesktop()
|
|
{
|
|
int d = currentDesktop() - 1;
|
|
if ( d <= 0 )
|
|
d = numberOfDesktops();
|
|
if (active_client && !active_client->isDesktop()
|
|
&& !active_client->isDock() && !active_client->isTopMenu())
|
|
sendClientToDesktop(active_client,d,true);
|
|
setCurrentDesktop(d);
|
|
popupinfo->showInfo( desktopName(currentDesktop()) );
|
|
}
|
|
|
|
/*!
|
|
Kill Window feature, similar to xkill
|
|
*/
|
|
void Workspace::slotKillWindow()
|
|
{
|
|
KillWindow kill( this );
|
|
kill.start();
|
|
}
|
|
|
|
/*!
|
|
Sends the popup client to desktop \a desk
|
|
|
|
Internal slot for the window operation menu
|
|
*/
|
|
void Workspace::sendToDesktop( int desk )
|
|
{
|
|
if ( !popup_client )
|
|
return;
|
|
if ( desk == 0 )
|
|
{ // the 'on_all_desktops' menu entry
|
|
popup_client->setOnAllDesktops( !popup_client->isOnAllDesktops());
|
|
return;
|
|
}
|
|
|
|
sendClientToDesktop( popup_client, desk, false );
|
|
|
|
}
|
|
|
|
/*!
|
|
Shows the window operations popup menu for the activeClient()
|
|
*/
|
|
void Workspace::slotWindowOperations()
|
|
{
|
|
if ( !active_client )
|
|
return;
|
|
QPoint pos = active_client->pos() + active_client->clientPos();
|
|
showWindowMenu( pos.x(), pos.y(), active_client );
|
|
}
|
|
|
|
void Workspace::showWindowMenu( int x, int y, Client* cl )
|
|
{
|
|
if (!kapp->authorizeKAction("kwin_rmb"))
|
|
return;
|
|
if( !cl )
|
|
return;
|
|
if( popup_client != NULL ) // recursion
|
|
return;
|
|
if ( cl->isDesktop()
|
|
|| cl->isDock()
|
|
|| cl->isTopMenu())
|
|
return;
|
|
|
|
popup_client = cl;
|
|
QPopupMenu* p = clientPopup();
|
|
p->exec( QPoint( x, y ) );
|
|
popup_client = 0;
|
|
}
|
|
|
|
/*!
|
|
Closes the popup client
|
|
*/
|
|
void Workspace::slotWindowClose()
|
|
{
|
|
if ( tab_box->isVisible() || popupinfo->isVisible() )
|
|
return;
|
|
performWindowOperation( active_client, Options::CloseOp );
|
|
}
|
|
|
|
/*!
|
|
Starts keyboard move mode for the popup client
|
|
*/
|
|
void Workspace::slotWindowMove()
|
|
{
|
|
performWindowOperation( active_client, Options::UnrestrictedMoveOp );
|
|
}
|
|
|
|
/*!
|
|
Starts keyboard resize mode for the popup client
|
|
*/
|
|
void Workspace::slotWindowResize()
|
|
{
|
|
performWindowOperation( active_client, Options::UnrestrictedResizeOp );
|
|
}
|
|
|
|
} // namespace
|