]> git.zerfleddert.de Git - micropolis/commitdiff
add button to hide mini-map
authorMichael Gernoth <michael@gernoth.net>
Sat, 18 Dec 2010 00:47:04 +0000 (01:47 +0100)
committerMichael Gernoth <michael@gernoth.net>
Sat, 18 Dec 2010 00:47:04 +0000 (01:47 +0100)
res/wmap.tcl

index b497c352e47707fcc0bf536ab9740d6977cd4a22..f6504f064cc88ef333aca58dea7839e18f304fc7 100644 (file)
@@ -232,6 +232,30 @@ bind $win.topframe.overlays.m <Alt-Key> {tk_traverseToMenu %W %A}
     -value 13\
     -command "SetMapState $win 13"
 
     -value 13\
     -command "SetMapState $win 13"
 
+button $win.topframe.hide\
+  -text {Hide Map}\
+  -font [Font $win Medium]\
+  -borderwidth 1\
+  -command "HideMap $win" \
+  -relief flat
+LinkWindow $win.hide $win.topframe.hide
+tk_bindForTraversal $win.topframe.hide
+
+proc HideMap {win} {
+  pack unpack $win.centerframe
+  $win.topframe.hide configure \
+    -text {Show Map}\
+    -command "ShowMap $win"
+}
+
+proc ShowMap {win} {
+  pack append $win\
+    $win.centerframe           {top frame center fill}
+  $win.topframe.hide configure \
+    -text {Hide Map}\
+    -command "HideMap $win"
+}
+
 label $win.topframe.legend\
   -bitmap "@images/legendn.xpm" \
   -font [Font $win Medium]
 label $win.topframe.legend\
   -bitmap "@images/legendn.xpm" \
   -font [Font $win Medium]
@@ -240,6 +264,7 @@ LinkWindow $win.legend $win.topframe.legend
 pack append $win.topframe\
   $win.topframe.zones          {left frame nw} \
   $win.topframe.overlays       {left frame nw} \
 pack append $win.topframe\
   $win.topframe.zones          {left frame nw} \
   $win.topframe.overlays       {left frame nw} \
+  $win.topframe.hide           {left frame nw} \
   $win.topframe.legend         {right frame ne}
 
 pack append $win\
   $win.topframe.legend         {right frame ne}
 
 pack append $win\
Impressum, Datenschutz