summaryrefslogtreecommitdiff
path: root/grid.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-09-01 00:56:33 -0400
committerPietro Gagliardi <[email protected]>2014-09-01 00:56:33 -0400
commit91e35c161079a16f2cb687818a01c0426df8c718 (patch)
tree4088603904198927de9dc7dd571a75bb8422bbdf /grid.go
parent2731cf3ae0f4cab967bc9efaefcfb6bc90880247 (diff)
Added right-alignment to Grid.
Diffstat (limited to 'grid.go')
-rw-r--r--grid.go50
1 files changed, 25 insertions, 25 deletions
diff --git a/grid.go b/grid.go
index cf52b53..65c4d52 100644
--- a/grid.go
+++ b/grid.go
@@ -62,6 +62,8 @@ type gridCell struct {
// for allocate() and preferredSize()
gridx int
gridy int
+ xoff int
+ yoff int
width int
height int
visited bool
@@ -244,31 +246,29 @@ func (g *grid) allocate(x int, y int, width int, height int, d *sizing) (allocat
// 4) handle alignment
for _, cell := range g.controls {
- if cell.xexpand {
- switch cell.xalign {
- case LeftTop:
- // do nothing; this is the default
- case Center:
- case RightBottom:
- // TODO
- case Fill:
- cell.width = colwidths[cell.gridx]
- default:
- panic(fmt.Errorf("invalid xalign %d in Grid.allocate()", cell.xalign))
- }
+ cell.xoff = 0
+ switch cell.xalign {
+ case LeftTop:
+ // do nothing; this is the default
+ case Center:
+ // TODO
+ case RightBottom:
+ cell.xoff = colwidths[cell.gridx] - cell.width
+ case Fill:
+ cell.width = colwidths[cell.gridx]
+ default:
+ panic(fmt.Errorf("invalid xalign %d in Grid.allocate()", cell.xalign))
}
- if cell.yexpand {
- switch cell.yalign {
- case LeftTop:
- // do nothing; this is the default
- case Center:
- case RightBottom:
- // TODO
- case Fill:
- cell.height = rowheights[cell.gridy]
- default:
- panic(fmt.Errorf("invalid yalign %d in Grid.allocate()", cell.yalign))
- }
+ switch cell.yalign {
+ case LeftTop:
+ // do nothing; this is the default
+ case Center:
+ case RightBottom:
+ // TODO
+ case Fill:
+ cell.height = rowheights[cell.gridy]
+ default:
+ panic(fmt.Errorf("invalid yalign %d in Grid.allocate()", cell.yalign))
}
}
@@ -280,7 +280,7 @@ func (g *grid) allocate(x int, y int, width int, height int, d *sizing) (allocat
current = nil
for col, c := range xcol {
cell := g.controls[c]
- as := c.allocate(x, y, cell.width, cell.height, d)
+ as := c.allocate(x + cell.xoff, y, cell.width, cell.height, d)
if current != nil { // connect first left to first right
current.neighbor = c
}