コード例 #1
0
ファイル: key.py プロジェクト: drnlm/pygame_cffi
def get_focused():
    """ get_focused() -> bool
    true if the display is receiving keyboard input from the system
    """
    check_video()
    return (sdl.SDL_GetAppState() & sdl.SDL_APPINPUTFOCUS) != 0
コード例 #2
0
ファイル: mouse.py プロジェクト: drnlm/pygame_cffi
def get_focused():
    """ get_focused() -> bool
    check if the display is receiving mouse input
    """
    check_video()
    return int(sdl.SDL_GetAppState() & sdl.SDL_APPMOUSEFOCUS != 0)
コード例 #3
0
ファイル: display.py プロジェクト: vavilon/pygame_cffi
def get_active():
    """ get_active() -> bool
    Returns True when the display is active on the display
    """
    return (sdl.SDL_GetAppState() & sdl.SDL_APPACTIVE) != 0