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


Python FigureCanvasBase.key_press_event方法代码示例

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


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

示例1: key_press

# 需要导入模块: from matplotlib.backend_bases import FigureCanvasBase [as 别名]
# 或者: from matplotlib.backend_bases.FigureCanvasBase import key_press_event [as 别名]
def key_press(self, event):
        key = self._get_key(event)
        FigureCanvasBase.key_press_event(self, key, guiEvent=event) 
开发者ID:ktraunmueller,项目名称:Computable,代码行数:5,代码来源:backend_tkagg.py

示例2: keyPressEvent

# 需要导入模块: from matplotlib.backend_bases import FigureCanvasBase [as 别名]
# 或者: from matplotlib.backend_bases.FigureCanvasBase import key_press_event [as 别名]
def keyPressEvent(self, event):
        key = self._get_key(event)
        if key is None:
            return
        FigureCanvasBase.key_press_event(self, key)
        if DEBUG:
            print('key press', key) 
开发者ID:miloharper,项目名称:neural-network-animation,代码行数:9,代码来源:backend_qt5.py

示例3: _get_testable_interactive_backends

# 需要导入模块: from matplotlib.backend_bases import FigureCanvasBase [as 别名]
# 或者: from matplotlib.backend_bases.FigureCanvasBase import key_press_event [as 别名]
def _get_testable_interactive_backends():
    backends = []
    for deps, backend in [
            # gtk3agg fails on Travis, needs to be investigated.
            # (["cairocffi", "pgi"], "gtk3agg"),
            (["cairocffi", "pgi"], "gtk3cairo"),
            (["PyQt5"], "qt5agg"),
            (["PyQt5", "cairocffi"], "qt5cairo"),
            (["tkinter"], "tkagg"),
            (["wx"], "wx"),
            (["wx"], "wxagg"),
    ]:
        reason = None
        if not os.environ.get("DISPLAY"):
            reason = "No $DISPLAY"
        elif any(importlib.util.find_spec(dep) is None for dep in deps):
            reason = "Missing dependency"
        if reason:
            backend = pytest.param(
                backend, marks=pytest.mark.skip(reason=reason))
        backends.append(backend)
    return backends


# Using a timer not only allows testing of timers (on other backends), but is
# also necessary on gtk3 and wx, where a direct call to key_press_event("q")
# from draw_event causes breakage due to the canvas widget being deleted too
# early.  Also, gtk3 redefines key_press_event with a different signature, so
# we directly invoke it from the superclass instead. 
开发者ID:holzschu,项目名称:python3_ios,代码行数:31,代码来源:test_backends_interactive.py


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