Revision: 1908
          http://svn.sourceforge.net/vexi/?rev=1908&view=rev
Author:   clrg
Date:     2007-07-02 15:20:12 -0700 (Mon, 02 Jul 2007)

Log Message:
-----------
Widget purtiness returning for vexi3 :-) but still not quite there

Modified Paths:
--------------
    widgets/trunk/org.vexi.widgets/src/org/vexi/lib/text/edit.t
    widgets/trunk/org.vexi.widgets/src/org/vexi/lib/text/word.t
    widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/button.t
    widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/cardpane.t
    widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/menu.t
    widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/radio.t
    widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/submenu.t
    widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/tabpane.t
    widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/toolbar.t
    widgets/trunk/org.vexi.widgets/src/org/vexi/theme/win2k/menuitem.t
    widgets/trunk/org.vexi.widgets/src/org/vexi/theme/win2k/submenu.t
    widgets/trunk/org.vexi.widgets/src/org/vexi/theme/win2k/tabpane.t
    widgets/trunk/org.vexi.widgets/src/vexi/util/lazyload.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/bevel.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/border.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/button.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/cardpane.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/cell.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/check.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/item.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/label.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/menu.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/menuitem.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/pad.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/radio.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/scrollpane.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/slider.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/spin.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/splitpane.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/status.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/submenu.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/tab.t
    widgets/trunk/org.vexi.widgets/src/vexi/widget/toolbar.t

Modified: widgets/trunk/org.vexi.widgets/src/org/vexi/lib/text/edit.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/org/vexi/lib/text/edit.t 2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/org/vexi/lib/text/edit.t 2007-07-02 
22:20:12 UTC (rev 1908)
@@ -144,6 +144,7 @@
         
         // edit functions
         thisbox.syncCursor;         // for implementations to override
+        thisbox.selectAll;          // publicly accessible function for 
selecting all text
         thisbox.unselectAll;        // publicly accessible function for 
unselecting all text
         
         ///////////////////////////////////////////////////////////////

Modified: widgets/trunk/org.vexi.widgets/src/org/vexi/lib/text/word.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/org/vexi/lib/text/word.t 2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/org/vexi/lib/text/word.t 2007-07-02 
22:20:12 UTC (rev 1908)
@@ -21,6 +21,7 @@
         thisbox.prefwidth = 0;      // preferred width of this word
         thisbox.valign = "bottom";  // vertical alignmnet of the word
         thisbox.whitespace = false; // whether this is space or text
+        thisbox.parent = null;      // parent block containing this word
         
         // assign static functions to properties
         align       ++= static.alignFunc;

Modified: widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/button.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/button.t     
2007-07-02 17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/button.t     
2007-07-02 22:20:12 UTC (rev 1908)
@@ -8,12 +8,17 @@
     <clickable />
     <selectable />
     <ui:box>
-        
         selected ++= static.selectFunc;
-        
+        thisbox.textalign ++= static.textalignFunc;
     </ui:box>
     
     /** only activate selection if part of a button group */
     static.selectFunc = function(v) { cascade = trapee.groupref ? v : false; }
     
+    static.textalignFunc = function(v)
+    {
+        cascade = v;
+        trapee.th_content.align = v;
+    }
+    
 </vexi>

Modified: widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/cardpane.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/cardpane.t   
2007-07-02 17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/cardpane.t   
2007-07-02 22:20:12 UTC (rev 1908)
@@ -46,11 +46,11 @@
             {
                 if (c != null)
                 {
+                    cascade = c;
                     // show c if it is the first card
                     if (v.numchildren > 1) c.display = false;
-                    else { cascade = c; show = c; }
+                    else { show = c; }
                     c.display ++= displayFunc;
-                    cascade = c;
                     return;
                 }
                 
@@ -72,6 +72,7 @@
                 c.display --= displayFunc;
                 cascade = null;
             }
+            
             cascade = v;
         }
         
@@ -126,7 +127,12 @@
     </ui:box>
     
     /** write trap to show the next card in the cardpane */
-    static.ncWriteFunc = function(v) { if (trapee.nextcard) trapee.show = 
trapee.nextcard; }
+    static.ncWriteFunc = function(v)
+    {
+        if (trapee.nextcard)
+            trapee.show = trapee.nextcard;
+        cascade = v;
+    }
     
     /** read trap to fetch the next card in the cardpane */
     static.ncReadFunc = function()
