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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
|
/*
* ion/regbind.c
*
* Copyright (c) Tuomo Valkonen 1999-2007.
*
* See the included file LICENSE for details.
*/
#include <string.h>
#include <libtu/objp.h>
#include <libmainloop/defer.h>
#include "common.h"
#include "region.h"
#include "binding.h"
#include "regbind.h"
/*{{{ Grab/ungrab */
static void do_binding_grab_on_ungrab_on(const WRegion *reg,
const WBinding *binding,
const WBindmap *bindmap, bool grab)
{
Window win=region_xwindow(reg);
WRegBindingInfo *r;
for(r=reg->bindings; r!=NULL; r=r->next){
if(r->bindmap==bindmap)
continue;
if(bindmap_lookup_binding(r->bindmap, binding->act, binding->state,
binding->kcb)!=NULL)
break;
}
if(r==NULL && binding->area==0){
if(grab)
binding_grab_on(binding, win);
else
binding_ungrab_on(binding, win);
}
}
static void do_binding_grab_on_ungrab_ons(const WRegion *reg,
const WBindmap *bindmap,
bool grab)
{
Rb_node node=NULL;
WBinding *binding=NULL;
if(!(reg->flags®ION_BINDINGS_ARE_GRABBED) ||
bindmap->bindings==NULL){
return;
}
FOR_ALL_BINDINGS(binding, node, bindmap->bindings){
do_binding_grab_on_ungrab_on(reg, binding, bindmap, grab);
}
}
static void grab_ungrabbed_bindings(const WRegion *reg, const WBindmap *bindmap)
{
do_binding_grab_on_ungrab_ons(reg, bindmap, TRUE);
}
static void ungrab_freed_bindings(const WRegion *reg, const WBindmap *bindmap)
{
do_binding_grab_on_ungrab_ons(reg, bindmap, FALSE);
}
void rbind_binding_added(const WRegBindingInfo *rbind,
const WBinding *binding,
const WBindmap *UNUSED(bindmap))
{
if(binding->area==0 && rbind->reg->flags®ION_BINDINGS_ARE_GRABBED)
do_binding_grab_on_ungrab_on(rbind->reg, binding, rbind->bindmap, TRUE);
}
void rbind_binding_removed(const WRegBindingInfo *rbind,
const WBinding *binding,
const WBindmap *UNUSED(bindmap))
{
if(binding->area==0 && rbind->reg->flags®ION_BINDINGS_ARE_GRABBED)
do_binding_grab_on_ungrab_on(rbind->reg, binding, rbind->bindmap, FALSE);
}
/*}}}*/
/*{{{ Find */
static WRegBindingInfo *find_rbind(WRegion *reg, WBindmap *bindmap,
WRegion *owner)
{
WRegBindingInfo *rbind;
for(rbind=(WRegBindingInfo*)reg->bindings; rbind!=NULL; rbind=rbind->next){
if(rbind->bindmap==bindmap && rbind->owner==owner)
return rbind;
}
return NULL;
}
/*}}}*/
/*{{{ Interface */
static WRegBindingInfo *region_do_add_bindmap_owned(WRegion *reg,
WBindmap *bindmap,
WRegion *owner,
bool first)
{
WRegBindingInfo *rbind;
if(bindmap==NULL)
return NULL;
rbind=ALLOC(WRegBindingInfo);
if(rbind==NULL)
return NULL;
rbind->bindmap=bindmap;
rbind->owner=owner;
rbind->reg=reg;
rbind->tmp=0;
LINK_ITEM(bindmap->rbind_list, rbind, bm_next, bm_prev);
if(region_xwindow(reg)!=None && !(reg->flags®ION_GRAB_ON_PARENT))
grab_ungrabbed_bindings(reg, bindmap);
/* Link to reg's rbind list*/ {
WRegBindingInfo *b=reg->bindings;
if(first){
LINK_ITEM_FIRST(b, rbind, next, prev);
}else{
LINK_ITEM_LAST(b, rbind, next, prev);
}
reg->bindings=b;
}
return rbind;
}
bool region_add_bindmap(WRegion *reg, WBindmap *bindmap)
{
if(find_rbind(reg, bindmap, NULL)!=NULL)
return FALSE;
return (region_do_add_bindmap_owned(reg, bindmap, NULL, TRUE)!=NULL);
}
static void remove_rbind(WRegion *reg, WRegBindingInfo *rbind)
{
UNLINK_ITEM(rbind->bindmap->rbind_list, rbind, bm_next, bm_prev);
/* Unlink from reg's rbind list*/ {
WRegBindingInfo *b=reg->bindings;
UNLINK_ITEM(b, rbind, next, prev);
reg->bindings=b;
}
if(region_xwindow(reg)!=None && !(reg->flags®ION_GRAB_ON_PARENT))
ungrab_freed_bindings(reg, rbind->bindmap);
free(rbind);
}
void region_remove_bindmap(WRegion *reg, WBindmap *bindmap)
{
WRegBindingInfo *rbind=find_rbind(reg, bindmap, NULL);
if(rbind!=NULL)
remove_rbind(reg, rbind);
}
void region_remove_bindings(WRegion *reg)
{
WRegBindingInfo *rbind;
while((rbind=(WRegBindingInfo*)reg->bindings)!=NULL)
remove_rbind(reg, rbind);
}
WBinding *region_lookup_keyaction(WRegion *reg, int action,
const XKeyEvent *ev, const WSubmapState *sc,
WRegion **binding_owner_ret)
{
WRegBindingInfo *rbind=NULL;
WBinding *binding=NULL;
const WSubmapState *s=NULL;
WBindmap *bindmap=NULL;
*binding_owner_ret=reg;
for(rbind=(WRegBindingInfo*)reg->bindings; rbind!=NULL; rbind=rbind->next){
bindmap=rbind->bindmap;
for(s=sc; s!=NULL && bindmap!=NULL; s=s->next){
binding=bindmap_lookup_binding(bindmap, BINDING_SUBMAP, s->state, s->key);
if(binding==NULL){
bindmap=NULL;
break;
}
bindmap=binding->submap;
}
if(bindmap==NULL){
/* There may be no next iteration so we must reset binding here
* because we have not found a proper binding.
*/
binding=NULL;
continue;
}
binding=bindmap_lookup_binding(bindmap, action, ev->state, ev->keycode);
if(binding!=NULL)
break;
}
if(binding!=NULL && rbind->owner!=NULL)
*binding_owner_ret=rbind->owner;
return binding;
}
WBinding *region_lookup_keybinding(WRegion *reg, const XKeyEvent *ev,
const WSubmapState *sc,
WRegion **binding_owner_ret)
{
return region_lookup_keyaction(reg, BINDING_KEYPRESS, ev, sc,
binding_owner_ret);
}
WBinding *region_lookup_submap(WRegion *reg, const XKeyEvent *ev,
const WSubmapState *sc,
WRegion **binding_owner_ret)
{
return region_lookup_keyaction(reg, BINDING_SUBMAP, ev, sc,
binding_owner_ret);
}
WBinding *region_lookup_binding(WRegion *reg, int act, uint state,
uint kcb, int area)
{
WRegBindingInfo *rbind;
WBinding *binding=NULL;
for(rbind=(WRegBindingInfo*)reg->bindings; rbind!=NULL; rbind=rbind->next){
if(rbind->owner!=NULL)
continue;
binding=bindmap_lookup_binding_area(rbind->bindmap, act, state, kcb, area);
if(binding!=NULL)
break;
}
return binding;
}
/*}}}*/
/*{{{ Update */
static void add_bindings(WRegion *reg, WRegion *r2)
{
WRegion *rx=REGION_MANAGER(r2);
WRegBindingInfo *rbind, *rb2;
if(rx!=NULL && REGION_PARENT_REG(rx)==reg){
/* The recursion is here to get the bindmaps correctly ordered. */
add_bindings(reg, rx);
}
if(r2->flags®ION_GRAB_ON_PARENT){
for(rb2=(WRegBindingInfo*)r2->bindings; rb2!=NULL; rb2=rb2->next){
rbind=find_rbind(reg, rb2->bindmap, r2);
if(rbind==NULL){
rbind=region_do_add_bindmap_owned(reg, rb2->bindmap,
r2, TRUE);
}
if(rbind!=NULL)
rbind->tmp=1;
}
}
}
void region_do_update_owned_grabs(WRegion *reg)
{
WRegBindingInfo *rbind, *rb2;
reg->flags&=~REGION_BINDING_UPDATE_SCHEDULED;
/* clear flags */
for(rbind=(WRegBindingInfo*)reg->bindings; rbind!=NULL; rbind=rbind->next)
rbind->tmp=0;
/* make new grabs */
if(reg->active_sub!=NULL)
add_bindings(reg, reg->active_sub);
/* remove old grabs */
for(rbind=(WRegBindingInfo*)reg->bindings; rbind!=NULL; rbind=rb2){
rb2=rbind->next;
if(rbind->tmp!=1 && rbind->owner!=NULL)
remove_rbind(reg, rbind);
}
}
void region_update_owned_grabs(WRegion *reg)
{
if(reg->flags®ION_BINDING_UPDATE_SCHEDULED
|| OBJ_IS_BEING_DESTROYED(reg)
|| ioncore_g.opmode==IONCORE_OPMODE_DEINIT){
return;
}
if(mainloop_defer_action((Obj*)reg,
(WDeferredAction*)region_do_update_owned_grabs)){
reg->flags|=REGION_BINDING_UPDATE_SCHEDULED;
}else{
region_do_update_owned_grabs(reg);
}
}
/*}}}*/
|