summaryrefslogtreecommitdiff
path: root/src/configuration/browser/UserManual.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/configuration/browser/UserManual.py')
-rw-r--r--src/configuration/browser/UserManual.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/configuration/browser/UserManual.py b/src/configuration/browser/UserManual.py
new file mode 100644
index 00000000..3bcfbace
--- /dev/null
+++ b/src/configuration/browser/UserManual.py
@@ -0,0 +1,20 @@
+from PyQt4 import QtGui
+import webbrowser
+
+
+class UserManual(QtGui.QWidget):
+ """
+ This class creates Welcome page of eSim.
+ """
+
+ def __init__(self):
+ QtGui.QWidget.__init__(self)
+
+ self.vlayout = QtGui.QVBoxLayout()
+
+ self.url = "../browser/pages/User-Manual/eSim.html"
+ self.test = webbrowser.open(
+ "../browser/pages/User-Manual/eSim.html", new=2)
+
+ self.setLayout(self.vlayout)
+ self.show()