aboutsummaryrefslogtreecommitdiffstats
path: root/ColumnsListBox.h
blob: f9e455e3b9c90ccb89fa3c9968753599b1e24a05 (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_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

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