Lines Matching refs:mwm_hint
1556 MwmHints *mwm_hint = NULL;
1590 &nitems, &left, (unsigned char **)&mwm_hint) == Success)
1592 if (mwm_hint && nitems == PropMwmHintsElements && (mwm_hint->flags & MwmHintsDecorations))
1594 if (!mwm_hint->decorations) hint |= HINT_NOFRAME;
1595 else if (!(mwm_hint->decorations & MwmDecorAll))
1597 if (mwm_hint->decorations & MwmDecorBorder) hint |= HINT_BORDER;
1598 if (mwm_hint->decorations & MwmDecorHandle) hint |= HINT_SIZEBOX;
1599 if (mwm_hint->decorations & MwmDecorTitle) hint |= HINT_CAPTION;
1602 if (mwm_hint) XFree(mwm_hint);