summaryrefslogtreecommitdiffstats
path: root/compton.c
diff options
context:
space:
mode:
authorRichard Grenville <pyxlcy@gmail.com>2012-12-10 10:31:24 +0800
committerRichard Grenville <pyxlcy@gmail.com>2012-12-10 10:38:28 +0800
commit8d4a3f899f8efb03da4c1ab52234e463c45396df (patch)
tree10c62c7b9266ba53485e64e8e90da278380bd855 /compton.c
parent94f292b9ff1cffd7fade3ba9de9f4ed8d83416db (diff)
downloadtdebase-8d4a3f899f8efb03da4c1ab52234e463c45396df.tar.gz
tdebase-8d4a3f899f8efb03da4c1ab52234e463c45396df.zip
Feature: Wintype-based focus exclusion
- Add "focus" to the wintypes settings in compton.conf, to mark windows of certain window types to be always focused. Replaces the ugly is_normal_win(). - Add a ON/OFF/UNSET switch_t type, but it's unused currently. - Mark client_win if the window client detection hasn't been performed when we detect WM_STATE's presence in ev_property_notify(), for performance.
Diffstat (limited to 'compton.c')
-rw-r--r--compton.c16
1 files changed, 13 insertions, 3 deletions
diff --git a/compton.c b/compton.c
index b535383b0..cdf321d54 100644
--- a/compton.c
+++ b/compton.c
@@ -2034,7 +2034,7 @@ calc_opacity(session_t *ps, win *w) {
}
// Respect inactive_opacity in some cases
- if (ps->o.inactive_opacity && is_normal_win(w) && false == w->focused
+ if (ps->o.inactive_opacity && false == w->focused
&& (OPAQUE == opacity || ps->o.inactive_opacity_override)) {
opacity = ps->o.inactive_opacity;
}
@@ -2054,7 +2054,7 @@ calc_dim(session_t *ps, win *w) {
if (w->destroyed || IsViewable != w->a.map_state)
return;
- if (ps->o.inactive_dim && is_normal_win(w) && !(w->focused)) {
+ if (ps->o.inactive_dim && !(w->focused)) {
dim = true;
} else {
dim = false;
@@ -3211,7 +3211,8 @@ ev_property_notify(session_t *ps, XPropertyEvent *ev) {
determine_evmask(ps, ev->window, WIN_EVMODE_UNKNOWN));
win *w_top = find_toplevel2(ps, ev->window);
- if (w_top && w_top->client_win == w_top->id
+ // Initialize client_win as early as possible
+ if (w_top && (!w_top->client_win || w_top->client_win == w_top->id)
&& wid_has_prop(ps, ev->window, ps->atom_client)) {
w_top->wmwin = false;
win_unmark_client(ps, w_top);
@@ -3971,6 +3972,8 @@ parse_config(session_t *ps, char *cpath, struct options_tmp *pcfgtmp) {
ps->o.wintype_shadow[i] = (bool) ival;
if (config_setting_lookup_bool(setting, "fade", &ival))
ps->o.wintype_fade[i] = (bool) ival;
+ if (config_setting_lookup_bool(setting, "focus", &ival))
+ ps->o.wintype_focus[i] = (bool) ival;
config_setting_lookup_float(setting, "opacity",
&ps->o.wintype_opacity[i]);
}
@@ -4752,6 +4755,8 @@ session_init(session_t *ps_old, int argc, char **argv) {
.inactive_dim = 0.0,
.inactive_dim_fixed = false,
.alpha_step = 0.03,
+
+ .wintype_focus = { false },
.use_ewmh_active_win = false,
.focus_blacklist = NULL,
@@ -4836,6 +4841,11 @@ session_init(session_t *ps_old, int argc, char **argv) {
ps->ignore_tail = &ps->ignore_head;
gettimeofday(&ps->time_start, NULL);
+ wintype_arr_enable(ps->o.wintype_focus);
+ ps->o.wintype_focus[WINTYPE_UNKNOWN] = false;
+ ps->o.wintype_focus[WINTYPE_NORMAL] = false;
+ ps->o.wintype_focus[WINTYPE_UTILITY] = false;
+
get_cfg(ps, argc, argv);
// Inherit old Display if possible, primarily for resource leak checking