def get_wm_transient_for_unchecked(window): cook = util.get_property_unchecked(window, atoms.WM_TRANSIENT_FOR) return util.PropertyCookie(cook)
def get_wm_hints_unchecked(window): return HintsCookie(util.get_property_unchecked(window, atoms.WM_HINTS))
def get_wm_class_unchecked(window): return util.PropertyCookie( util.get_property_unchecked(window, atoms.WM_CLASS))
def get_wm_normal_hints_unchecked(window): return NormalHintsCookie( util.get_property_unchecked(window, atoms.WM_NORMAL_HINTS))
def get_wm_client_machine_unchecked(window): cook = util.get_property_unchecked(window, atoms.WM_CLIENT_MACHINE) return util.PropertyCookie(cook)
def get_icon_size_unchecked(window): return IconSizeCookie( util.get_property_unchecked(window, atoms.WM_ICON_SIZE))
def get_wm_state_unchecked(window): return StateCookie(util.get_property_unchecked(window, 'WM_STATE'))
def get_icon_size_unchecked(window): return IconSizeCookie(util.get_property_unchecked(window, atoms.WM_ICON_SIZE))
def get_wm_colormap_windows_unchecked(window): cook = util.get_property_unchecked(window, 'WM_COLORMAP_WINDOWS') return util.PropertyCookie(cook)
def get_wm_protocols_unchecked(window): return util.PropertyCookie(util.get_property_unchecked(window, 'WM_PROTOCOLS'))
def get_wm_class_unchecked(window): return util.PropertyCookie(util.get_property_unchecked(window, atoms.WM_CLASS))
def get_wm_protocols_unchecked(window): return util.PropertyCookie( util.get_property_unchecked(window, 'WM_PROTOCOLS'))
def get_wm_icon_name_unchecked(window): return util.PropertyCookie(util.get_property_unchecked(window, atoms.WM_ICON_NAME))
def get_hints_unchecked(window): cook = util.get_property_unchecked(window, '_MOTIF_WM_HINTS') return MotifHintsCookie(cook)
def get_wm_icon_name_unchecked(window): return util.PropertyCookie( util.get_property_unchecked(window, atoms.WM_ICON_NAME))
def get_wm_normal_hints_unchecked(window): return NormalHintsCookie(util.get_property_unchecked(window, atoms.WM_NORMAL_HINTS))