initial commit

This commit is contained in:
jettis
2024-12-05 20:49:37 +02:00
commit 688def7e01
235 changed files with 3334 additions and 0 deletions

View 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