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