Current File : //usr/lib/python2.7/site-packages/pyudev/pyqt4.pyo |
�
��:Oc @` s� d Z d d l m Z m Z m Z m Z d d l m Z m Z m Z d d l
m Z d d l m
Z
d e e f d � � YZ d S( u�
pyudev.pyqt4
============
Provide :class:`~pyudev.pyqt4.QUDevMonitorObserver` to integrate a
:class:`~pyudev.Monitor` into the Qt event loop in applications using the
PyQt4_ binding to Qt.
To use this module, :mod:`PyQt4.QtCore` from PyQt4_ must be available.
.. _PyQt4: http://riverbankcomputing.co.uk/software/pyqt/intro
.. moduleauthor:: Sebastian Wiesner <lunaryorn@googlemail.com>
i ( t print_functiont divisiont unicode_literalst absolute_import( t QSocketNotifiert QObjectt
pyqtSignal( t QUDevMonitorObserverMixin( t Devicet QUDevMonitorObserverc B` sY e Z d Z e e e � Z e e � Z e e � Z e e � Z e e � Z
d d � Z RS( u
Observe a :class:`~pyudev.Monitor` and emit Qt signals upon device
events:
>>> context = pyudev.Context()
>>> monitor = pyudev.Monitor.from_netlink(context)
>>> monitor.filter_by(subsystem='input')
>>> observer = pyudev.pyqt4.QUDevMonitorObserver(monitor)
>>> def device_connected(device):
... print('{0!r} added'.format(device))
>>> observer.deviceAdded.connect(device_connected)
>>> monitor.start()
This class is a child of :class:`~PyQt4.QtCore.QObject`.
c C` s$ t j | | � | j | t � d S( u
Observe the given ``monitor`` (a :class:`~pyudev.Monitor`):
``parent`` is the parent :class:`~PyQt4.QtCore.QObject` of this
object. It is passed unchanged to the inherited constructor of
:class:`~PyQt4.QtCore.QObject`.
N( R t __init__t _setup_notifierR ( t selft monitort parent( ( s0 /usr/lib/python2.7/site-packages/pyudev/pyqt4.pyR
G s N(
t __name__t
__module__t __doc__R t unicodeR t deviceEventt deviceAddedt
deviceRemovedt
deviceChangedt deviceMovedt NoneR
( ( ( s0 /usr/lib/python2.7/site-packages/pyudev/pyqt4.pyR + s N( R t
__future__R R R R t PyQt4.QtCoreR R R t pyudev._qt_baseR t pyudev.coreR R ( ( ( s0 /usr/lib/python2.7/site-packages/pyudev/pyqt4.pyt <module> s
"