move drlaunch in drlaunch
[drlaunch] / drlaunch / src / launcher.py
1 #!/usr/bin/env python
2 # coding=UTF-8
3
4 # Copyright (C) 2010 Stefanos Harhalakis
5 #
6 # This file is part of wifieye.
7 #
8 # wifieye is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # wifieye is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with wifieye.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 # $Id: 0.py 2265 2010-02-21 19:16:26Z v13 $
22
23 __version__ = "$Id: 0.py 2265 2010-02-21 19:16:26Z v13 $"
24
25 import dbus
26
27 bus=None
28 proxy=None
29
30 def init():
31     global bus, proxy
32
33     if bus==None:
34         bus=dbus.SessionBus()
35
36     if proxy==None:
37         proxy=bus.get_object('com.nokia.HildonDesktop.AppMgr',
38             '/com/nokia/HildonDesktop/AppMgr')
39
40 def launch(prog):
41     global bus, proxy
42     
43     proxy.LaunchApplication(prog, 
44         dbus_interface='com.nokia.HildonDesktop.AppMgr')
45
46 if __name__=="__main__":
47     init()
48     launch('wifieye')
49
50 # vim: set ts=8 sts=4 sw=4 noet formatoptions=r ai nocindent:
51