Lines Matching refs:above

57 	OtpWinList *above;
230 for(owl = Scr->bottomOwl; owl != NULL; owl = owl->above) {
242 assert(owl->below->above == owl);
359 if(owl->above != NULL) {
360 owl->above->below = owl->below;
363 owl->below->above = owl->above;
366 Scr->bottomOwl = owl->above;
369 owl->above = NULL;
374 * For the purpose of putting a window above another,
393 * Therefore we may need to update the owl we're going to be above.
433 assert(owl->above == NULL);
446 owl->above = Scr->bottomOwl;
447 owl->above->below = owl;
470 if(other_owl->above != NULL) {
471 assert(PRI(owl) <= PRI(other_owl->above));
499 owl->above = other_owl->above;
500 owl->below->above = owl;
501 if(owl->above != NULL) {
502 owl->above->below = owl;
508 /* should owl stay above other_owl if other_owl was raised ? */
547 for(owl1 = Scr->bottomOwl, owl2 = owl1->above;
549 owl1 = owl2, owl2 = owl2->above) {
553 assert(owl2 == owl1->above);
570 assert(owl->above == NULL);
638 other_owl = (other_owl == NULL) ? Scr->bottomOwl : other_owl->above;
643 OtpWinList *tmp_owl = other_owl->above;
702 OtpWinList *other_owl = owl->above;
713 other_owl = other_owl->above;
750 for(other_owl = owl->above;
752 other_owl = other_owl->above) {
1088 assert(owl->above == NULL);
1116 owl->above = NULL;
1194 /* Nothing from OTP about above/below; check EWMH */
1421 * Only insert the window above something if it isn't the icon,
1441 owl = owl->above;
1453 owl = owl->above;
1460 OtpWinList *owl = twm_win->otp->above;
1462 owl = owl->above;
1489 for(const OtpWinList *owl = start ; owl != NULL ; owl = owl->above) {
1578 * have above/below flags set in the OTP info, so we can know what to set
1580 * _NET_WM_STATE flags are saying 'above' because the above flag got set
1713 OtpWinList *next = trans->above;