-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
158 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
/* | ||
* Copyright (c) 2011-2015 Wingpanel Developers (http://launchpad.net/wingpanel) | ||
* | ||
* 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. | ||
* | ||
* 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, write to the | ||
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | ||
* Boston, MA 02110-1301 USA. | ||
*/ | ||
|
||
public class GreeterCompositor.FocusManager : GLib.Object { | ||
private unowned Meta.Display display; | ||
private unowned Meta.Workspace? current_workspace = null; | ||
private unowned Meta.Window? last_focused_window = null; | ||
private unowned Meta.Window? last_focused_dialog_window = null; | ||
|
||
public FocusManager (Meta.Display _display) { | ||
display = _display; | ||
|
||
unowned Meta.WorkspaceManager manager = display.get_workspace_manager (); | ||
manager.workspace_switched.connect (() => { | ||
update_current_workspace (); | ||
}); | ||
|
||
update_current_workspace (); | ||
} | ||
|
||
public void remember_focused_window () { | ||
var windows = current_workspace.list_windows (); | ||
foreach (unowned Meta.Window window in windows) { | ||
window_created (window); | ||
if (window.has_focus ()) { | ||
last_focused_window = window; | ||
} | ||
} | ||
|
||
display.window_created.connect (window_created); | ||
} | ||
|
||
public void restore_focused_window () { | ||
// when a dialog was opened give it focus | ||
if (last_focused_dialog_window != null) { | ||
last_focused_dialog_window.focus (display.get_current_time ()); | ||
// if dialog is closed pass focus to last focussed window | ||
last_focused_dialog_window.unmanaged.connect (() => { | ||
last_focused_dialog_window = null; | ||
restore_focused_window (); | ||
}); | ||
} else if (last_focused_window != null) { | ||
last_focused_window.focus (display.get_current_time ()); | ||
} | ||
|
||
var windows = current_workspace.list_windows (); | ||
foreach (unowned Meta.Window window in windows) { | ||
window.focused.disconnect (window_focused); | ||
window.unmanaged.disconnect (window_unmanaged); | ||
} | ||
|
||
display.window_created.disconnect (window_created); | ||
} | ||
|
||
void window_created (Meta.Window window) { | ||
window.focused.connect (window_focused); | ||
window.unmanaged.connect (window_unmanaged); | ||
} | ||
|
||
void window_focused (Meta.Window window) { | ||
// make sure we keep the last_focused_window when a dialog is started from wingpanel | ||
if (window.window_type == Meta.WindowType.DIALOG) { | ||
last_focused_dialog_window = window; | ||
} else if (window.window_type != Meta.WindowType.DOCK) { // ignore focus to wingpanel | ||
last_focused_window = window; | ||
} | ||
} | ||
|
||
void window_unmanaged (Meta.Window window) { | ||
window.focused.disconnect (window_focused); | ||
window.unmanaged.disconnect (window_unmanaged); | ||
} | ||
|
||
public bool begin_grab_focused_window (int x, int y, int button, uint time, uint state) { | ||
unowned var window = display.get_focus_window (); | ||
if (window == null || !get_can_grab_window (window, x, y)) { | ||
unowned Meta.Workspace workspace = display.get_workspace_manager ().get_active_workspace (); | ||
List<unowned Meta.Window>? windows = workspace.list_windows (); | ||
if (windows == null) { | ||
return false; | ||
} | ||
|
||
window = null; | ||
List<unowned Meta.Window> copy = windows.copy (); | ||
copy.reverse (); | ||
copy.@foreach ((win) => { | ||
if (window != null) { | ||
return; | ||
} | ||
|
||
if (get_can_grab_window (win, x, y)) { | ||
window = win; | ||
} | ||
}); | ||
} | ||
|
||
if (window != null) { | ||
#if HAS_MUTTER44 | ||
window.begin_grab_op (Meta.GrabOp.MOVING, null, null, time); | ||
#else | ||
display.begin_grab_op (window, Meta.GrabOp.MOVING, false, true, button, state, time, x, y); | ||
#endif | ||
return true; | ||
} | ||
|
||
return false; | ||
} | ||
|
||
private static bool get_can_grab_window (Meta.Window window, int x, int y) { | ||
var frame = window.get_frame_rect (); | ||
return !window.minimized && window.maximized_vertically && x >= frame.x && x <= frame.x + frame.width; | ||
} | ||
|
||
private void update_current_workspace () { | ||
unowned Meta.WorkspaceManager manager = display.get_workspace_manager (); | ||
unowned var workspace = manager.get_workspace_by_index (manager.get_active_workspace_index ()); | ||
|
||
if (workspace == null) { | ||
warning ("Cannot get active workspace"); | ||
|
||
return; | ||
} | ||
|
||
current_workspace = workspace; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters