|
- /*
- * libcaca++ C++ bindings for libcaca
- * Copyright (c) 2006 Jean-Yves Lamoureux <jylam@lnxscene.org>
- * All Rights Reserved
- *
- * $Id$
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the Do What The Fuck You Want To
- * Public License, Version 2, as published by Sam Hocevar. See
- * http://sam.zoy.org/wtfpl/COPYING for more details.
- */
-
- /** \file caca++.h
- * \version \$Id$
- * \author Jean-Yves Lamoureux <jylam@lnxscene.org>
- * \brief The \e libcaca++ public header.
- *
- * This header contains the public types and functions that applications
- * using \e libcaca++ may use.
- */
- #ifndef _CACA_PP_H
- #define _CACA_PP_H
-
-
- #include "cucul.h"
- #include "caca.h"
-
- #include "cucul++.h"
-
-
- class Event {
- friend class Caca;
- public:
- enum caca_event_type
- {
- CACA_EVENT_NONE = 0x0000, /**< No event. */
-
- CACA_EVENT_KEY_PRESS = 0x0001, /**< A key was pressed. */
- CACA_EVENT_KEY_RELEASE = 0x0002, /**< A key was released. */
- CACA_EVENT_MOUSE_PRESS = 0x0004, /**< A mouse button was pressed. */
- CACA_EVENT_MOUSE_RELEASE = 0x0008, /**< A mouse button was released. */
- CACA_EVENT_MOUSE_MOTION = 0x0010, /**< The mouse was moved. */
- CACA_EVENT_RESIZE = 0x0020, /**< The window was resized. */
-
- CACA_EVENT_ANY = 0xffff /**< Bitmask for any event. */
- } type;
-
- protected:
- caca_event *e;
- };
-
- class Caca {
- public:
- Caca();
- Caca(Cucul *qq);
- ~Caca();
-
- void attach (Cucul *qq);
- void detach ();
- void set_delay (unsigned int);
- void display ();
- unsigned int get_rendertime ();
- unsigned int get_window_width ();
- unsigned int get_window_height ();
- int set_window_title (char const *);
- int get_event (unsigned int, Event*, int);
- unsigned int get_mouse_x ();
- unsigned int get_mouse_y ();
- void set_mouse (int);
-
-
-
- private:
- caca_t *kk;
- };
-
-
- #endif /* _CACA_PP_H */
|