2012-06-01 01:17:10 +04:00
|
|
|
//
|
|
|
|
// Copyright (C) 2012 Tom Beckmann, Rico Tzschichholz
|
|
|
|
//
|
|
|
|
// 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/>.
|
|
|
|
//
|
2012-05-22 18:44:37 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
using Clutter;
|
|
|
|
using Granite.Drawing;
|
2012-05-22 18:44:37 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
namespace Gala
|
|
|
|
{
|
2012-06-04 18:03:33 +04:00
|
|
|
public class WindowSwitcher : Clutter.Actor
|
2012-06-01 01:17:10 +04:00
|
|
|
{
|
|
|
|
const int ICON_SIZE = 128;
|
|
|
|
const int spacing = 12;
|
2012-06-01 22:54:17 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
Gala.Plugin plugin;
|
2012-06-01 22:54:17 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
GLib.List<unowned Meta.Window> window_list;
|
2012-06-01 22:54:17 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
CairoTexture background;
|
|
|
|
CairoTexture current;
|
|
|
|
Text title;
|
2012-06-01 22:54:17 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
int _windows = 1;
|
|
|
|
int windows {
|
|
|
|
get { return _windows; }
|
|
|
|
set {
|
|
|
|
_windows = value;
|
|
|
|
width = spacing + _windows * (ICON_SIZE + spacing);
|
|
|
|
}
|
|
|
|
}
|
2012-06-01 22:54:17 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
Meta.Window? _current_window;
|
|
|
|
Meta.Window? current_window {
|
|
|
|
get { return _current_window; }
|
|
|
|
set {
|
|
|
|
_current_window = value;
|
|
|
|
title.text = current_window.title;
|
|
|
|
title.x = (int)(width / 2 - title.width / 2);
|
|
|
|
}
|
|
|
|
}
|
2012-06-01 22:54:17 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
public WindowSwitcher (Gala.Plugin _plugin)
|
|
|
|
{
|
|
|
|
plugin = _plugin;
|
2012-06-01 15:42:36 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
height = ICON_SIZE + spacing * 2;
|
|
|
|
opacity = 0;
|
|
|
|
scale_gravity = Gravity.CENTER;
|
2012-06-01 15:42:36 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
background = new CairoTexture (100, 100);
|
|
|
|
background.auto_resize = true;
|
|
|
|
background.draw.connect (draw_background);
|
2012-06-01 15:42:36 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
current = new CairoTexture (ICON_SIZE, ICON_SIZE);
|
|
|
|
current.y = spacing + 1;
|
|
|
|
current.x = spacing + 1;
|
|
|
|
current.width = ICON_SIZE;
|
|
|
|
current.height = ICON_SIZE;
|
|
|
|
current.auto_resize = true;
|
|
|
|
current.draw.connect (draw_current);
|
|
|
|
|
|
|
|
windows = 1;
|
2012-06-01 15:42:36 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
title = new Text.with_text ("bold 16px", "");
|
|
|
|
title.y = ICON_SIZE + spacing * 2 + 6;
|
|
|
|
title.color = {255, 255, 255, 255};
|
|
|
|
title.add_effect (new TextShadowEffect (1, 1, 220));
|
2012-06-01 15:42:36 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
add_child (background);
|
|
|
|
add_child (current);
|
|
|
|
add_child (title);
|
|
|
|
|
|
|
|
background.add_constraint (new BindConstraint (this, BindCoordinate.WIDTH, 0));
|
|
|
|
background.add_constraint (new BindConstraint (this, BindCoordinate.HEIGHT, 0));
|
|
|
|
}
|
2012-06-01 22:54:17 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
public override bool key_release_event (Clutter.KeyEvent event)
|
|
|
|
{
|
|
|
|
if (((event.modifier_state & ModifierType.MOD1_MASK) == 0) ||
|
|
|
|
event.keyval == Key.Alt_L) {
|
|
|
|
plugin.end_modal ();
|
|
|
|
current_window.activate (event.time);
|
|
|
|
|
|
|
|
animate (AnimationMode.EASE_OUT_QUAD, 200, opacity:0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override bool captured_event (Clutter.Event event)
|
|
|
|
{
|
|
|
|
if (!(event.get_type () == EventType.KEY_PRESS))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bool backward = (event.get_state () & X.KeyMask.ShiftMask) != 0;
|
|
|
|
var action = plugin.get_screen ().get_display ().get_keybinding_action (
|
|
|
|
event.get_key_code (), event.get_state ());
|
|
|
|
|
|
|
|
switch (action) {
|
|
|
|
case Meta.KeyBindingAction.SWITCH_GROUP:
|
|
|
|
case Meta.KeyBindingAction.SWITCH_WINDOWS:
|
|
|
|
current_window = plugin.get_screen ().get_display ().
|
|
|
|
get_tab_next (Meta.TabList.NORMAL, plugin.get_screen (),
|
|
|
|
plugin.get_screen ().get_active_workspace (), current_window, backward);
|
|
|
|
break;
|
|
|
|
case Meta.KeyBindingAction.SWITCH_GROUP_BACKWARD:
|
|
|
|
case Meta.KeyBindingAction.SWITCH_WINDOWS_BACKWARD:
|
|
|
|
current_window = plugin.get_screen ().get_display ().
|
|
|
|
get_tab_next (Meta.TabList.NORMAL, plugin.get_screen (),
|
|
|
|
plugin.get_screen ().get_active_workspace (), current_window, true);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
current.animate (AnimationMode.EASE_OUT_QUAD, 200,
|
|
|
|
x : 0.0f + spacing + window_list.index (current_window) * (spacing + ICON_SIZE));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool draw_background (Cairo.Context cr)
|
|
|
|
{
|
|
|
|
Utilities.cairo_rounded_rectangle (cr, 0.5, 0.5, width - 1, height - 1, 10);
|
|
|
|
cr.set_line_width (1);
|
|
|
|
cr.set_source_rgba (0, 0, 0, 0.5);
|
|
|
|
cr.stroke_preserve ();
|
|
|
|
cr.set_source_rgba (1, 1, 1, 0.4);
|
|
|
|
cr.fill ();
|
2012-06-01 15:42:36 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
return true;
|
|
|
|
}
|
2012-05-22 18:44:37 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
bool draw_current (Cairo.Context cr)
|
|
|
|
{
|
|
|
|
Utilities.cairo_rounded_rectangle (cr, 0.5, 0.5, current.width - 2, current.height - 1, 10);
|
|
|
|
cr.set_line_width (1);
|
|
|
|
cr.set_source_rgba (0, 0, 0, 0.9);
|
|
|
|
cr.stroke_preserve ();
|
|
|
|
cr.set_source_rgba (1, 1, 1, 0.9);
|
|
|
|
cr.fill ();
|
2012-06-01 15:42:36 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-06-01 16:20:36 +04:00
|
|
|
void list_windows (Meta.Display display, Meta.Screen screen, Meta.KeyBinding binding, bool backward)
|
2012-06-01 01:17:10 +04:00
|
|
|
{
|
|
|
|
get_children ().foreach ((c) => { //clear
|
|
|
|
if (c != current && c != background && c != title)
|
|
|
|
remove_child (c);
|
|
|
|
});
|
2012-06-01 15:42:36 +04:00
|
|
|
|
2012-06-02 16:34:28 +04:00
|
|
|
current_window = plugin.get_next_window (plugin.screen.get_active_workspace (), backward);
|
2012-06-01 01:17:10 +04:00
|
|
|
if (current_window == null)
|
|
|
|
return;
|
2012-06-01 15:42:36 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
if (binding.get_mask () == 0) {
|
|
|
|
current_window.activate (display.get_current_time ());
|
|
|
|
return;
|
|
|
|
}
|
2012-06-01 15:42:36 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
var i = 0;
|
|
|
|
window_list = display.get_tab_list (Meta.TabList.NORMAL, screen, screen.get_active_workspace ()).copy ();
|
|
|
|
|
|
|
|
window_list.foreach ((w) => {
|
|
|
|
if (w == null)
|
|
|
|
return;
|
2012-06-01 22:54:17 +04:00
|
|
|
|
2012-06-05 10:09:30 +04:00
|
|
|
var image = Gala.Plugin.get_icon_for_window (w, ICON_SIZE);
|
2012-06-02 16:34:28 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
var icon = new GtkClutter.Texture ();
|
|
|
|
try {
|
|
|
|
icon.set_from_pixbuf (image);
|
|
|
|
} catch (Error e) {
|
|
|
|
warning (e.message);
|
|
|
|
}
|
2012-06-02 16:34:28 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
icon.x = spacing + 5 + i * (spacing + ICON_SIZE);
|
|
|
|
icon.y = spacing + 5;
|
|
|
|
icon.width = ICON_SIZE - 10;
|
|
|
|
icon.height = ICON_SIZE - 10;
|
|
|
|
add_child (icon);
|
2012-06-02 16:34:28 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
i++;
|
|
|
|
});
|
|
|
|
|
|
|
|
windows = i;
|
2012-06-01 15:42:36 +04:00
|
|
|
|
2012-06-01 01:17:10 +04:00
|
|
|
var idx = window_list.index (current_window);
|
|
|
|
current.x = spacing + idx * (spacing + ICON_SIZE);
|
|
|
|
}
|
2012-06-01 16:20:36 +04:00
|
|
|
|
|
|
|
public void handle_switch_windows (Meta.Display display, Meta.Screen screen, Meta.Window? window,
|
|
|
|
X.Event event, Meta.KeyBinding binding)
|
|
|
|
{
|
|
|
|
if (display.get_tab_list (Meta.TabList.NORMAL, screen, screen.get_active_workspace ()).length () == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
plugin.begin_modal ();
|
|
|
|
|
|
|
|
int width, height;
|
2012-06-02 20:04:48 +04:00
|
|
|
unowned Meta.Rectangle area;
|
2012-06-02 20:32:00 +04:00
|
|
|
|
2012-06-02 20:04:48 +04:00
|
|
|
plugin.screen.get_monitor_geometry (plugin.screen.get_primary_monitor (), out area);
|
|
|
|
width = area.width;
|
|
|
|
height = area.height;
|
2012-06-01 16:20:36 +04:00
|
|
|
|
|
|
|
bool backward = (binding.get_name () == "switch-windows-backward");
|
|
|
|
list_windows (display, screen, binding, backward);
|
|
|
|
|
|
|
|
x = width / 2 - this.width / 2;
|
|
|
|
y = height / 2 - this.height / 2;
|
|
|
|
grab_key_focus ();
|
|
|
|
animate (Clutter.AnimationMode.EASE_OUT_QUAD, 250, opacity : 255);
|
|
|
|
}
|
2012-06-01 01:17:10 +04:00
|
|
|
}
|
|
|
|
}
|