gui/interface/ListBox.tcl


@interface ListBox : Box {
  {
    listbox xscroll yscroll
  }
  - list ; 
  - list: aList ;

  - add: anItem ;
  - remove: anItem ;
  - contains: anItem ;

  - selection ;
  - selection: anItem ;

  - indexOfSelection: anIndex ;
  - indexOfSelection ;

  - onSelection: aCallback ;
  - onSelection ;

  - clear ;
  - sort ;

  - width: width ;
  - width ;

  - height: height ;
  - height ;

  - listbox ;

  - loadFromFile: aFile ;
}