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


Python QApplication.startingUp方法代码示例

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


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

示例1: __init__

# 需要导入模块: from qtpy.QtWidgets import QApplication [as 别名]
# 或者: from qtpy.QtWidgets.QApplication import startingUp [as 别名]
 def __init__(self, ui_module):
     self.ui_module = ui_module
     self.app_filename = os.path.basename(sys.argv[0])
     self.app_name = os.path.splitext(self.app_filename)[0]
     if QApplication.startingUp():
         self.app = QApplication(sys.argv)
     if not hasattr(self.ui_module, '__name__'):
         self.ui_module.__name__ = self.ui_module.__class__.__name__
     if hasattr(self, 'compile_ui'):
         self.compile_ui(ui_module)
开发者ID:madsmpedersen,项目名称:MMPE,代码行数:12,代码来源:QtGuiLoader.py

示例2: fedit

# 需要导入模块: from qtpy.QtWidgets import QApplication [as 别名]
# 或者: from qtpy.QtWidgets.QApplication import startingUp [as 别名]
def fedit(data, title="", comment="", icon=None, parent=None, apply=None):
    """
    Create form dialog and return result
    (if Cancel button is pressed, return None)
    
    data: datalist, datagroup
    title: string
    comment: string
    icon: QIcon instance
    parent: parent QWidget
    apply: apply callback (function)
    
    datalist: list/tuple of (field_name, field_value)
    datagroup: list/tuple of (datalist *or* datagroup, title, comment)
    
    -> one field for each member of a datalist
    -> one tab for each member of a top-level datagroup
    -> one page (of a multipage widget, each page can be selected with a combo
       box) for each member of a datagroup inside a datagroup
       
    Supported types for field_value:
      - int, float, str, unicode, bool
      - colors: in Qt-compatible text form, i.e. in hex format or name (red,...)
                (automatically detected from a string)
      - list/tuple:
          * the first element will be the selected index (or value)
          * the other elements can be couples (key, value) or only values
    """
    # Create a QApplication instance if no instance currently exists
    # (e.g. if the module is used directly from the interpreter)
    test_travis = os.environ.get('TEST_CI_WIDGETS', None)
    if test_travis is not None:
        from spyder.utils.qthelpers import qapplication
        _app = qapplication(test_time=1)
    elif QApplication.startingUp():
        _app = QApplication([])

    dialog = FormDialog(data, title, comment, icon, parent, apply)
    if dialog.exec_():
        return dialog.get()
开发者ID:ShenggaoZhu,项目名称:spyder,代码行数:42,代码来源:formlayout.py


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