当前位置: 首页>>代码示例>>Python>>正文


Python XK.keysym_to_string方法代码示例

本文整理汇总了Python中Xlib.XK.keysym_to_string方法的典型用法代码示例。如果您正苦于以下问题:Python XK.keysym_to_string方法的具体用法?Python XK.keysym_to_string怎么用?Python XK.keysym_to_string使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Xlib.XK的用法示例。


在下文中一共展示了XK.keysym_to_string方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: listen

# 需要导入模块: from Xlib import XK [as 别名]
# 或者: from Xlib.XK import keysym_to_string [as 别名]
def listen(self):
        self.grab()
        while True:
            evt = self.disp.next_event()
            if evt.type in [X.KeyPress, X.KeyRelease]:
                keycode = evt.detail
                keysym = self.disp.keycode_to_keysym(keycode, 0)
                char = XK.keysym_to_string(keysym)
                self.disp.allow_events(X.ReplayKeyboard, X.CurrentTime)

                self.mode(self, evt, char)

            if evt.type == X.DestroyNotify:
                if evt.window.id == self.id:
                    self.ungrab()
                    return 
开发者ID:gillescastel,项目名称:inkscape-shortcut-manager,代码行数:18,代码来源:main.py

示例2: event_to_string

# 需要导入模块: from Xlib import XK [as 别名]
# 或者: from Xlib.XK import keysym_to_string [as 别名]
def event_to_string(self, event):
    mods = []
    if event.state & X.ShiftMask:
        mods.append('Shift')

    if event.state & X.ControlMask:
        mods.append('Control')

    keycode = event.detail
    keysym = self.disp.keycode_to_keysym(keycode, 0)
    char = XK.keysym_to_string(keysym)

    return ''.join(mod + '+' for mod in mods) + (char if char else '?') 
开发者ID:gillescastel,项目名称:inkscape-shortcut-manager,代码行数:15,代码来源:normal.py

示例3: mousemoveevent

# 需要导入模块: from Xlib import XK [as 别名]
# 或者: from Xlib.XK import keysym_to_string [as 别名]
def mousemoveevent(self, event):
        self.mouse_position_x = event.root_x
        self.mouse_position_y = event.root_y

    # need the following because XK.keysym_to_string() only does printable chars
    # rather than being the correct inverse of XK.string_to_keysym() 
开发者ID:OmkarPathak,项目名称:Python-Programs,代码行数:8,代码来源:pyxhook.py

示例4: mousemoveevent

# 需要导入模块: from Xlib import XK [as 别名]
# 或者: from Xlib.XK import keysym_to_string [as 别名]
def mousemoveevent(self, event):
        self.mouse_position_x = event.root_x
        self.mouse_position_y = event.root_y
        return self.makemousehookevent(event)

    # need the following because XK.keysym_to_string() only does printable
    # chars rather than being the correct inverse of XK.string_to_keysym() 
开发者ID:nikhilkumarsingh,项目名称:clix,代码行数:9,代码来源:pyxhook.py

示例5: mousemoveevent

# 需要导入模块: from Xlib import XK [as 别名]
# 或者: from Xlib.XK import keysym_to_string [as 别名]
def mousemoveevent(self, event):
        self.mouse_position_x = event.root_x
        self.mouse_position_y = event.root_y
        return self.makemousehookevent(event)

    # need the following because XK.keysym_to_string() only does printable chars
    # rather than being the correct inverse of XK.string_to_keysym() 
开发者ID:BillBillBillBill,项目名称:Tickeys-linux,代码行数:9,代码来源:pyxhook.py


注:本文中的Xlib.XK.keysym_to_string方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。