initial commit
This commit is contained in:
19
NewDialogs/DlgDropDownList.h
Normal file
19
NewDialogs/DlgDropDownList.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef DLG_DROP_DOWN_LIST
|
||||
#define DLG_DROP_DOWN_LIST
|
||||
|
||||
#include "Dialog.h"
|
||||
#include "DropDownList.h"
|
||||
|
||||
class DlgDropDownList : public Dialog {
|
||||
private:
|
||||
DropDownList *ddl;
|
||||
public:
|
||||
DlgDropDownList(DropDownList *ddl, SDL_Rect pos, bool add_scrollbar);
|
||||
~DlgDropDownList();
|
||||
static void listboxValueChangedCallback(void *p);
|
||||
void listboxValueChanged();
|
||||
static void scrollbarValueChangedCallback(void *p);
|
||||
void scrollbarValueChanged();
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user