TWR
T windows api WRapper
 All Classes Functions
TwrListbox.h
1 #ifndef TWRLISTBOX_H
2 #define TWRLISTBOX_H
3 
4 #include "TwrWnd.h"
5 
6 class TwrListbox : public TwrWnd {
7 public:
8  TwrListbox();
9  TwrListbox(HWND newHwnd);
10 
11  HWND create(void);
12  void addItem(TCHAR *item);
13  void insertItem(int index, TCHAR *item);
14  void removeItem(int index);
15  void selectItem(int index);
16  int getSelectedIndex(void);
17 };
18 
19 #endif