|
Class: ComboBoxViewWithCompletion
Object
|
+--GraphicsMedium
|
+--DisplaySurface
|
+--SimpleView
|
+--View
|
+--ComboView
|
+--ComboBoxView
|
+--ComboBoxViewWithCompletion
- Package:
- stx:libwidg2
- Category:
- Views-Interactors
- Version:
- rev:
1.1
date: 2021/06/17 22:14:14
- user: cg
- file: ComboBoxViewWithCompletion.st directory: libwidg2
- module: stx stc-classLibrary: libwidg2
- Author:
- exept MBP
documentation to be added.
class:
<a short class summary here, describing what instances represent>
responsibilities:
<describing what my main role is>
collaborators:
<describing with whom and how I talk to>
API:
<public api and main messages>
example:
<a one-line examples on how to use - can also be in a separate example method>
implementation:
<implementation points>
[instance variables:]
[class variables:]
initialization
-
editFieldClass
-
Notice that everything between [exBegin] and [exEnd] is extracted by the html-doc generator
to create nicely formatted and clickable executable examples in the generated html-doc.
(see the browsers class-documentation menu items for more)
trying the widget as standAlone view:
ComboBoxViewWithCompletion new open
|
embedded in another view:
|top v|
top := StandardSystemView new.
top extent:300@300.
v := ComboBoxViewWithCompletion new.
v origin:10@10 corner:150@150.
top add:v.
top open
|
|