1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#===============================================================================
#
# FILE: ViewManagement.py
#
# USAGE: ---
#
# DESCRIPTION: It contain all the view for main Application
#
# OPTIONS: ---
# REQUIREMENTS: ---
# BUGS: ---
# NOTES: ---
# AUTHOR: Fahim Khan, fahim.elex@gmail.com
# ORGANIZATION: ecSim team at FOSSEE, IIT Bombay.
# CREATED: Wednesday 27 January 2015
# REVISION: ---
#===============================================================================
from PyQt4 import QtCore
from PyQt4 import QtGui
class ViewManagement(QtGui.QSplitter):
def __init__(self, *args):
# call init method of superclass
QtGui.QSplitter.__init__(self, *args)
# Creating dictionary which hold all the views
self.views = {}
# define the basic framework of view areas for the
# application
self.createView()
self.setupView()
def createView(self):
#Adding view into views dictionary
self.addView(QtGui.QTextEdit, 'test1')
self.addView(QtGui.QTextEdit, 'test2')
self.addView(QtGui.QTextEdit, 'test3')
def setupView(self):
#setup views to define various areas, such as placement of individual views
# the right segment also is a splitter, but with vertical orientation
right = QtGui.QSplitter()
right.setOrientation(QtCore.Qt.Vertical)
# bind the top level views into the framework
self.views['test1'].setParent(self)
right.setParent(self)
self.views['test2'].setParent(right)
self.views['test3'].setParent(right)
right.setSizes([20, 5])
self.setSizes([5, 20])
def addView(self, settype, name):
#Adding views to dictionary
#parameters:
#settype <class>
#name <string>
self.views[name] = settype()
|