1991-08-16 10:02:04 -03:00
|
|
|
from TransParent import TransParent
|
|
|
|
|
1991-12-26 09:06:29 -04:00
|
|
|
class BoxParent(TransParent):
|
1991-08-16 10:02:04 -03:00
|
|
|
#
|
1992-12-14 08:57:56 -04:00
|
|
|
def create(self, parent, (dh, dv)):
|
1991-08-16 10:02:04 -03:00
|
|
|
self = TransParent.create(self, parent)
|
|
|
|
self.dh = dh
|
|
|
|
self.dv = dv
|
|
|
|
return self
|
|
|
|
#
|
1992-12-14 08:57:56 -04:00
|
|
|
def getminsize(self, m, (width, height)):
|
1991-08-16 10:02:04 -03:00
|
|
|
width = max(0, width - 2*self.dh)
|
|
|
|
height = max(0, height - 2*self.dv)
|
|
|
|
width, height = self.child.getminsize(m, (width, height))
|
|
|
|
return width + 2*self.dh, height + 2*self.dv
|
|
|
|
#
|
|
|
|
def setbounds(self, bounds):
|
|
|
|
(left, top), (right, bottom) = bounds
|
|
|
|
self.bounds = bounds
|
|
|
|
left = min(right, left + self.dh)
|
|
|
|
top = min(bottom, top + self.dv)
|
|
|
|
right = max(left, right - self.dh)
|
|
|
|
bottom = max(top, bottom - self.dv)
|
|
|
|
self.innerbounds = (left, top), (right, bottom)
|
|
|
|
self.child.setbounds(self.innerbounds)
|
|
|
|
#
|
|
|
|
def getbounds(self):
|
|
|
|
return self.bounds
|
|
|
|
#
|
1993-01-04 05:16:51 -04:00
|
|
|
def draw(self, d, area):
|
1991-08-16 10:02:04 -03:00
|
|
|
(left, top), (right, bottom) = self.bounds
|
|
|
|
left = left + 1
|
|
|
|
top = top + 1
|
|
|
|
right = right - 1
|
|
|
|
bottom = bottom - 1
|
|
|
|
d.box((left, top), (right, bottom))
|
1993-01-04 05:16:51 -04:00
|
|
|
TransParent.draw(self, d, area) # XXX clip to innerbounds?
|
1991-08-16 10:02:04 -03:00
|
|
|
#
|
|
|
|
# XXX should scroll clip to innerbounds???
|
|
|
|
# XXX currently the only user restricts itself to child's bounds
|