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


Python QCoreApplication.__init__方法代码示例

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


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

示例1: __init__

# 需要导入模块: from PySide.QtCore import QCoreApplication [as 别名]
# 或者: from PySide.QtCore.QCoreApplication import __init__ [as 别名]
 def __init__(self, *args, **kwargs):
     QCoreApplication.__init__(self, *args, **kwargs)
     self.settings = QSettings('everpad', 'everpad-provider')
     session_bus = dbus.SessionBus()
     self.bus = dbus.service.BusName("com.everpad.Provider", session_bus)
     self.service = ProviderService(self, session_bus, '/EverpadProvider')
     self.sync_thread = SyncThread(self)
     self.sync_thread.sync_state_changed.connect(
         Slot(int)(self.service.sync_state_changed),
     )
     if get_auth_token():
         self.sync_thread.start()
     self.service.qobject.authenticate_signal.connect(
         self.on_authenticated,
     )
     self.service.qobject.remove_authenticate_signal.connect(
         self.on_remove_authenticated,
     )
开发者ID:fabianofranz,项目名称:everpad,代码行数:20,代码来源:daemon.py

示例2: __init__

# 需要导入模块: from PySide.QtCore import QCoreApplication [as 别名]
# 或者: from PySide.QtCore.QCoreApplication import __init__ [as 别名]
 def __init__(self, *args, **kwargs):
     QCoreApplication.__init__(self, *args, **kwargs)
     self._api = None
     self.settings = gconf.client_get_default()
     self.db_path = os.path.expanduser('~/.evernote.db')
     self.conn = sqlite3.connect(self.db_path)
     self.cursor = self.conn.cursor()
     try:
         self.cursor.execute('''create table notes
             (owner text, guid text, title text, content text, updated text)
         ''')
     except OperationalError:
         pass
     self.timer = QTimer()
     self.timer.timeout.connect(self.sync)
     self.timer.setInterval(30 * 60 * 1000)
     self.timer.start()
     self.notes_receive.connect(self.notes_received)
     self.note_receive.connect(self.note_received)
     self.note_update.connect(self.note_updated)
     self.note_remove.connect(self.note_removed)
     self.sync_thread = SyncThread()
     self.sync_thread.start()
     self.sync()
开发者ID:casualuser,项目名称:everpad,代码行数:26,代码来源:provider.py


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