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