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


Python Pireal.get_action方法代码示例

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


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

示例1: __on_copy_available

# 需要导入模块: from src.gui.main_window import Pireal [as 别名]
# 或者: from src.gui.main_window.Pireal import get_action [as 别名]
    def __on_copy_available(self, value):
        """ Change states of cut and copy action """

        cut_action = Pireal.get_action("cut_action")
        cut_action.setEnabled(value)
        copy_action = Pireal.get_action("copy_action")
        copy_action.setEnabled(value)
开发者ID:yoshitomimaehara,项目名称:pireal,代码行数:9,代码来源:query_container.py

示例2: new_query

# 需要导入模块: from src.gui.main_window import Pireal [as 别名]
# 或者: from src.gui.main_window.Pireal import get_action [as 别名]
 def new_query(self, filename=''):
     pireal = Pireal.get_service("pireal")
     db_container = self.get_active_db()
     db_container.new_query(filename)
     # Enable editor actions
     # FIXME: refactoring
     pireal.set_enabled_query_actions(True)
     zoom_in_action = Pireal.get_action("zoom_in")
     zoom_in_action.setEnabled(True)
     zoom_out_action = Pireal.get_action("zoom_out")
     zoom_out_action.setEnabled(True)
     paste_action = Pireal.get_action("paste_action")
     paste_action.setEnabled(True)
     comment_action = Pireal.get_action("comment")
     comment_action.setEnabled(True)
     uncomment_action = Pireal.get_action("uncomment")
     uncomment_action.setEnabled(True)
开发者ID:centaurialpha,项目名称:pireal,代码行数:19,代码来源:central_widget.py


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