You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
621 B
32 lines
621 B
/* Do not edit this file. It was automatically genarated. */ |
|
|
|
#ifndef HEADER_ColumnsListBox |
|
#define HEADER_ColumnsListBox |
|
|
|
|
|
#include "ListBox.h" |
|
#include "Settings.h" |
|
#include "ScreenManager.h" |
|
|
|
#include "debug.h" |
|
#include <assert.h> |
|
|
|
|
|
typedef struct ColumnsListBox_ { |
|
ListBox super; |
|
|
|
Settings* settings; |
|
TypedVector* columns; |
|
ScreenManager* scr; |
|
} ColumnsListBox; |
|
|
|
|
|
ColumnsListBox* ColumnsListBox_new(Settings* settings, ScreenManager* scr); |
|
|
|
void ColumnsListBox_delete(Object* object); |
|
|
|
void ColumnsListBox_update(ListBox* super); |
|
|
|
HandlerResult ColumnsListBox_eventHandler(ListBox* super, int ch); |
|
|
|
#endif
|
|
|