aboutsummaryrefslogtreecommitdiffstats
path: root/ColorsListBox.h
blob: 25b56534062352f732d2c3724c01ca29dd32e452 (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
31
32
/* Do not edit this file. It was automatically genarated. */

#ifndef HEADER_ColorsListBox
#define HEADER_ColorsListBox


#include "ListBox.h"
#include "CheckItem.h"
#include "Settings.h"
#include "ScreenManager.h"

#include "debug.h"
#include <assert.h>


typedef struct ColorsListBox_ {
   ListBox super;

   Settings* settings;
   ScreenManager* scr;
   bool check[5];
} ColorsListBox;


ColorsListBox* ColorsListBox_new(Settings* settings, ScreenManager* scr);

void ColorsListBox_delete(Object* object);

HandlerResult ColorsListBox_EventHandler(ListBox* super, int ch);


#endif

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