view libmlk-ui/mlk/ui/label.h @ 504:52a305833381

ui: rework styles
author David Demelier <markand@malikania.fr>
date Wed, 01 Mar 2023 14:07:10 +0100
parents 2af25db99273
children 6100c643dba0
line wrap: on
line source

/*
 * label.h -- GUI label
 *
 * Copyright (c) 2020-2023 David Demelier <markand@malikania.fr>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#ifndef MLK_UI_LABEL_H
#define MLK_UI_LABEL_H

#include <mlk/core/core.h>

struct mlk_font;
struct mlk_label;

enum mlk_label_flags {
	MLK_LABEL_FLAGS_NONE	= 0,
	MLK_LABEL_FLAGS_SHADOW  = (1 << 0)
};

struct mlk_label_style {
	void *data;
	unsigned long shadow_color;
	unsigned long text_color;
	struct mlk_font *text_font;
	void (*init)(struct mlk_label_style *, struct mlk_label *);
	void (*update)(struct mlk_label_style *, struct mlk_label *, unsigned int);
	void (*draw)(struct mlk_label_style *, const struct mlk_label *);
	void (*finish)(struct mlk_label_style *, struct mlk_label *);
};

struct mlk_label {
	int x, y;
	const char *text;
	enum mlk_label_flags flags;
	struct mlk_label_style *style;
};

extern struct mlk_label_style mlk_label_style;

MLK_CORE_BEGIN_DECLS

void
mlk_label_init(struct mlk_label *);

int
mlk_label_ok(const struct mlk_label *);

int
mlk_label_query(const struct mlk_label *, unsigned int *, unsigned int *);

void
mlk_label_draw(const struct mlk_label *);

void
mlk_label_finish(struct mlk_label *);

MLK_CORE_END_DECLS

#endif /* !MLK_UI_LABEL_H */