forked from albertz/music-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgui.py
230 lines (193 loc) · 6.03 KB
/
gui.py
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
import sys
import utils
from utils import safe_property
# define fallback
def main(): raise NotImplementedError
def guiMain(): pass
def locateFile(filename):
print "locateFile", utils.convertToUnicode(filename).encode("utf-8")
try:
if sys.platform == "darwin":
from guiCocoa import *
else:
# TODO: PyQt could be the generic fallback gui
print "no GUI implemetation"
except:
print "error in loading GUI implementation"
sys.excepthook(*sys.exc_info())
class GuiObject:
"This defines the protocol we must support"
parent = None
attr = None # if this is a child of something, this is the access attrib of the parent.subjectObject
pos = (0,0)
size = (0,0)
autoresize = (False,False,False,False) # wether to modify x,y,w,h on resize
nativeGuiObject = None
subjectObject = None
DefaultSpace = (8,8)
OuterSpace = (8,8)
def __repr__(self): return "<%s %r %r>" % (self.__class__.__name__, self.subjectObject, self.attr)
@safe_property
@property
def name(self):
name = ""
obj = self
while True:
if obj.parent:
name = "." + obj.attr.name + name
obj = obj.parent
else:
name = obj.subjectObject.__class__.__name__ + name
break
return name
@safe_property
@property
def innerSize(self): return self.size
def addChild(self, childGuiObject): pass
def allParents(self):
obj = self
while obj:
yield obj
obj = obj.parent
def childIter(self): return self.childs.itervalues()
def updateContent(self, ev, args, kwargs):
for control in self.childIter():
if control.attr and control.attr.updateHandler:
try:
control.attr.updateHandler(self.subjectObject, control.attr, ev, args, kwargs)
except:
sys.excepthook(*sys.exc_info())
control.updateContent(ev, args, kwargs)
def guiObjectsInLine(self):
obj = self
while True:
if not getattr(obj, "leftGuiObject", None): break
obj = obj.leftGuiObject
while obj:
yield obj
obj = getattr(obj, "rightGuiObject", None)
def layoutLine(self):
line = list(self.guiObjectsInLine())
minY = min([control.pos[1] for control in line])
maxH = max([control.size[1] for control in line])
x = self.parent.OuterSpace[0]
for control in line:
spaceX = self.parent.DefaultSpace[0]
if control.attr.spaceX is not None: spaceX = control.attr.spaceX
w,h = control.size
y = minY + (maxH - h) / 2.
control.pos = (x,y)
x += w + spaceX
varWidthControl = None
for control in line:
if control.attr.variableWidth:
varWidthControl = control
break
if not varWidthControl:
varWidthControl = line[-1]
if varWidthControl.attr.variableWidth is False:
# It explicitely doesn't want to be of variable size.
return
x = self.parent.innerSize[0] - self.parent.OuterSpace[0]
for control in reversed(line):
w,h = control.size
y = control.pos[1]
if control is varWidthControl:
w = x - control.pos[0]
x = control.pos[0]
control.pos = (x,y)
control.size = (w,h)
control.autoresize = (False,False,True,False)
break
else:
x -= w
control.pos = (x,y)
control.size = (w,h)
control.autoresize = (True,False,False,False)
spaceX = self.parent.DefaultSpace[0]
if control.attr.spaceX is not None: spaceX = control.attr.spaceX
x -= spaceX
def childGuiObjectsInColumn(self):
obj = self.firstChildGuiObject
while obj:
yield obj
while getattr(obj, "rightGuiObject", None):
obj = obj.rightGuiObject
obj = getattr(obj, "bottomGuiObject", None)
def layout(self):
lastVertControls = list(self.childGuiObjectsInColumn())
if not lastVertControls: return
if not self.autoresize[3]:
w,h = self.size
lastCtr = lastVertControls[-1]
h = lastCtr.pos[1] + lastCtr.size[1]
self.size = (w,h)
return
varHeightControl = None
for control in lastVertControls:
if control.attr.variableHeight:
varHeightControl = control
break
if not varHeightControl:
varHeightControl = lastVertControls[-1]
y = self.innerSize[1] - self.OuterSpace[1]
for control in reversed(lastVertControls):
w,h = control.size
x = control.pos[0]
if control is varHeightControl:
h = y - control.pos[1]
y = control.pos[1]
control.pos = (x,y)
control.size = (w,h)
control.autoresize = control.autoresize[0:3] + (True,)
control.layout()
break
else:
y -= h
for lineControl in control.guiObjectsInLine():
lineControl.pos = (lineControl.pos[0],y)
lineControl.autoresize = lineControl.autoresize[0:1] + (True,) + lineControl.autoresize[2:4]
y -= self.DefaultSpace[1]
firstChildGuiObject = None
childs = {} # (attrName -> guiObject) map. this might change...
def setupChilds(self):
"If this is a container (a generic object), this does the layouting of the childs"
self.firstChildGuiObject = None
self.childs = {}
x, y = self.OuterSpace
maxX, maxY = 0, 0
lastControl = None
for attr in iterUserAttribs(self.subjectObject):
control = buildControl(attr, self)
if not self.firstChildGuiObject:
self.firstChildGuiObject = control
self.addChild(control)
self.childs[attr.name] = control
spaceX, spaceY = self.DefaultSpace
if attr.spaceX is not None: spaceX = attr.spaceX
if attr.spaceY is not None: spaceY = attr.spaceY
if attr.alignRight and lastControl: # align next right
x = lastControl.pos[0] + lastControl.size[0] + spaceX
# y from before
control.leftGuiObject = lastControl
if lastControl:
lastControl.rightGuiObject = control
elif lastControl: # align next below
x = self.OuterSpace[0]
y = maxY + spaceY
control.topGuiObject = lastControl
if lastControl:
lastControl.layoutLine()
lastControl.bottomGuiObject = control
else: # very first
pass
control.pos = (x,y)
lastControl = control
maxX = max(maxX, control.pos[0] + control.size[0])
maxY = max(maxY, control.pos[1] + control.size[1])
control.updateContent(None,None,None)
if lastControl:
lastControl.layoutLine()
self.layout()
# Handy for now. This return might change.
return (maxX + self.OuterSpace[0], maxY + self.OuterSpace[1])