Changeset 112 for functions/get-values.r

Show
Ignore:
Timestamp:
12/31/07 22:18:08 (11 months ago)
Author:
ashley
Message:

Added pill.r
Scroller fixes
Major color / theme management changes (in progress)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • functions/get-values.r

    r111 r112  
    11get-values: make function! [ 
    2         "Gets values from input widgets within a display or tab-panel face." 
     2        "Gets values from input widgets within a display or grouping widget." 
    33        face [object!] "Display face" 
    44        /type "Precede each value with its type" 
    55        /local blk 
    66] [ 
    7         if face/type = 'tab-panel [face: face/pane/1] 
     7        all [ 
     8                find [scroll-panel tab-panel] face/type 
     9                face: either block? face/pane [face: face/pane/1] [face/pane] 
     10        ] 
    811        blk: copy [] 
    912        foreach widget face/pane [ 
    1013                if find [ 
    11                         area check check-group drop-list edit-list field group-box password radio-group slider tab-panel table text-list 
     14                        area check check-group drop-list edit-list field group-box password radio-group scroll-panel slider tab-panel table text-list 
    1215                ] widget/type [ 
    1316                        all [type insert tail blk widget/type] 
     
    1619                                find [check check-group slider] widget/type [widget/data] 
    1720                                find [radio-group table text-list] widget/type [widget/picked] 
    18                                 find [group-box tab-panel] widget/type [ 
    19                                         either type [get-input/type widget] [get-input widget] 
     21                                find [scroll-panel group-box tab-panel] widget/type [ 
     22                                        either type [get-values/type widget] [get-values widget] 
    2023                                ] 
    2124                        ]