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.
30 lines
602 B
30 lines
602 B
/* Do not edit this file. It was automatically genarated. */ |
|
|
|
#ifndef HEADER_MetersListBox |
|
#define HEADER_MetersListBox |
|
|
|
|
|
#include "ListBox.h" |
|
#include "Settings.h" |
|
#include "ScreenManager.h" |
|
|
|
#include "debug.h" |
|
#include <assert.h> |
|
|
|
|
|
typedef struct MetersListBox_ { |
|
ListBox super; |
|
|
|
Settings* settings; |
|
TypedVector* meters; |
|
ScreenManager* scr; |
|
} MetersListBox; |
|
|
|
|
|
MetersListBox* MetersListBox_new(Settings* settings, char* header, TypedVector* meters, ScreenManager* scr); |
|
|
|
void MetersListBox_delete(Object* object); |
|
|
|
HandlerResult MetersListBox_EventHandler(ListBox* super, int ch); |
|
|
|
#endif
|
|
|