本文整理匯總了Python中enaml.qt.QtGui.QApplication.postEvent方法的典型用法代碼示例。如果您正苦於以下問題:Python QApplication.postEvent方法的具體用法?Python QApplication.postEvent怎麽用?Python QApplication.postEvent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類enaml.qt.QtGui.QApplication
的用法示例。
在下文中一共展示了QApplication.postEvent方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: postUndockedEvent
# 需要導入模塊: from enaml.qt.QtGui import QApplication [as 別名]
# 或者: from enaml.qt.QtGui.QApplication import postEvent [as 別名]
def postUndockedEvent(self):
""" Post a DockItemUndocked event to the root dock area.
"""
root_area = self.manager().dock_area()
if root_area.dockEventsEnabled():
event = QDockItemEvent(DockItemUndocked, self.objectName())
QApplication.postEvent(root_area, event)
示例2: _onSlideOutFinished
# 需要導入模塊: from enaml.qt.QtGui import QApplication [as 別名]
# 或者: from enaml.qt.QtGui.QApplication import postEvent [as 別名]
def _onSlideOutFinished(self):
""" Handle the 'finished' signal from a slide out animation.
"""
item = self.sender().targetObject()
item.setAnimation(None)
container = item.widget()
area = container.manager().dock_area()
if area.dockEventsEnabled():
event = QDockItemEvent(DockItemExtended, container.objectName())
QApplication.postEvent(area, event)
示例3: post_docked_event
# 需要導入模塊: from enaml.qt.QtGui import QApplication [as 別名]
# 或者: from enaml.qt.QtGui.QApplication import postEvent [as 別名]
def post_docked_event(self, container):
""" Post the docked event for the given container.
Parameters
----------
container : QDockContainer
The dock container which was undocked.
"""
root_area = container.manager().dock_area()
if root_area.dockEventsEnabled():
event = QDockItemEvent(DockItemDocked, container.objectName())
QApplication.postEvent(root_area, event)
示例4: closeEvent
# 需要導入模塊: from enaml.qt.QtGui import QApplication [as 別名]
# 或者: from enaml.qt.QtGui.QApplication import postEvent [as 別名]
def closeEvent(self, event):
""" Handle the close event for the dock item.
This handler will reject the event if the item is not closable.
"""
event.ignore()
if self._closable:
event.accept()
area = self.rootDockArea()
if area is not None and area.dockEventsEnabled():
event = QDockItemEvent(DockItemClosed, self.objectName())
QApplication.postEvent(area, event)
示例5: _onSlideInFinished
# 需要導入模塊: from enaml.qt.QtGui import QApplication [as 別名]
# 或者: from enaml.qt.QtGui.QApplication import postEvent [as 別名]
def _onSlideInFinished(self):
""" Handle the 'finished' signal from a slide in animation.
"""
item = self.sender().targetObject()
item.setAnimation(None)
item.hide()
self._untrackForResize(item)
container = item.widget()
area = container.manager().dock_area()
if area.dockEventsEnabled():
event = QDockItemEvent(DockItemRetracted, container.objectName())
QApplication.postEvent(area, event)
示例6: _onVisibilityTimer
# 需要導入模塊: from enaml.qt.QtGui import QApplication [as 別名]
# 或者: from enaml.qt.QtGui.QApplication import postEvent [as 別名]
def _onVisibilityTimer(self):
""" Handle the visibility timer timeout.
This handler will post the dock item visibility event to the
root dock area.
"""
area = self.rootDockArea()
if area is not None and area.dockEventsEnabled():
timer, visible = self._vis_changed
evt_type = DockItemShown if visible else DockItemHidden
event = QDockItemEvent(evt_type, self.objectName())
QApplication.postEvent(area, event)
self._vis_changed = None
示例7: _onCurrentChanged
# 需要導入模塊: from enaml.qt.QtGui import QApplication [as 別名]
# 或者: from enaml.qt.QtGui.QApplication import postEvent [as 別名]
def _onCurrentChanged(self, index):
""" Handle the 'currentChanged' signal for the tab widget.
"""
# These checks protect against the signal firing during close.
container = self.widget(index)
if container is None:
return
manager = container.manager()
if manager is None:
return
area = manager.dock_area()
if area is None:
return
if area.dockEventsEnabled():
event = QDockItemEvent(DockTabSelected, container.objectName())
QApplication.postEvent(area, event)