summaryrefslogtreecommitdiff
path: root/src/browser
diff options
context:
space:
mode:
Diffstat (limited to 'src/browser')
-rw-r--r--src/browser/Welcome.py20
-rw-r--r--src/browser/__init__.py0
-rw-r--r--src/browser/pages/welcome.html57
3 files changed, 77 insertions, 0 deletions
diff --git a/src/browser/Welcome.py b/src/browser/Welcome.py
new file mode 100644
index 00000000..87fb3164
--- /dev/null
+++ b/src/browser/Welcome.py
@@ -0,0 +1,20 @@
+from PyQt4 import QtGui,QtCore
+
+
+class Welcome(QtGui.QWidget):
+ """
+ This class creates Welcome page of eSim.
+ """
+ def __init__(self):
+ QtGui.QWidget.__init__(self)
+ self.vlayout = QtGui.QVBoxLayout()
+
+ self.browser = QtGui.QTextBrowser()
+ self.browser.setSource(QtCore.QUrl("../browser/pages/welcome.html"))
+ self.browser.setOpenExternalLinks(True)
+ #self.setSource(QtCore.QUrl("../browser/pages/welcome.html"))
+ #self.setOpenExternalLinks(True)
+
+ self.vlayout.addWidget(self.browser)
+ self.setLayout(self.vlayout)
+ self.show() \ No newline at end of file
diff --git a/src/browser/__init__.py b/src/browser/__init__.py
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/src/browser/__init__.py
diff --git a/src/browser/pages/welcome.html b/src/browser/pages/welcome.html
new file mode 100644
index 00000000..91fe2d84
--- /dev/null
+++ b/src/browser/pages/welcome.html
@@ -0,0 +1,57 @@
+<html>
+
+<head>
+<style>
+body {
+ font-family: sans-serif;
+ margin: 0px;
+ padding: 0px;
+ background-color: #efefef;
+}
+
+h1{
+ font-weight: bold;
+ font-size: 22pt;
+ color: #eeeeee;
+ padding: 10px;
+ background-color: #165982;
+ border: 4px outset #0E324B;
+}
+
+p{
+ margin: 0px 10px 0px 10px;
+}
+
+pre{
+ margin: 0px 10px 0px 10px;
+ font-family: monospaced;
+ font-size: 10pt;
+}
+#license{
+ font-size:8pt;
+}
+</style>
+<head>
+
+<body>
+
+<h1>About to eSim</h1>
+<p>
+<b>eSim</b> is an open source EDA tool for circuit design, simulation, analysis and PCB design. It is an integrated tool built using open source software such as KiCad (<a href=http://www.kicad-pcb.org>http://www.kicad-pcb.org</a>) and Ngspice(<a href=http://ngspice.sourceforge.net>http://ngspice.sourceforge.net</a>).
+<br/>
+eSim source is released under <b>GNU General Public License.</b>
+</p>
+<br/>
+<p>
+eSim is developed by the <b>FOSSEE team at IIT Bombay</b>. To know more about eSim, please visit: <a href=http://esim.fossee.in>http://esim.fossee.in</a>.
+ </p>
+<br />
+<p>
+To discuss more about eSim please visits at <a href=http://freeeda.in>http://freeeda.in</a>
+</p>
+<br />
+
+
+</body>
+
+</html>