summaryrefslogtreecommitdiffstats
path: root/ColorsPanel.h
blob: e8adcb5b22f35a5b715a1b52c53970ca4a6bd8e9 (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_ColorsPanel
#define HEADER_ColorsPanel


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

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


typedef struct ColorsPanel_ {
   Panel super;

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


ColorsPanel* ColorsPanel_new(Settings* settings, ScreenManager* scr);

void ColorsPanel_delete(Object* object);

HandlerResult ColorsPanel_EventHandler(Panel* super, int ch);


#endif

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