view libmlk-ui/mlk/ui/frame.h @ 501:23559c7ccf47

core: make sure everything start with mlk
author David Demelier <markand@malikania.fr>
date Tue, 28 Feb 2023 15:54:44 +0100
parents 2af25db99273
children 52a305833381
line wrap: on
line source

/*
 * frame.h -- GUI frame
 *
 * 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_FRAME_H
#define MLK_UI_FRAME_H

#include <mlk/core/core.h>

struct mlk_theme;

enum mlk_frame_style {
	MLK_FRAME_STYLE_NORMAL,
	MLK_FRAME_STYLE_BOX
};

struct mlk_frame {
	int x;
	int y;
	unsigned int w;
	unsigned int h;
	enum mlk_frame_style style;
	const struct mlk_theme *theme;
};

MLK_CORE_BEGIN_DECLS

void
mlk_frame_draw_default(const struct mlk_theme *, const struct mlk_frame *);

void
mlk_frame_draw(const struct mlk_frame *);

MLK_CORE_END_DECLS

#endif /* !MLK_UI_FRAME_H */