view examples/example-ui/button-glower.c @ 609:d97674d33764

ui: grid menu be more flexible
author David Demelier <markand@malikania.fr>
date Fri, 11 Aug 2023 18:01:28 +0200
parents 7e7c6786d21e
children 509b395171f2
line wrap: on
line source

/*
 * button-style-glow.c -- example of glowing button
 *
 * 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.
 */

#include <assert.h>

#include "button-glower.h"

static void
update(struct mlk_button_delegate *delegate, struct mlk_button *button, unsigned int ticks)
{
	struct button_glower *glower = delegate->data;

	/* Don't update if pressed. */
	if (!button->pressed) {
		mlk_glower_update(&glower->glower, ticks);
		glower->style.bg_color = glower->glower.color;
		glower->style.pressed_bg_color = glower->glower.color;
	}
}

void
button_glower_init(struct button_glower *glower, struct mlk_button *button)
{
	assert(glower);

	glower->style.bg_color = glower->glower.start;
	glower->style.pressed_bg_color = glower->glower.start;
	glower->delegate.data = glower;
	glower->delegate.update = update;

	/* Link this style and delegate to the button. */
	button->style = &glower->style;
	button->delegate = &glower->delegate;

	mlk_glower_init(&glower->glower);
}