TWR
T windows api WRapper
 All Classes Functions
TwrCombobox.h
1 #ifndef TWRCOMBOBOX_H
2 #define TWRCOMBOBOX_H
3 
4 #include "TwrWnd.h"
5 
6 class TwrCombobox : public TwrWnd {
7 private:
8  int style;
9 public:
10  TwrCombobox();
11  TwrCombobox(HWND newHwnd);
12 
13  HWND create(void);
14  HWND create(HWND parent);
15  void addItem(TCHAR *item);
16  int getSelectedIndex(void);
17  void setStyle(int newStyle) {
18  style = newStyle;
19  }
20 };
21 
22 #endif