<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
3
iRV                 @   sf   d Z dgZddlmZ ddlZG dd dejjejjZ	dddZ
d	Ze	dejejjfe
ed
ZdS )z6Support code for implementing D-Bus services via PyGI.ExportedGObject    )GObjectNc               @   s   e Zd ZdZdd ZdS )ExportedGObjectTypezA metaclass which inherits from both GObjectMeta and
    `dbus.service.InterfaceType`. Used as the metaclass for `ExportedGObject`.
    c             C   s,   t j jj| ||| tjjj| ||| d S )N)r   	__class____init__dbusserviceInterfaceType)clsnamebasesZdct r   "/usr/lib64/python3.6/gi_service.pyr   ,   s    zExportedGObjectType.__init__N)__name__
__module____qualname____doc__r   r   r   r   r   r   (   s   r   c             K   sT   |j dd}|j dd}|dk	r*|j| tjj| f| tjjj| |||d dS )a:  Initialize an exported GObject.

    :Parameters:
        `conn` : dbus.connection.Connection
            The D-Bus connection or bus
        `object_path` : str
            The object path at which to register this object.
    :Keywords:
        `bus_name` : dbus.service.BusName
            A bus name to be held on behalf of this object, or None.
        `gobject_properties` : dict
            GObject properties to be set on the constructed object.

            Any unrecognised keyword arguments will also be interpreted
            as GObject properties.
        bus_nameNgobject_properties)connobject_pathr   )popupdater   r   r   r   Object)selfr   r   kwargsr   r   r   r   r   ExportedGObject__init__1   s    
r   z)A GObject which is exported on the D-Bus.)r   r   )NN)r   __all__Zgi.repositoryr   Zdbus.servicer   r   r   r	   r   r   ZExportedGObject__doc__r   r   r   r   r   r   <module>   s   	
