Example #1
0
def get_wm_transient_for_unchecked(window):
    cook = util.get_property_unchecked(window, atoms.WM_TRANSIENT_FOR)
    return util.PropertyCookie(cook)
Example #2
0
def get_wm_hints_unchecked(window):
    return HintsCookie(util.get_property_unchecked(window, atoms.WM_HINTS))
Example #3
0
def get_wm_class_unchecked(window):
    return util.PropertyCookie(
        util.get_property_unchecked(window, atoms.WM_CLASS))
Example #4
0
def get_wm_hints_unchecked(window):
    return HintsCookie(util.get_property_unchecked(window, atoms.WM_HINTS))
Example #5
0
def get_wm_normal_hints_unchecked(window):
    return NormalHintsCookie(
        util.get_property_unchecked(window, atoms.WM_NORMAL_HINTS))
Example #6
0
def get_wm_client_machine_unchecked(window):
    cook = util.get_property_unchecked(window, atoms.WM_CLIENT_MACHINE)
    return util.PropertyCookie(cook)
Example #7
0
def get_icon_size_unchecked(window):
    return IconSizeCookie(
        util.get_property_unchecked(window, atoms.WM_ICON_SIZE))
Example #8
0
def get_wm_state_unchecked(window):
    return StateCookie(util.get_property_unchecked(window, 'WM_STATE'))
Example #9
0
def get_icon_size_unchecked(window):
    return IconSizeCookie(util.get_property_unchecked(window, 
                                                      atoms.WM_ICON_SIZE))
Example #10
0
def get_wm_colormap_windows_unchecked(window):
    cook = util.get_property_unchecked(window, 'WM_COLORMAP_WINDOWS')
    return util.PropertyCookie(cook)
Example #11
0
def get_wm_client_machine_unchecked(window):
    cook = util.get_property_unchecked(window, atoms.WM_CLIENT_MACHINE)
    return util.PropertyCookie(cook)
Example #12
0
def get_wm_protocols_unchecked(window):
    return util.PropertyCookie(util.get_property_unchecked(window, 
                                                           'WM_PROTOCOLS'))
Example #13
0
def get_wm_transient_for_unchecked(window):
    cook = util.get_property_unchecked(window, atoms.WM_TRANSIENT_FOR)
    return util.PropertyCookie(cook)
Example #14
0
def get_wm_class_unchecked(window):
    return util.PropertyCookie(util.get_property_unchecked(window, 
                                                           atoms.WM_CLASS))
Example #15
0
def get_wm_protocols_unchecked(window):
    return util.PropertyCookie(
        util.get_property_unchecked(window, 'WM_PROTOCOLS'))
Example #16
0
def get_wm_icon_name_unchecked(window):
    return util.PropertyCookie(util.get_property_unchecked(window, 
                                                           atoms.WM_ICON_NAME))
Example #17
0
def get_wm_colormap_windows_unchecked(window):
    cook = util.get_property_unchecked(window, 'WM_COLORMAP_WINDOWS')
    return util.PropertyCookie(cook)
Example #18
0
def get_hints_unchecked(window):
    cook = util.get_property_unchecked(window, '_MOTIF_WM_HINTS')
    return MotifHintsCookie(cook)
Example #19
0
def get_wm_state_unchecked(window):
    return StateCookie(util.get_property_unchecked(window, 'WM_STATE'))
Example #20
0
def get_hints_unchecked(window):
    cook = util.get_property_unchecked(window, '_MOTIF_WM_HINTS')
    return MotifHintsCookie(cook)
Example #21
0
def get_wm_icon_name_unchecked(window):
    return util.PropertyCookie(
        util.get_property_unchecked(window, atoms.WM_ICON_NAME))
Example #22
0
def get_wm_normal_hints_unchecked(window):
    return NormalHintsCookie(util.get_property_unchecked(window, 
                                                         atoms.WM_NORMAL_HINTS))