@@ -143,6 +149,7 @@
         trapee.stepping = true;
         if (trapee.nextstep) trapee.show = trapee.nextstep;
         trapee.stepping = false;
+        cascade = v;
     }
     
     /** read trap to fetch the next step in the show-chain */
@@ -154,7 +161,12 @@
     }
     
     /** write trap to show the previous card in the cardpane */
-    static.pcWriteFunc = function(v) { if (trapee.prevcard) trapee.show = 
trapee.prevcard; }
+    static.pcWriteFunc = function(v)
+    {
+        cascade = v;
+        if (trapee.prevcard)
+            trapee.show = trapee.prevcard;
+    }
     
     /** read trap to fetch the previous card in the cardpane */
     static.pcReadFunc = function()
@@ -170,6 +182,7 @@
         trapee.stepping = true;
         if (trapee.prevstep) trapee.show = trapee.prevstep;
         trapee.stepping = false;
+        cascade = v;
     }
     
     /** read trap to fetch the previous step in the show-chain */

Modified: widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/menu.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/menu.t       
2007-07-02 17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/menu.t       
2007-07-02 22:20:12 UTC (rev 1908)
@@ -34,6 +34,8 @@
             {
                 return th_list[arguments.trapname];
             }
+            
+            cascade = v;
         }
 
         /** popdown menu when a menu item is fired */

Modified: widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/radio.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/radio.t      
2007-07-02 17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/radio.t      
2007-07-02 22:20:12 UTC (rev 1908)
@@ -6,5 +6,7 @@
     </meta:doc>
 
     <clickable />
-    <selectable />
+    <selectable>
+        thisbox.th_content = null;
+    </selectable>
 </vexi>

Modified: widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/submenu.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/submenu.t    
2007-07-02 17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/submenu.t    
2007-07-02 22:20:12 UTC (rev 1908)
@@ -37,6 +37,8 @@
             {
                 return th_list[arguments.trapname];
             }
+            
+            cascade = v;
         }
         
         /** popdown menu when a menu item is fired */

Modified: widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/tabpane.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/tabpane.t    
2007-07-02 17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/tabpane.t    
2007-07-02 22:20:12 UTC (rev 1908)
@@ -19,7 +19,7 @@
         var tabgroup;
         
         /** (un)displays the close button */
-        displayCloseButton ++= function(v) { th_close.display = v; }
+        displayCloseButton ++= function(v) { th_close.display = v; cascade = 
v; }
         
         /** sets up the close button */
         th_close ++= function(v)
@@ -42,7 +42,7 @@
         /** sets up the 'prev' button */
         th_prev ++= function(v)
         {
-            casacde = v;
+            cascade = v;
             v.repeats = true;
             v.interval = 100;
             v.action ++= function(v) { th_head.x = vexi.math.min(th_head.x+10, 
0); }

Modified: widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/toolbar.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/toolbar.t    
2007-07-02 17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/org/vexi/lib/widget/toolbar.t    
2007-07-02 22:20:12 UTC (rev 1908)
@@ -17,6 +17,7 @@
                 if (c == null) th_content[arguments.trapname].group = null;
                 else if (group) c.group = group;
                 else group = c.group;
+                cascade = c;
             }
         }
         

Modified: widgets/trunk/org.vexi.widgets/src/org/vexi/theme/win2k/menuitem.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/org/vexi/theme/win2k/menuitem.t  
2007-07-02 17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/org/vexi/theme/win2k/menuitem.t  
2007-07-02 22:20:12 UTC (rev 1908)
@@ -7,7 +7,7 @@
     
     <menuitem />
     <ui:box redirect="$content" margin="0" padding="3 6">
-        <ui:box width="12" height="12">
+        <ui:box width="12" height="12" shrink="true">
             <ui:box id="icon" />
         </ui:box>
         <ui:box id="content" />

Modified: widgets/trunk/org.vexi.widgets/src/org/vexi/theme/win2k/submenu.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/org/vexi/theme/win2k/submenu.t   
2007-07-02 17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/org/vexi/theme/win2k/submenu.t   
2007-07-02 22:20:12 UTC (rev 1908)
@@ -7,11 +7,11 @@
     
     <lib:submenu />
     <ui:box redirect="$name" margin="0" padding="3 6">
-        <ui:box width="12" height="12">
+        <ui:box width="12" height="12" shrink="true">
             <ui:box id="icon" />
         </ui:box>
         <ui:box id="name" />
