123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- /* gui.h - GUI components header file. */
- /*
- * GRUB -- GRand Unified Bootloader
- * Copyright (C) 2008,2009 Free Software Foundation, Inc.
- *
- * GRUB is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * GRUB is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
- */
- #include <grub/types.h>
- #include <grub/err.h>
- #include <grub/video.h>
- #include <grub/bitmap.h>
- #include <grub/gfxmenu_view.h>
- #include <grub/mm.h>
- #ifndef GRUB_GUI_H
- #define GRUB_GUI_H 1
- /* The component ID identifying GUI components to be updated as the timeout
- status changes. */
- #define GRUB_GFXMENU_TIMEOUT_COMPONENT_ID "__timeout__"
- /* A representation of a color. Unlike grub_video_color_t, this
- representation is independent of any video mode specifics. */
- typedef struct grub_gui_color
- {
- grub_uint8_t red;
- grub_uint8_t green;
- grub_uint8_t blue;
- grub_uint8_t alpha;
- } grub_gui_color_t;
- typedef struct grub_gui_component *grub_gui_component_t;
- typedef struct grub_gui_container *grub_gui_container_t;
- typedef struct grub_gui_list *grub_gui_list_t;
- typedef void (*grub_gui_component_callback) (grub_gui_component_t component,
- void *userdata);
- /* Component interface. */
- struct grub_gui_component_ops
- {
- void (*destroy) (void *self);
- const char * (*get_id) (void *self);
- int (*is_instance) (void *self, const char *type);
- void (*paint) (void *self, const grub_video_rect_t *bounds);
- void (*set_parent) (void *self, grub_gui_container_t parent);
- grub_gui_container_t (*get_parent) (void *self);
- void (*set_bounds) (void *self, const grub_video_rect_t *bounds);
- void (*get_bounds) (void *self, grub_video_rect_t *bounds);
- void (*get_minimal_size) (void *self, unsigned *width, unsigned *height);
- grub_err_t (*set_property) (void *self, const char *name, const char *value);
- void (*repaint) (void *self, int second_pass);
- };
- struct grub_gui_container_ops
- {
- void (*add) (void *self, grub_gui_component_t comp);
- void (*remove) (void *self, grub_gui_component_t comp);
- void (*iterate_children) (void *self,
- grub_gui_component_callback cb, void *userdata);
- };
- struct grub_gui_list_ops
- {
- void (*set_view_info) (void *self,
- grub_gfxmenu_view_t view);
- };
- struct grub_gui_progress_ops
- {
- void (*set_state) (void *self, int visible, int start, int current, int end);
- };
- typedef void (*grub_gfxmenu_set_state_t) (void *self, int visible, int start,
- int current, int end);
- struct grub_gfxmenu_timeout_notify
- {
- struct grub_gfxmenu_timeout_notify *next;
- grub_gfxmenu_set_state_t set_state;
- grub_gui_component_t self;
- };
- extern struct grub_gfxmenu_timeout_notify *grub_gfxmenu_timeout_notifications;
- static inline grub_err_t
- grub_gfxmenu_timeout_register (grub_gui_component_t self,
- grub_gfxmenu_set_state_t set_state)
- {
- struct grub_gfxmenu_timeout_notify *ne = grub_malloc (sizeof (*ne));
- if (!ne)
- return grub_errno;
- ne->set_state = set_state;
- ne->self = self;
- ne->next = grub_gfxmenu_timeout_notifications;
- grub_gfxmenu_timeout_notifications = ne;
- return GRUB_ERR_NONE;
- }
- static inline void
- grub_gfxmenu_timeout_unregister (grub_gui_component_t self)
- {
- struct grub_gfxmenu_timeout_notify **p, *q;
- for (p = &grub_gfxmenu_timeout_notifications, q = *p;
- q; p = &(q->next), q = q->next)
- if (q->self == self)
- {
- *p = q->next;
- break;
- }
- }
- typedef signed grub_fixed_signed_t;
- #define GRUB_FIXED_1 0x10000
- static inline signed
- grub_fixed_sfs_divide (signed a, grub_fixed_signed_t b)
- {
- return (a * GRUB_FIXED_1) / b;
- }
- static inline grub_fixed_signed_t
- grub_fixed_fsf_divide (grub_fixed_signed_t a, signed b)
- {
- return a / b;
- }
- static inline signed
- grub_fixed_sfs_multiply (signed a, grub_fixed_signed_t b)
- {
- return (a * b) / GRUB_FIXED_1;
- }
- static inline signed
- grub_fixed_to_signed (grub_fixed_signed_t in)
- {
- return in / GRUB_FIXED_1;
- }
- static inline grub_fixed_signed_t
- grub_signed_to_fixed (signed in)
- {
- return in * GRUB_FIXED_1;
- }
- struct grub_gui_component
- {
- struct grub_gui_component_ops *ops;
- signed x;
- grub_fixed_signed_t xfrac;
- signed y;
- grub_fixed_signed_t yfrac;
- signed w;
- grub_fixed_signed_t wfrac;
- signed h;
- grub_fixed_signed_t hfrac;
- };
- struct grub_gui_progress
- {
- struct grub_gui_component component;
- struct grub_gui_progress_ops *ops;
- };
- struct grub_gui_container
- {
- struct grub_gui_component component;
- struct grub_gui_container_ops *ops;
- };
- struct grub_gui_list
- {
- struct grub_gui_component component;
- struct grub_gui_list_ops *ops;
- };
- /* Interfaces to concrete component classes. */
- grub_gui_container_t grub_gui_canvas_new (void);
- grub_gui_container_t grub_gui_vbox_new (void);
- grub_gui_container_t grub_gui_hbox_new (void);
- grub_gui_component_t grub_gui_label_new (void);
- grub_gui_component_t grub_gui_image_new (void);
- grub_gui_component_t grub_gui_progress_bar_new (void);
- grub_gui_component_t grub_gui_list_new (void);
- grub_gui_component_t grub_gui_circular_progress_new (void);
- /* Manipulation functions. */
- /* Visit all components with the specified ID. */
- void grub_gui_find_by_id (grub_gui_component_t root,
- const char *id,
- grub_gui_component_callback cb,
- void *userdata);
- /* Visit all components. */
- void grub_gui_iterate_recursively (grub_gui_component_t root,
- grub_gui_component_callback cb,
- void *userdata);
- /* Helper functions. */
- static __inline void
- grub_gui_save_viewport (grub_video_rect_t *r)
- {
- grub_video_get_viewport ((unsigned *) &r->x,
- (unsigned *) &r->y,
- (unsigned *) &r->width,
- (unsigned *) &r->height);
- }
- static __inline void
- grub_gui_restore_viewport (const grub_video_rect_t *r)
- {
- grub_video_set_viewport (r->x, r->y, r->width, r->height);
- }
- /* Set a new viewport relative the the current one, saving the current
- viewport in OLD so it can be later restored. */
- static __inline void
- grub_gui_set_viewport (const grub_video_rect_t *r, grub_video_rect_t *old)
- {
- grub_gui_save_viewport (old);
- grub_video_set_viewport (old->x + r->x,
- old->y + r->y,
- r->width,
- r->height);
- }
- static __inline grub_gui_color_t
- grub_gui_color_rgb (int r, int g, int b)
- {
- grub_gui_color_t c;
- c.red = r;
- c.green = g;
- c.blue = b;
- c.alpha = 255;
- return c;
- }
- static __inline grub_video_color_t
- grub_gui_map_color (grub_gui_color_t c)
- {
- return grub_video_map_rgba (c.red, c.green, c.blue, c.alpha);
- }
- static inline int
- grub_video_have_common_points (const grub_video_rect_t *a,
- const grub_video_rect_t *b)
- {
- if (!((a->x <= b->x && b->x <= a->x + a->width)
- || (b->x <= a->x && a->x <= b->x + b->width)))
- return 0;
- if (!((a->y <= b->y && b->y <= a->y + a->height)
- || (b->y <= a->y && a->y <= b->y + b->height)))
- return 0;
- return 1;
- }
- #endif /* ! GRUB_GUI_H */
|