summaryrefslogtreecommitdiff
path: root/src/leap/baseapp
diff options
context:
space:
mode:
authorantialias <antialias@leap.se>2012-08-14 16:10:11 -0700
committerantialias <antialias@leap.se>2012-08-14 16:10:11 -0700
commit07ed489ed46140d6de814667ab3e64c6076f3776 (patch)
tree74ff8f3eb7ebbb931ebbd7766aa8e5ae1c962514 /src/leap/baseapp
parentbc44a763808241ec4e732e7b3bbd819490c88cbb (diff)
Works and is now ready to write tests for.
Diffstat (limited to 'src/leap/baseapp')
-rw-r--r--src/leap/baseapp/mainwindow.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/leap/baseapp/mainwindow.py b/src/leap/baseapp/mainwindow.py
index 85129a9b..544667f4 100644
--- a/src/leap/baseapp/mainwindow.py
+++ b/src/leap/baseapp/mainwindow.py
@@ -19,6 +19,7 @@ from leap.eip.config import (EIPInitBadKeyFilePermError)
# from leap.eip import exceptions as eip_exceptions
from leap.gui import mainwindow_rc
+from leap.EIPConnection import EIPConnection
class LeapWindow(QMainWindow):
@@ -46,7 +47,6 @@ class LeapWindow(QMainWindow):
self.timer = QTimer()
# bind signals
-
self.trayIcon.activated.connect(self.iconActivated)
self.newLogLine.connect(self.onLoggerNewLine)
self.statusChange.connect(self.onStatusChange)
@@ -73,7 +73,8 @@ class LeapWindow(QMainWindow):
# we pass a tuple of signals that will be
# triggered when status changes.
#
- self.conductor = EIPConductor(
+ config_file = getattr(opts, 'config_file', None)
+ self.conductor = EIPConnection(
watcher_cb=self.newLogLine.emit,
config_file=config_file,
status_signals=(self.statusChange.emit, ),
@@ -424,7 +425,7 @@ technolust</i>")
# XXX remove all access to manager layer
# from here.
- if self.conductor.manager.with_errors:
+ if self.conductor.with_errors:
#XXX how to wait on pkexec???
#something better that this workaround, plz!!
time.sleep(10)
@@ -448,7 +449,7 @@ technolust</i>")
# status i/o
- status = self.conductor.manager.get_status_io()
+ status = self.conductor.get_status_io()
if status and self.debugmode:
#XXX move this to systray menu indicators
ts, (tun_read, tun_write, tcp_read, tcp_write, auth_read) = status