view libcore/core/window.h @ 216:33ddbe30440e

rpg: improve collisions
author David Demelier <markand@malikania.fr>
date Wed, 18 Nov 2020 10:03:27 +0100
parents eb0a7ab71023
children dd7c8d4321a3
line wrap: on
line source

/*
 * window.h -- basic window management
 *
 * Copyright (c) 2020 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 MOLKO_WINDOW_H
#define MOLKO_WINDOW_H

/**
 * \file window.h
 * \brief Basic window management.
 * \ingroup drawing
 */

#include <stdbool.h>

#include "plat.h"

/**
 * \brief Global exposed window structure.
 */
struct window {
	unsigned int w;         /*!< (-) Window width. */
	unsigned int h;         /*!< (-) Window height. */
	void *handle;           /*!< (*) Native handle. */
};

/**
 * \brief Window mouse cursor.
 */
enum window_cursor {
	WINDOW_CURSOR_ARROW,            /*!< Standard arrow.*/
	WINDOW_CURSOR_EDIT,             /*!< Text edit cursor "I". */
	WINDOW_CURSOR_WAIT,             /*!< Busy cursor. */
	WINDOW_CURSOR_CROSSHAIR,        /*!< Cross-hair for selection. */
	WINDOW_CURSOR_SIZE,             /*!< Size/moving. */
	WINDOW_CURSOR_NO,               /*!< Action forbidden. */
	WINDOW_CURSOR_HAND,             /*!< Hand. */
	WINDOW_CURSOR_LAST              /*!< Number of cursors. */
};

/**
 * \brief Access to global window structure.
 */
extern struct window window;

/**
 * Initialize window.
 *
 * \pre title != NULL
 * \param title the window title
 * \param width the desired width
 * \param height the desired height
 * \return true on success
 */
bool
window_open(const char *title, unsigned int width, unsigned int height) PLAT_NODISCARD;

/**
 * Change the window cursor.
 *
 * You must open a window before calling this function.
 *
 * \pre cursor < WINDOW_CURSOR_LAST
 * \param cursor the cursor
 */
void
window_set_cursor(enum window_cursor cursor);

/**
 * Close the window and destroy associated resources.
 */
void
window_finish(void);

#endif /* !MOLKO_WINDOW_H */