Status: Accepted
Owner:
[hidden email]
Labels: Milestone-1.3
New issue 3773 by
[hidden email]: should get a better
completionDialog
http://code.google.com/p/pharo/issues/detail?id=3773OBCompletionDialog / OBCompletionRequest come with the OB from Pharo 1.2.
The way to use it is like:
OBCompletionRequest new
prompt: 'Find Class';
searchBlock: [ :string | OBCmdFindClass new findClassIn: Smalltalk
pattern: string ];
labelBlock: [ :class | class name ];
iconBlock: [ :class | class browserIcon ];
signal.