diff options
author | fahim | 2015-02-05 15:44:25 +0530 |
---|---|---|
committer | fahim | 2015-02-05 15:44:25 +0530 |
commit | e91a76c90a2ee829c337251e9adc33767c808b51 (patch) | |
tree | dba2698c0ff969a45778ab93332da38971c91f8b /src/configuration/Appconfig.py | |
download | eSim-e91a76c90a2ee829c337251e9adc33767c808b51.tar.gz eSim-e91a76c90a2ee829c337251e9adc33767c808b51.tar.bz2 eSim-e91a76c90a2ee829c337251e9adc33767c808b51.zip |
Subject: First commit
Description: It incluse initial gui to be used in new flow of FreeEDA.
Diffstat (limited to 'src/configuration/Appconfig.py')
-rw-r--r-- | src/configuration/Appconfig.py | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/configuration/Appconfig.py b/src/configuration/Appconfig.py new file mode 100644 index 00000000..d8156ab1 --- /dev/null +++ b/src/configuration/Appconfig.py @@ -0,0 +1,44 @@ +#=============================================================================== +# +# FILE: Appconfig.py +# +# USAGE: --- +# +# DESCRIPTION: This define all configuration used in Application. +# +# OPTIONS: --- +# REQUIREMENTS: --- +# BUGS: --- +# NOTES: --- +# AUTHOR: Fahim Khan, fahim.elex@gmail.com +# ORGANIZATION: ecSim team at FOSSEE, IIT Bombay. +# CREATED: Wednesday 04 February 2015 +# REVISION: --- +#=============================================================================== + + +from PyQt4 import QtGui + + +class Appconfig(QtGui.QWidget): + """ + All configuration goes here + """ + def __init__(self): + super(Appconfig, self).__init__() + #Application Details + self._APPLICATION = 'ecSim' + self._VERSION = 'v1.1' + self._AUTHOR = 'Fahim' + + #Application setting + self.app_xpos = 100 + self.app_ypos = 100 + self.app_width = 600 + self.app_heigth = 400 + + + + + +
\ No newline at end of file |