Tiling related shortcuts attached to right slots
svn path=/trunk/KDE/kdebase/workspace/; revision=1126594
This commit is contained in:
parent
8c3fd81d15
commit
6ec9ac52a3
1 changed files with 8 additions and 8 deletions
|
@ -224,14 +224,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
DEF( I18N_NOOP("Enable/Disable Tiling"), Qt::SHIFT+Qt::ALT+Qt::Key_F11, slotToggleTiling() );
|
||||
DEF( I18N_NOOP("Toggle Floating"), Qt::META+Qt::Key_F, slotToggleFloating() );
|
||||
|
||||
DEF( I18N_NOOP("Switch Focus Left") , Qt::META+Qt::Key_H, slotLeft() );
|
||||
DEF( I18N_NOOP("Switch Focus Right") , Qt::META+Qt::Key_L, slotRight() );
|
||||
DEF( I18N_NOOP("Switch Focus Up") , Qt::META+Qt::Key_K, slotTop() );
|
||||
DEF( I18N_NOOP("Switch Focus Down") , Qt::META+Qt::Key_J, slotBottom() );
|
||||
DEF( I18N_NOOP("Move Window Left") , Qt::SHIFT+Qt::META+Qt::Key_H, slotMoveLeft() );
|
||||
DEF( I18N_NOOP("Move Window Right") , Qt::SHIFT+Qt::META+Qt::Key_L, slotMoveRight() );
|
||||
DEF( I18N_NOOP("Move Window Up") , Qt::SHIFT+Qt::META+Qt::Key_K, slotMoveTop() );
|
||||
DEF( I18N_NOOP("Move Window Down") , Qt::SHIFT+Qt::META+Qt::Key_J, slotMoveBottom() );
|
||||
DEF( I18N_NOOP("Switch Focus Left") , Qt::META+Qt::Key_H, slotFocusTileLeft() );
|
||||
DEF( I18N_NOOP("Switch Focus Right") , Qt::META+Qt::Key_L, slotFocusTileRight() );
|
||||
DEF( I18N_NOOP("Switch Focus Up") , Qt::META+Qt::Key_K, slotFocusTileTop() );
|
||||
DEF( I18N_NOOP("Switch Focus Down") , Qt::META+Qt::Key_J, slotFocusTileBottom() );
|
||||
DEF( I18N_NOOP("Move Window Left") , Qt::SHIFT+Qt::META+Qt::Key_H, slotMoveTileLeft() );
|
||||
DEF( I18N_NOOP("Move Window Right") , Qt::SHIFT+Qt::META+Qt::Key_L, slotMoveTileRight() );
|
||||
DEF( I18N_NOOP("Move Window Up") , Qt::SHIFT+Qt::META+Qt::Key_K, slotMoveTileTop() );
|
||||
DEF( I18N_NOOP("Move Window Down") , Qt::SHIFT+Qt::META+Qt::Key_J, slotMoveTileBottom() );
|
||||
DEF( I18N_NOOP("Next Layout"), Qt::META+Qt::Key_PageDown, slotNextTileLayout() );
|
||||
DEF( I18N_NOOP("Previous Layout"), Qt::META+Qt::Key_PageUp, slotPreviousTileLayout() );
|
||||
|
||||
|
|
Loading…
Reference in a new issue