Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef _MINUI_H_ |
| 18 | #define _MINUI_H_ |
| 19 | |
| 20 | typedef void* gr_surface; |
| 21 | typedef unsigned short gr_pixel; |
| 22 | |
| 23 | int gr_init(void); |
| 24 | void gr_exit(void); |
| 25 | |
| 26 | int gr_fb_width(void); |
| 27 | int gr_fb_height(void); |
| 28 | gr_pixel *gr_fb_data(void); |
| 29 | void gr_flip(void); |
Dees_Troy | 70237dc | 2013-02-28 21:31:48 +0000 | [diff] [blame] | 30 | int gr_fb_blank(int blank); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 31 | |
| 32 | void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a); |
| 33 | void gr_fill(int x, int y, int w, int h); |
| 34 | |
| 35 | int gr_textEx(int x, int y, const char *s, void* font); |
| 36 | int gr_textExW(int x, int y, const char *s, void* font, int max_width); |
| 37 | int gr_textExWH(int x, int y, const char *s, void* pFont, int max_width, int max_height); |
| 38 | int twgr_text(int x, int y, const char *s); |
| 39 | static inline int gr_text(int x, int y, const char *s) { return gr_textEx(x, y, s, NULL); } |
| 40 | int gr_measureEx(const char *s, void* font); |
| 41 | static inline int gr_measure(const char *s) { return gr_measureEx(s, NULL); } |
| 42 | |
| 43 | int gr_getFontDetails(void* font, unsigned* cheight, unsigned* maxwidth); |
| 44 | static inline void gr_font_size(int *x, int *y) { gr_getFontDetails(NULL, (unsigned*) y, (unsigned*) x); } |
| 45 | |
| 46 | void* gr_loadFont(const char* fontName); |
| 47 | |
| 48 | void gr_blit(gr_surface source, int sx, int sy, int w, int h, int dx, int dy); |
| 49 | unsigned int gr_get_width(gr_surface surface); |
| 50 | unsigned int gr_get_height(gr_surface surface); |
| 51 | int gr_get_surface(gr_surface* surface); |
| 52 | int gr_free_surface(gr_surface surface); |
| 53 | |
| 54 | // input event structure, include <linux/input.h> for the definition. |
| 55 | // see http://www.mjmwired.net/kernel/Documentation/input/ for info. |
| 56 | struct input_event; |
| 57 | |
| 58 | int ev_init(void); |
| 59 | void ev_exit(void); |
Dees_Troy | b7ecc09 | 2013-08-24 12:15:41 +0000 | [diff] [blame] | 60 | int ev_get(struct input_event *ev, unsigned dont_wait); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 61 | |
| 62 | // Resources |
| 63 | |
| 64 | // Returns 0 if no error, else negative. |
| 65 | int res_create_surface(const char* name, gr_surface* pSurface); |
| 66 | void res_free_surface(gr_surface surface); |
| 67 | |
| 68 | // Needed for AOSP: |
| 69 | int ev_wait(int timeout); |
| 70 | void ev_dispatch(void); |
| 71 | int ev_get_input(int fd, short revents, struct input_event *ev); |
| 72 | |
| 73 | #endif |