summaryrefslogtreecommitdiff
path: root/src/configuration
diff options
context:
space:
mode:
Diffstat (limited to 'src/configuration')
-rw-r--r--src/configuration/Appconfig.py4
-rw-r--r--src/configuration/browser/UserManual.py20
2 files changed, 22 insertions, 2 deletions
diff --git a/src/configuration/Appconfig.py b/src/configuration/Appconfig.py
index b589220d..b2aaa0f7 100644
--- a/src/configuration/Appconfig.py
+++ b/src/configuration/Appconfig.py
@@ -1,4 +1,4 @@
-#===============================================================================
+#=========================================================================
#
# FILE: Appconfig.py
#
@@ -14,7 +14,7 @@
# ORGANIZATION: eSim team at FOSSEE, IIT Bombay.
# CREATED: Wednesday 04 February 2015
# REVISION: ---
-#===============================================================================
+#=========================================================================
from PyQt4 import QtGui
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()