20 lines
467 B
C++
20 lines
467 B
C++
#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
|