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


Python gobject.io_add_watch方法代码示例

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


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

示例1: inputhook

# 需要导入模块: import gobject [as 别名]
# 或者: from gobject import io_add_watch [as 别名]
def inputhook(context):
    """
    When the eventloop of prompt-toolkit is idle, call this inputhook.

    This will run the GTK main loop until the file descriptor
    `context.fileno()` becomes ready.

    :param context: An `InputHookContext` instance.
    """

    def _main_quit(*a, **kw):
        gtk.main_quit()
        return False

    gobject.io_add_watch(context.fileno(), gobject.IO_IN, _main_quit)
    gtk.main() 
开发者ID:prompt-toolkit,项目名称:python-prompt-toolkit,代码行数:18,代码来源:inputhook.py

示例2: inputhook_gtk

# 需要导入模块: import gobject [as 别名]
# 或者: from gobject import io_add_watch [as 别名]
def inputhook_gtk():
    gobject.io_add_watch(sys.stdin, gobject.IO_IN, _main_quit)
    gtk.main()
    return 0 
开发者ID:ktraunmueller,项目名称:Computable,代码行数:6,代码来源:inputhookgtk.py

示例3: _install_transport_ready

# 需要导入模块: import gobject [as 别名]
# 或者: from gobject import io_add_watch [as 别名]
def _install_transport_ready(self):
        if ('r' in self.access_type):
            io_event = gobject.IO_IN
        else:
            io_event = gobject.IO_OUT

        self.tag = gobject.io_add_watch(self.fd, io_event,
                                        self._transport_ready_handler) 
开发者ID:liamw9534,项目名称:bt-manager,代码行数:10,代码来源:audio.py

示例4: incoming_connection

# 需要导入模块: import gobject [as 别名]
# 或者: from gobject import io_add_watch [as 别名]
def incoming_connection(self, source, condition):
        sock, info = self.server_sock.accept()
        address, psm = info

        self.add_text("\naccepted connection from %s" % str(address))

        # add new connection to list of peers
        self.peers[address] = sock
        self.addresses[sock] = address

        source = gobject.io_add_watch (sock, gobject.IO_IN, self.data_ready)
        self.sources[address] = source
        return True 
开发者ID:kuri65536,项目名称:python-for-android,代码行数:15,代码来源:bluezchat.py

示例5: start_server

# 需要导入模块: import gobject [as 别名]
# 或者: from gobject import io_add_watch [as 别名]
def start_server(self):
        self.server_sock = bluetooth.BluetoothSocket (bluetooth.L2CAP)
        self.server_sock.bind(("",0x1001))
        self.server_sock.listen(1)

        gobject.io_add_watch(self.server_sock, 
                gobject.IO_IN, self.incoming_connection) 
开发者ID:kuri65536,项目名称:python-for-android,代码行数:9,代码来源:bluezchat.py

示例6: _handleSignals

# 需要导入模块: import gobject [as 别名]
# 或者: from gobject import io_add_watch [as 别名]
def _handleSignals(self):
            # Let the base class do its thing, but pygtk is probably
            # going to stomp on us so go beyond that and set up some
            # signal handling which pygtk won't mess with.  This would
            # be better done by letting this reactor select a
            # different implementation of installHandler for
            # _SIGCHLDWaker to use.  Then, at least, we could fall
            # back to our extension module.  See #4286.
            from twisted.internet.process import reapAllProcesses as _reapAllProcesses
            base._SignalReactorMixin._handleSignals(self)
            signal.signal(signal.SIGCHLD, lambda *a: self.callFromThread(_reapAllProcesses))
            if getattr(signal, "siginterrupt", None) is not None:
                signal.siginterrupt(signal.SIGCHLD, False)
            # Like the base, reap processes now in case a process
            # exited before the handlers above were installed.
            _reapAllProcesses()

    # The input_add function in pygtk1 checks for objects with a
    # 'fileno' method and, if present, uses the result of that method
    # as the input source. The pygtk2 input_add does not do this. The
    # function below replicates the pygtk1 functionality.

    # In addition, pygtk maps gtk.input_add to _gobject.io_add_watch, and
    # g_io_add_watch() takes different condition bitfields than
    # gtk_input_add(). We use g_io_add_watch() here in case pygtk fixes this
    # bug. 
开发者ID:kuri65536,项目名称:python-for-android,代码行数:28,代码来源:gtk2reactor.py

示例7: input_add

# 需要导入模块: import gobject [as 别名]
# 或者: from gobject import io_add_watch [as 别名]
def input_add(self, source, condition, callback):
        if hasattr(source, 'fileno'):
            # handle python objects
            def wrapper(source, condition, real_s=source, real_cb=callback):
                return real_cb(real_s, condition)
            return gobject.io_add_watch(source.fileno(), condition, wrapper)
        else:
            return gobject.io_add_watch(source, condition, callback) 
开发者ID:kuri65536,项目名称:python-for-android,代码行数:10,代码来源:gtk2reactor.py

示例8: register_intr_sock

# 需要导入模块: import gobject [as 别名]
# 或者: from gobject import io_add_watch [as 别名]
def register_intr_sock(self, sock):
        self.sock = sock
        for dev in self.devs:
            gobject.io_add_watch(dev, gobject.IO_IN, self.ev_cb) 
开发者ID:lvht,项目名称:btk,代码行数:6,代码来源:inputdev.py

示例9: __init__

# 需要导入模块: import gobject [as 别名]
# 或者: from gobject import io_add_watch [as 别名]
def __init__(self, useGtk=True):
        self.context = gobject.main_context_default()
        self.loop = gobject.MainLoop()
        posixbase.PosixReactorBase.__init__(self)
        # pre 2.3.91 the glib iteration and mainloop functions didn't release
        # global interpreter lock, thus breaking thread and signal support.
        if (hasattr(gobject, "pygtk_version") and gobject.pygtk_version >= (2, 3, 91)
            and not useGtk):
            self.__pending = self.context.pending
            self.__iteration = self.context.iteration
            self.__crash = self.loop.quit
            self.__run = self.loop.run
        else:
            import gtk
            self.__pending = gtk.events_pending
            self.__iteration = gtk.main_iteration
            self.__crash = _our_mainquit
            self.__run = gtk.main

    # The input_add function in pygtk1 checks for objects with a
    # 'fileno' method and, if present, uses the result of that method
    # as the input source. The pygtk2 input_add does not do this. The
    # function below replicates the pygtk1 functionality.

    # In addition, pygtk maps gtk.input_add to _gobject.io_add_watch, and
    # g_io_add_watch() takes different condition bitfields than
    # gtk_input_add(). We use g_io_add_watch() here in case pygtk fixes this
    # bug. 
开发者ID:kenorb-contrib,项目名称:BitTorrent,代码行数:30,代码来源:gtk2reactor.py


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