Merge with lp:~gala-dev/gala/zooming to provide shortcuts for zooming

This commit is contained in:
Tom Beckmann 2012-08-28 17:46:12 +02:00
commit e31545714f
4 changed files with 119 additions and 0 deletions

View File

@ -53,6 +53,7 @@ vala_precompile(VALA_C
src/Settings.vala src/Settings.vala
src/TextShadowEffect.vala src/TextShadowEffect.vala
src/Utils.vala src/Utils.vala
src/Zooming.vala
src/Widgets/AppIcon.vala src/Widgets/AppIcon.vala
src/Widgets/WindowOverview.vala src/Widgets/WindowOverview.vala
src/Widgets/WindowSwitcher.vala src/Widgets/WindowSwitcher.vala

View File

@ -75,6 +75,15 @@
<summary>Shortcut to move to last workspace</summary> <summary>Shortcut to move to last workspace</summary>
<description></description> <description></description>
</key> </key>
<key type="as" name="zoom-in">
<default><![CDATA[['<Super>plus', '<Super>KP_Add']]]></default>
<summary>Zoom in</summary>
<description></description>
</key>
<key type="as" name="zoom-out">
<default><![CDATA[['<Super>minus', '<Super>KP_Subtract']]]></default>
<summary>Zoom out</summary>
</key>
<key type="as" name="expose-windows"> <key type="as" name="expose-windows">
<default><![CDATA[['<Super>e']]]></default> <default><![CDATA[['<Super>e']]]></default>
<summary>Shortcut to move to last workspace</summary> <summary>Shortcut to move to last workspace</summary>

View File

@ -40,6 +40,7 @@ namespace Gala
{ {
WindowSwitcher winswitcher; WindowSwitcher winswitcher;
WorkspaceView workspace_view; WorkspaceView workspace_view;
Zooming zooming;
WindowOverview window_overview; WindowOverview window_overview;
Window? moving; //place for the window that is being moved over Window? moving; //place for the window that is being moved over
@ -81,6 +82,7 @@ namespace Gala
winswitcher = new WindowSwitcher (this); winswitcher = new WindowSwitcher (this);
zooming = new Zooming (this);
window_overview = new WindowOverview (this); window_overview = new WindowOverview (this);
stage.add_child (workspace_view); stage.add_child (workspace_view);
@ -98,6 +100,12 @@ namespace Gala
screen.get_display ().add_keybinding ("move-to-workspace-last", BehaviorSettings.get_default ().schema, 0, () => { screen.get_display ().add_keybinding ("move-to-workspace-last", BehaviorSettings.get_default ().schema, 0, () => {
screen.get_workspace_by_index (screen.n_workspaces - 1).activate (screen.get_display ().get_current_time ()); screen.get_workspace_by_index (screen.n_workspaces - 1).activate (screen.get_display ().get_current_time ());
}); });
screen.get_display ().add_keybinding ("zoom-in", BehaviorSettings.get_default ().schema, 0, () => {
zooming.zoom_in ();
});
screen.get_display ().add_keybinding ("zoom-out", BehaviorSettings.get_default ().schema, 0, () => {
zooming.zoom_out ();
});
screen.get_display ().overlay_key.connect (() => { screen.get_display ().overlay_key.connect (() => {
try { try {

101
src/Zooming.vala Normal file
View File

@ -0,0 +1,101 @@
//
// Copyright (C) 2012 Tom Beckmann
//
// 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 3 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, see <http://www.gnu.org/licenses/>.
//
using Clutter;
using Meta;
namespace Gala
{
public class Zooming : Object
{
Plugin plugin;
const uint MOUSE_POLL_TIME = 50;
uint mouse_poll_timer = 0;
float current_zoom = 1.0f;
public Zooming (Plugin _plugin)
{
plugin = _plugin;
}
~Zooming ()
{
if (mouse_poll_timer > 0)
Source.remove (mouse_poll_timer);
mouse_poll_timer = 0;
}
public void zoom_in () {
zoom (true);
}
public void zoom_out () {
zoom (false);
}
void zoom (bool @in)
{
// Nothing to do if zooming out of our bounds is requested
if (current_zoom <= 1.0f && !@in)
return;
else if (current_zoom >= 2.5f && @in)
return;
var wins = Compositor.get_window_group_for_screen (plugin.get_screen ());
// Add timer to poll current mouse position to reposition window-group
// to show requested zoomed area
if (mouse_poll_timer == 0) {
float mx, my;
var client_pointer = Gdk.Display.get_default ().get_device_manager ().get_client_pointer ();
client_pointer.get_position (null, out mx, out my);
wins.scale_center_x = mx;
wins.scale_center_y = my;
mouse_poll_timer = Timeout.add (MOUSE_POLL_TIME, () => {
client_pointer.get_position (null, out mx, out my);
if (wins.scale_center_x == mx && wins.scale_center_y == my)
return true;
wins.animate (AnimationMode.LINEAR, MOUSE_POLL_TIME, scale_center_x : mx, scale_center_y : my);
return true;
});
}
current_zoom += (@in ? 0.5f : -0.5f);
if (current_zoom <= 1.0f) {
current_zoom = 1.0f;
if (mouse_poll_timer > 0)
Source.remove (mouse_poll_timer);
mouse_poll_timer = 0;
wins.animate (AnimationMode.EASE_OUT_CUBIC, 300, scale_x : 1.0f, scale_y : 1.0f).completed.connect (() => {
wins.scale_center_x = 0.0f;
wins.scale_center_y = 0.0f;
});
return;
}
wins.animate (AnimationMode.EASE_OUT_CUBIC, 300, scale_x : current_zoom, scale_y : current_zoom);
}
}
}