summaryrefslogtreecommitdiff
path: root/controlbase.sh
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-10-24 19:14:31 -0400
committerPietro Gagliardi <[email protected]>2014-10-24 19:14:31 -0400
commit3db6e4d1c62904e6ca99a0874e4ee768d14863a2 (patch)
tree01bf325e6c8ce3555880a6db26a6695af3c936fa /controlbase.sh
parent643875c8827194e0d270ee29db7c03fa28d4c08e (diff)
Removed controlbase.sh; we don't need it anymore.
Diffstat (limited to 'controlbase.sh')
-rwxr-xr-xcontrolbase.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/controlbase.sh b/controlbase.sh
deleted file mode 100755
index 6d10bb1..0000000
--- a/controlbase.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-sed "s/AAA/$1/g
-s/BBB/$2/g
-s/CCC/$3/g
-s/DDD/$4/g" <<\END
-func (AAA *BBB) CCC() DDD {
- return AAA._CCC
-}
-
-func (AAA *BBB) setParent(p *controlParent) {
- basesetParent(AAA, p)
-}
-
-func (AAA *BBB) allocate(x int, y int, width int, height int, d *sizing) []*allocation {
- return baseallocate(AAA, x, y, width, height, d)
-}
-
-func (AAA *BBB) preferredSize(d *sizing) (width, height int) {
- return basepreferredSize(AAA, d)
-}
-
-func (AAA *BBB) commitResize(a *allocation, d *sizing) {
- basecommitResize(AAA, a, d)
-}
-
-func (AAA *BBB) getAuxResizeInfo(d *sizing) {
- basegetAuxResizeInfo(AAA, d)
-}
-END