-        <ui:box id="arrow" fill=".image.arrowright" shrink="true" />
+        <ui:box id="arrow" align="center" fill=".image.arrowright" 
shrink="true" />
         <bevel id="popbox" form="above" shrink="true">
             <ui:box id="content" orient="vertical" fill="#d4d0c8" />
         </bevel>

Modified: widgets/trunk/org.vexi.widgets/src/org/vexi/theme/win2k/tabpane.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/org/vexi/theme/win2k/tabpane.t   
2007-07-02 17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/org/vexi/theme/win2k/tabpane.t   
2007-07-02 22:20:12 UTC (rev 1908)
@@ -68,12 +68,12 @@
             if (!show) return true;
             // set display for left/right buttons
             $leftwrap.display = $rightwrap.display =
-                ($head.width+1 > ($wrap.width-$closewrap.width));
+                ($head.width + 1 > ($wrap.width - $closewrap.width));
             // set head position
             if (!$leftwrap.display) $head.x = 0;
             else $head.x =
                 vexi.math.min(vexi.math.max($head.x, -show.v_tab.x),
-                              $headwrap.width-(show.v_tab.width+show.v_tab.x));
+                              $headwrap.width - (show.v_tab.width + 
show.v_tab.x));
             syncShadow();
         }
         
@@ -98,7 +98,6 @@
                 c.v_tab.width ++= syncHeadFunc;
                 c.v_tab.x     ++= syncHeadFunc;
             }
-            syncHead();
         }
         
         // general trap function assignments

Modified: widgets/trunk/org.vexi.widgets/src/vexi/util/lazyload.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/util/lazyload.t     2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/util/lazyload.t     2007-07-02 
22:20:12 UTC (rev 1908)
@@ -8,6 +8,8 @@
     <ui:box>
         <ui:box id="msg" />
         
+        var catchexception = false;
+        
         thisbox.loaded = false;
         thisbox.src;
         

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/bevel.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/bevel.t      2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/bevel.t      2007-07-02 
22:20:12 UTC (rev 1908)
@@ -22,7 +22,7 @@
         
         // glue code
         
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "fill", "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "form");

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/border.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/border.t     2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/border.t     2007-07-02 
22:20:12 UTC (rev 1908)
@@ -28,7 +28,7 @@
         
         // glue code
         
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "fill", "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "border", "depth");

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/button.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/button.t     2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/button.t     2007-07-02 
22:20:12 UTC (rev 1908)
@@ -27,7 +27,7 @@
         
         // glue code
         
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "action", "enabled", "fill", 
"focusable", "focused", "group", "selected", "KeyPressed", "KeyReleased");

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/cardpane.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/cardpane.t   2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/cardpane.t   2007-07-02 
22:20:12 UTC (rev 1908)
@@ -17,7 +17,7 @@
         
         // glue code
         
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "fill", "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "enabled", "remembersteps", 
"show");

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/cell.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/cell.t       2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/cell.t       2007-07-02 
22:20:12 UTC (rev 1908)
@@ -11,7 +11,7 @@
         
         rdrt..addRedirect(thisbox, $margin, "margin", "margintop", 
"marginright", "marginbottom", "marginleft");
         rdrt..addRedirect(thisbox, $pad, "padding", "paddingtop", 
"paddingright", "paddingbottom", "paddingleft");
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor", "value");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor", "value");
         
         if ($widget.padding) $pad.padding = $widget.padding;
         if ($widget.margin) $margin.margin = $widget.margin;

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/check.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/check.t      2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/check.t      2007-07-02 
22:20:12 UTC (rev 1908)
@@ -24,7 +24,7 @@
         
         // glue code
         
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "enabled", "fill", "focusable", 
"focused", "group", "selected", "KeyPressed", "KeyReleased", "mixed");

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/item.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/item.t       2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/item.t       2007-07-02 
22:20:12 UTC (rev 1908)
@@ -20,7 +20,7 @@
 
         // glue code
         
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "fill", "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "enabled", "group", "nextselect", 
"prevselect", "selected", "value");

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/label.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/label.t      2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/label.t      2007-07-02 
22:20:12 UTC (rev 1908)
@@ -12,7 +12,7 @@
             </pad>
         </pad>
         
