diff options
author | fahim | 2015-02-10 14:51:07 +0530 |
---|---|---|
committer | fahim | 2015-02-10 14:51:07 +0530 |
commit | 775f9c18568ad2f7c480fad271e281dbc235e796 (patch) | |
tree | 3c6875f7323162c4e61653393e179941fa9b0061 /src/configuration/Appconfig.py | |
parent | e91a76c90a2ee829c337251e9adc33767c808b51 (diff) | |
download | eSim-775f9c18568ad2f7c480fad271e281dbc235e796.tar.gz eSim-775f9c18568ad2f7c480fad271e281dbc235e796.tar.bz2 eSim-775f9c18568ad2f7c480fad271e281dbc235e796.zip |
Subject: Added few more gui component
Description: Kicad button,converter button and Ngspice button.
Diffstat (limited to 'src/configuration/Appconfig.py')
-rw-r--r-- | src/configuration/Appconfig.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/configuration/Appconfig.py b/src/configuration/Appconfig.py index d8156ab1..b9b619b1 100644 --- a/src/configuration/Appconfig.py +++ b/src/configuration/Appconfig.py @@ -18,6 +18,8 @@ from PyQt4 import QtGui +import os + class Appconfig(QtGui.QWidget): @@ -37,6 +39,12 @@ class Appconfig(QtGui.QWidget): self.app_width = 600 self.app_heigth = 400 + #Workspace detail + self.workspace_text = '''ecSim stores your project in a folder called a workspace. You can choose a different workspace folder to use for this session.''' + #Home directory + self.home = os.path.expanduser("~")+"/ecSim-Workspace" + self.default_workspace = {"workspace":self.home} + |