Dawn/include/dawn/ui/textmenu.h
2021-09-08 23:10:59 -07:00

31 lines
652 B
C

// Copyright (c) 2021 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "../libs.h"
#include "menuv2.h"
#include "grid.h"
#include "label.h"
#include "rectangle.h"
typedef void textmenucallback_t(void *user, uint8_t i, char *text);
typedef struct {
float x, y;
float width, height;
} textmenulabelinfo_t;
typedef struct {
menuv2_t menu;
char *texts[GRID_CHILD_COUNT];
font_t *font;
label_t labels[GRID_CHILD_COUNT];
rectangle_t rectangle;
textmenulabelinfo_t labelInfo[GRID_CHILD_COUNT];
textmenucallback_t *onSelect;
void *user;
} textmenu_t;