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