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 | |
Vojtech Bocek | 76ee903 | 2014-09-07 15:01:56 +0200 | [diff] [blame] | 23 | #define FONT_TYPE_TWRP 0 |
| 24 | |
| 25 | #ifndef TW_DISABLE_TTF |
| 26 | #define FONT_TYPE_TTF 1 |
| 27 | #endif |
| 28 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 29 | int gr_init(void); |
| 30 | void gr_exit(void); |
| 31 | |
| 32 | int gr_fb_width(void); |
| 33 | int gr_fb_height(void); |
| 34 | gr_pixel *gr_fb_data(void); |
| 35 | void gr_flip(void); |
Dees_Troy | 70237dc | 2013-02-28 21:31:48 +0000 | [diff] [blame] | 36 | int gr_fb_blank(int blank); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 37 | |
| 38 | void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a); |
| 39 | void gr_fill(int x, int y, int w, int h); |
| 40 | |
| 41 | int gr_textEx(int x, int y, const char *s, void* font); |
| 42 | int gr_textExW(int x, int y, const char *s, void* font, int max_width); |
| 43 | int gr_textExWH(int x, int y, const char *s, void* pFont, int max_width, int max_height); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 44 | static inline int gr_text(int x, int y, const char *s) { return gr_textEx(x, y, s, NULL); } |
| 45 | int gr_measureEx(const char *s, void* font); |
| 46 | static inline int gr_measure(const char *s) { return gr_measureEx(s, NULL); } |
Dees Troy | 31218ec | 2014-02-25 20:35:56 +0000 | [diff] [blame] | 47 | int gr_maxExW(const char *s, void* font, int max_width); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 48 | |
Vojtech Bocek | 76ee903 | 2014-09-07 15:01:56 +0200 | [diff] [blame] | 49 | int gr_getMaxFontHeight(void *font); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 50 | |
| 51 | void* gr_loadFont(const char* fontName); |
Vojtech Bocek | 76ee903 | 2014-09-07 15:01:56 +0200 | [diff] [blame] | 52 | void gr_freeFont(void *font); |
| 53 | |
| 54 | #ifndef TW_DISABLE_TTF |
| 55 | void *gr_ttf_loadFont(const char *filename, int size, int dpi); |
| 56 | void gr_ttf_freeFont(void *font); |
| 57 | int gr_ttf_textExWH(void *context, int x, int y, const char *s, void *pFont, int max_width, int max_height); |
| 58 | int gr_ttf_measureEx(const char *s, void *font); |
| 59 | int gr_ttf_maxExW(const char *s, void *font, int max_width); |
| 60 | int gr_ttf_getMaxFontHeight(void *font); |
| 61 | void gr_ttf_dump_stats(void); |
| 62 | #endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 63 | |
| 64 | void gr_blit(gr_surface source, int sx, int sy, int w, int h, int dx, int dy); |
| 65 | unsigned int gr_get_width(gr_surface surface); |
| 66 | unsigned int gr_get_height(gr_surface surface); |
| 67 | int gr_get_surface(gr_surface* surface); |
| 68 | int gr_free_surface(gr_surface surface); |
| 69 | |
Vojtech Bocek | 03fd6c5 | 2014-03-13 18:46:34 +0100 | [diff] [blame] | 70 | int gr_save_screenshot(const char *dest); |
| 71 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 72 | // input event structure, include <linux/input.h> for the definition. |
| 73 | // see http://www.mjmwired.net/kernel/Documentation/input/ for info. |
| 74 | struct input_event; |
| 75 | |
| 76 | int ev_init(void); |
| 77 | void ev_exit(void); |
Dees_Troy | b7ecc09 | 2013-08-24 12:15:41 +0000 | [diff] [blame] | 78 | int ev_get(struct input_event *ev, unsigned dont_wait); |
Vojtech Bocek | 1fc30fc | 2014-01-29 18:37:19 +0100 | [diff] [blame] | 79 | int ev_has_mouse(void); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 80 | |
| 81 | // Resources |
| 82 | |
| 83 | // Returns 0 if no error, else negative. |
| 84 | int res_create_surface(const char* name, gr_surface* pSurface); |
| 85 | void res_free_surface(gr_surface surface); |
| 86 | |
| 87 | // Needed for AOSP: |
| 88 | int ev_wait(int timeout); |
| 89 | void ev_dispatch(void); |
| 90 | int ev_get_input(int fd, short revents, struct input_event *ev); |
| 91 | |
Samer Diab (S.a.M.e.R_d) | 71e9b04 | 2014-01-07 20:18:47 +0000 | [diff] [blame] | 92 | int vibrate(int timeout_ms); |
| 93 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 94 | #endif |