~mvo/ubuntu-sso-client/strawman-lp711413

« back to all changes in this revision

Viewing changes to ubuntu_sso/main/glib.py

  • Committer: Natalia B. Bidart
  • Date: 2011-12-20 16:29:34 UTC
  • Revision ID: natalia.bidart@canonical.com-20111220162934-2s5xou06v3usxyr6
Tags: ubuntu-sso-client-2_99_0
- Release v2.99.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- coding: utf-8 -*-
2
 
#
3
 
# Copyright 2012 Canonical Ltd.
4
 
#
5
 
# This program is free software: you can redistribute it and/or modify it
6
 
# under the terms of the GNU General Public License version 3, as published
7
 
# by the Free Software Foundation.
8
 
#
9
 
# This program is distributed in the hope that it will be useful, but
10
 
# WITHOUT ANY WARRANTY; without even the implied warranties of
11
 
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
12
 
# PURPOSE.  See the GNU General Public License for more details.
13
 
#
14
 
# You should have received a copy of the GNU General Public License along
15
 
# with this program.  If not, see <http://www.gnu.org/licenses/>.
16
 
#
17
 
# In addition, as a special exception, the copyright holders give
18
 
# permission to link the code of portions of this program with the
19
 
# OpenSSL library under certain conditions as described in each
20
 
# individual source file, and distribute linked combinations
21
 
# including the two.
22
 
# You must obey the GNU General Public License in all respects
23
 
# for all of the code used other than OpenSSL.  If you modify
24
 
# file(s) with this exception, you may extend this exception to your
25
 
# version of the file(s), but you are not obligated to do so.  If you
26
 
# do not wish to do so, delete this exception statement from your
27
 
# version.  If you delete this exception statement from all source
28
 
# files in the program, then also delete it here.
29
 
"""GLib main loop runner."""
30
 
 
31
 
# pylint: disable=E0611,F0401
32
 
 
33
 
# pylint: disable=W0621
34
 
import dbus.mainloop.glib
35
 
# pylint: enable=W0621
36
 
 
37
 
from gi.repository import GLib, Gdk, Gtk
38
 
 
39
 
 
40
 
def timeout_func(*a, **kw):
41
 
    """Delay import of dynamic bindings to avoid crashes."""
42
 
    return GLib.timeout_add(*a, **kw)
43
 
 
44
 
 
45
 
def shutdown_func(*a, **kw):
46
 
    """Delay import of dynamic bindings to avoid crashes."""
47
 
    Gtk.main_quit()
48
 
 
49
 
 
50
 
def run_func(loop):
51
 
    """Delay import of dynamic bindings to avoid crashes."""
52
 
    Gtk.main()
53
 
 
54
 
 
55
 
def start_setup():
56
 
    """Setup the env to run the service."""
57
 
    dbus.mainloop.glib.threads_init()
58
 
    Gdk.threads_init()
59
 
    dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)