Hi all,
I'm working with glamour and was wondering if a dynamic stacker would be a good idea. It's use would be something like this:
|stacker| stacker := GLMStacker new. stacker aPane: #methods. stacker aPane: #classes when: [:obj | obj isKindOf: Class].
The default condition being [:obj | true], a stacker would only represent the panes for which the condition is true.
What do you think?