-        rdrt..addRedirect(thisbox, $widget, "orient", "font", "fontsize", 
"text", "textcolor", "enabled", "focused", "KeyPressed");
+        rdrt..addRedirect(thisbox, $widget, "orient", "layout", "font", 
"fontsize", "text", "textcolor", "enabled", "focused", "KeyPressed");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "fill", "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/menu.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/menu.t       2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/menu.t       2007-07-02 
22:20:12 UTC (rev 1908)
@@ -20,7 +20,7 @@
         
         // glue code
         
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "enabled", "fill", "group", 
"selected", "KeyPressed", "KeyReleased");

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/menuitem.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/menuitem.t   2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/menuitem.t   2007-07-02 
22:20:12 UTC (rev 1908)
@@ -20,7 +20,7 @@
         
         // glue code
         
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "action", "enabled", "fill", 
"group", "selected", "KeyPressed", "KeyReleased");

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/pad.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/pad.t        2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/pad.t        2007-07-02 
22:20:12 UTC (rev 1908)
@@ -6,7 +6,7 @@
     </meta:doc>
     
     <pad redirect="$content">
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"layout", "text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         <ui:box id="content" />
     </pad>
 </vexi>

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/radio.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/radio.t      2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/radio.t      2007-07-02 
22:20:12 UTC (rev 1908)
@@ -32,7 +32,7 @@
         
         // glue code
         
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "enabled", "fill", "focusable", 
"focused", "group", "selected", "KeyPressed", "KeyReleased");

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/scrollpane.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/scrollpane.t 2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/scrollpane.t 2007-07-02 
22:20:12 UTC (rev 1908)
@@ -22,7 +22,7 @@
         
         // glue code
         
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "fill", "autohide", 
"autohidehorizontal", "autohidevertical",

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/slider.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/slider.t     2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/slider.t     2007-07-02 
22:20:12 UTC (rev 1908)
@@ -21,7 +21,7 @@
         // glue code
         
         rdrt..addRedirect($widget, thisbox, "hshrink", "shrink", "vshrink");
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "fill", "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "enabled", "focusable", "focused", 
"interval", "max", "min", "orient", "value", "KeyPressed", "KeyReleased");

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/spin.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/spin.t       2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/spin.t       2007-07-02 
22:20:12 UTC (rev 1908)
@@ -20,7 +20,7 @@
         
         // glue code
         
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "fill", "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "enabled", "focusable", "focused", 
"interval", "max", "min", "value", "KeyPressed", "KeyReleased");

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/splitpane.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/splitpane.t  2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/splitpane.t  2007-07-02 
22:20:12 UTC (rev 1908)
@@ -22,7 +22,7 @@
         
         // glue code
         
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "fill", "liveresize", "master", 
"orient");

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/status.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/status.t     2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/status.t     2007-07-02 
22:20:12 UTC (rev 1908)
@@ -20,7 +20,7 @@
         
         // glue code
         
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "action", "enabled", "fill", 
"focusable", "focused");

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/submenu.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/submenu.t    2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/submenu.t    2007-07-02 
22:20:12 UTC (rev 1908)
@@ -20,7 +20,7 @@
         
         // glue code
         
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "action", "enabled", "fill", 
"group", "level", "selected", "KeyPressed", "KeyReleased");

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/tab.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/tab.t        2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/tab.t        2007-07-02 
22:20:12 UTC (rev 1908)
@@ -22,7 +22,7 @@
         
         // glue code
         
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "enabled", "focusable", "focused", 
"fill", "group", "selected", "KeyPressed");

Modified: widgets/trunk/org.vexi.widgets/src/vexi/widget/toolbar.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/widget/toolbar.t    2007-07-02 
17:31:04 UTC (rev 1907)
+++ widgets/trunk/org.vexi.widgets/src/vexi/widget/toolbar.t    2007-07-02 
22:20:12 UTC (rev 1908)
@@ -20,7 +20,7 @@
         
         // glue code
         
-        rdrt..addRedirect(thisbox, $content, "orient", "font", "fontsize", 
"text", "textcolor");
+        rdrt..addRedirect(thisbox, $content, "orient", "layout", "font", 
"fontsize", "text", "textcolor");
         rdrt..addRedirect(thisbox, $margin, "margin", "marginleft", 
"marginright", "margintop", "marginbottom");
         rdrt..addRedirect(thisbox, $pad, "fill", "padding", "paddingleft", 
"paddingright", "paddingtop", "paddingbottom");
         rdrt..addRedirect(thisbox, $widget, "enabled");


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Vexi-svn mailing list
Vexi-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vexi-svn

Reply via email to