aboutsummaryrefslogtreecommitdiffstats
path: root/MetersListBox.h
blob: 92f96f9d11af20cf42e130a5c484c44f9e484fab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* 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

© 2014-2024 Faster IT GmbH | imprint | privacy policy