Lines Matching defs:hints
6 * Code to look at a few Motif Window Manager hints.
96 mwm_sets_decorations(MotifWmHints *hints)
98 return (hints->flags & MWM_HINTS_DECORATIONS) ? true : false;
104 mwm_has_border(MotifWmHints *hints)
106 /* No opinion if hints don't set decoration info */
107 if(!mwm_sets_decorations(hints)) {
116 /* No border if hints said so */
117 if((hints->decorations & MWM_DECOR_BORDER) == 0) {
127 mwm_sets_title(MotifWmHints *hints)
130 if(!mwm_sets_decorations(hints)) {
145 mwm_has_title(MotifWmHints *hints)
147 if(mwm_sets_decorations(hints)
148 && ((hints->decorations & MWM_DECOR_TITLE) == 0)) {