-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathWingpanelManager.vala
More file actions
186 lines (153 loc) · 6.36 KB
/
WingpanelManager.vala
File metadata and controls
186 lines (153 loc) · 6.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/*
* 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 enum BackgroundState {
LIGHT,
DARK,
MAXIMIZED,
TRANSLUCENT_DARK,
TRANSLUCENT_LIGHT
}
public class GreeterCompositor.WingpanelManager : Object {
private const int MINIMIZE_DURATION = 200;
private const int SNAP_DURATION = 250;
private const int WALLPAPER_TRANSITION_DURATION = 150;
private const int WORKSPACE_SWITCH_DURATION = 300;
private const double ACUTANCE_THRESHOLD = 8;
private const double STD_THRESHOLD = 45;
private const double LUMINANCE_THRESHOLD = 180;
public signal void state_changed (BackgroundState state, uint animation_duration);
public int panel_height { private get; construct; }
private static WindowManager wm;
private BackgroundState current_state = BackgroundState.LIGHT;
private BackgroundUtils.ColorInformation? bk_color_info = null;
public WingpanelManager (WindowManager _wm, int panel_height) {
wm = _wm;
Object (panel_height: panel_height);
connect_signals ();
update_bk_color_info.begin ((obj, res) => {
update_bk_color_info.end (res);
update_current_workspace ();
});
}
private void connect_signals () {
unowned Meta.WorkspaceManager manager = wm.get_display ().get_workspace_manager ();
manager.workspace_switched.connect (() => {
update_current_workspace ();
});
var signal_id = GLib.Signal.lookup ("changed", wm.background_group.get_type ());
GLib.Signal.add_emission_hook (signal_id, 0, (ihint, param_values) => {
update_bk_color_info.begin ((obj, res) => {
update_bk_color_info.end (res);
check_for_state_change (WALLPAPER_TRANSITION_DURATION);
});
return true;
});
}
private void update_current_workspace () {
unowned var display = wm.get_display ();
foreach (unowned var window in display.list_all_windows ()) {
if (window.is_on_primary_monitor ()) {
register_window (window);
}
}
display.window_created.connect ((window) => {
on_window_added (window);
window.unmanaged.connect (on_window_removed);
});
check_for_state_change (0);
}
private void register_window (Meta.Window window) {
window.notify["maximized-vertically"].connect (() => {
check_for_state_change (SNAP_DURATION);
});
window.notify["minimized"].connect (() => {
check_for_state_change (MINIMIZE_DURATION);
});
window.workspace_changed.connect (() => {
check_for_state_change (WORKSPACE_SWITCH_DURATION);
});
}
private void on_window_added (Meta.Window window) {
register_window (window);
check_for_state_change (SNAP_DURATION);
}
private void on_window_removed (Meta.Window window) {
check_for_state_change (SNAP_DURATION);
}
public async void update_bk_color_info () {
SourceFunc callback = update_bk_color_info.callback;
BackgroundUtils.get_background_color_information.begin (wm, panel_height, (obj, res) => {
try {
bk_color_info = BackgroundUtils.get_background_color_information.end (res);
} catch (Error e) {
warning (e.message);
} finally {
callback ();
}
});
yield;
}
/**
* Check if Wingpanel's background state should change.
*
* The state is defined as follows:
* - If there's a maximized window, the state should be MAXIMIZED;
* - If no information about the background could be gathered, it should be TRANSLUCENT;
* - If there's too much contrast or sharpness, it should be TRANSLUCENT;
* - If the background is too bright, it should be DARK;
* - Else it should be LIGHT.
*/
private void check_for_state_change (uint animation_duration) {
bool has_maximized_window = false;
foreach (Meta.Window window in wm.get_display ().list_all_windows ()) {
if (window.is_on_primary_monitor ()) {
if (!window.minimized && window.maximized_vertically) {
has_maximized_window = true;
break;
}
}
}
BackgroundState new_state;
if (has_maximized_window) {
new_state = BackgroundState.MAXIMIZED;
} else if (bk_color_info == null) {
new_state = BackgroundState.TRANSLUCENT_LIGHT;
} else {
var luminance_std = Math.sqrt (bk_color_info.luminance_variance);
bool bg_is_busy = luminance_std > STD_THRESHOLD ||
(bk_color_info.mean_luminance < LUMINANCE_THRESHOLD &&
bk_color_info.mean_luminance + 1.645 * luminance_std > LUMINANCE_THRESHOLD ) ||
bk_color_info.mean_acutance > ACUTANCE_THRESHOLD;
bool bg_is_dark = bk_color_info.mean_luminance > LUMINANCE_THRESHOLD;
bool bg_is_busy_dark = bk_color_info.mean_luminance * 1.25 > LUMINANCE_THRESHOLD;
if (bg_is_busy && bg_is_busy_dark) {
new_state = BackgroundState.TRANSLUCENT_DARK;
} else if (bg_is_busy) {
new_state = BackgroundState.TRANSLUCENT_LIGHT;
} else if (bg_is_dark) {
new_state = BackgroundState.DARK;
} else {
new_state = BackgroundState.LIGHT;
}
}
if (new_state != current_state) {
state_changed (current_state = new_state, animation_duration);
}
}
}