home *** CD-ROM | disk | FTP | other *** search
/ Master Technician / MASTER_TECHNICIAN.ISO / mtech / library / online / hardware / comtest / listbox.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-30  |  355 b   |  19 lines

  1. class ListBox : public TListBox
  2. {
  3. public:
  4.     ListBox(TRect& bounds,ushort num,TScrollBar *bar) : TListBox(bounds,num,bar)
  5.     {
  6.     };
  7.  
  8.     void *at(ccIndex index);
  9.     void atFree(ccIndex index);
  10.     ccIndex getCount();
  11.     virtual void insert(void *item);
  12.     void insertDraw(void *item);
  13.     void removeAll();
  14.  
  15. private:
  16.     virtual void handleEvent(TEvent&);
  17. };
  18.  
  19.