The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [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 | |
Doug Zongker | 830b3e3 | 2014-03-11 13:22:04 -0700 | [diff] [blame] | 20 | #include <sys/types.h> |
| 21 | |
Elliott Hughes | 07cfb8f | 2015-04-10 13:12:05 -0700 | [diff] [blame] | 22 | #include <functional> |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 23 | |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 24 | // |
| 25 | // Graphics. |
| 26 | // |
| 27 | |
Elliott Hughes | 07cfb8f | 2015-04-10 13:12:05 -0700 | [diff] [blame] | 28 | struct GRSurface { |
Doug Zongker | 39cf417 | 2014-03-06 16:16:05 -0800 | [diff] [blame] | 29 | int width; |
| 30 | int height; |
| 31 | int row_bytes; |
| 32 | int pixel_bytes; |
| 33 | unsigned char* data; |
Elliott Hughes | 07cfb8f | 2015-04-10 13:12:05 -0700 | [diff] [blame] | 34 | }; |
Doug Zongker | 39cf417 | 2014-03-06 16:16:05 -0800 | [diff] [blame] | 35 | |
Elliott Hughes | 07cfb8f | 2015-04-10 13:12:05 -0700 | [diff] [blame] | 36 | // TODO: remove this. |
Doug Zongker | 39cf417 | 2014-03-06 16:16:05 -0800 | [diff] [blame] | 37 | typedef GRSurface* gr_surface; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 38 | |
Elliott Hughes | 07cfb8f | 2015-04-10 13:12:05 -0700 | [diff] [blame] | 39 | int gr_init(); |
| 40 | void gr_exit(); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 41 | |
Elliott Hughes | 07cfb8f | 2015-04-10 13:12:05 -0700 | [diff] [blame] | 42 | int gr_fb_width(); |
| 43 | int gr_fb_height(); |
Doug Zongker | 39cf417 | 2014-03-06 16:16:05 -0800 | [diff] [blame] | 44 | |
Elliott Hughes | 07cfb8f | 2015-04-10 13:12:05 -0700 | [diff] [blame] | 45 | void gr_flip(); |
Dima Zavin | 4daf48a | 2011-08-30 11:59:20 -0700 | [diff] [blame] | 46 | void gr_fb_blank(bool blank); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 47 | |
Doug Zongker | 39cf417 | 2014-03-06 16:16:05 -0800 | [diff] [blame] | 48 | void gr_clear(); // clear entire surface to current color |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 49 | void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a); |
Doug Zongker | c560a67 | 2012-12-18 16:31:27 -0800 | [diff] [blame] | 50 | void gr_fill(int x1, int y1, int x2, int y2); |
Doug Zongker | 39cf417 | 2014-03-06 16:16:05 -0800 | [diff] [blame] | 51 | void gr_text(int x, int y, const char *s, int bold); |
| 52 | void gr_texticon(int x, int y, gr_surface icon); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 53 | int gr_measure(const char *s); |
Dima Zavin | 3c7f00e | 2011-08-30 11:58:24 -0700 | [diff] [blame] | 54 | void gr_font_size(int *x, int *y); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 55 | |
| 56 | void gr_blit(gr_surface source, int sx, int sy, int w, int h, int dx, int dy); |
| 57 | unsigned int gr_get_width(gr_surface surface); |
| 58 | unsigned int gr_get_height(gr_surface surface); |
| 59 | |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 60 | // |
| 61 | // Input events. |
| 62 | // |
| 63 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 64 | struct input_event; |
| 65 | |
Elliott Hughes | 07cfb8f | 2015-04-10 13:12:05 -0700 | [diff] [blame] | 66 | // TODO: move these over to std::function. |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 67 | typedef int (*ev_callback)(int fd, uint32_t epevents, void* data); |
| 68 | typedef int (*ev_set_key_callback)(int code, int value, void* data); |
Dima Zavin | bc29063 | 2011-08-30 11:59:45 -0700 | [diff] [blame] | 69 | |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 70 | int ev_init(ev_callback input_cb, void* data); |
Elliott Hughes | 07cfb8f | 2015-04-10 13:12:05 -0700 | [diff] [blame] | 71 | void ev_exit(); |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 72 | int ev_add_fd(int fd, ev_callback cb, void* data); |
Elliott Hughes | 07cfb8f | 2015-04-10 13:12:05 -0700 | [diff] [blame] | 73 | void ev_iterate_available_keys(std::function<void(int)> f); |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 74 | int ev_sync_key_state(ev_set_key_callback set_key_cb, void* data); |
Dima Zavin | bc29063 | 2011-08-30 11:59:45 -0700 | [diff] [blame] | 75 | |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 76 | // 'timeout' has the same semantics as poll(2). |
| 77 | // 0 : don't block |
| 78 | // < 0 : block forever |
| 79 | // > 0 : block for 'timeout' milliseconds |
Dima Zavin | bc29063 | 2011-08-30 11:59:45 -0700 | [diff] [blame] | 80 | int ev_wait(int timeout); |
| 81 | |
Elliott Hughes | 07cfb8f | 2015-04-10 13:12:05 -0700 | [diff] [blame] | 82 | int ev_get_input(int fd, uint32_t epevents, input_event* ev); |
| 83 | void ev_dispatch(); |
| 84 | int ev_get_epollfd(); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 85 | |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 86 | // |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 87 | // Resources |
Elliott Hughes | 0713819 | 2015-04-10 09:40:53 -0700 | [diff] [blame] | 88 | // |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 89 | |
Doug Zongker | a418aa7 | 2014-03-17 12:10:02 -0700 | [diff] [blame] | 90 | // res_create_*_surface() functions return 0 if no error, else |
| 91 | // negative. |
| 92 | // |
| 93 | // A "display" surface is one that is intended to be drawn to the |
| 94 | // screen with gr_blit(). An "alpha" surface is a grayscale image |
| 95 | // interpreted as an alpha mask used to render text in the current |
| 96 | // color (with gr_text() or gr_texticon()). |
| 97 | // |
| 98 | // All these functions load PNG images from "/res/images/${name}.png". |
| 99 | |
| 100 | // Load a single display surface from a PNG image. |
| 101 | int res_create_display_surface(const char* name, gr_surface* pSurface); |
| 102 | |
| 103 | // Load an array of display surfaces from a single PNG image. The PNG |
| 104 | // should have a 'Frames' text chunk whose value is the number of |
| 105 | // frames this image represents. The pixel data itself is interlaced |
| 106 | // by row. |
| 107 | int res_create_multi_display_surface(const char* name, |
| 108 | int* frames, gr_surface** pSurface); |
| 109 | |
| 110 | // Load a single alpha surface from a grayscale PNG image. |
| 111 | int res_create_alpha_surface(const char* name, gr_surface* pSurface); |
| 112 | |
| 113 | // Load part of a grayscale PNG image that is the first match for the |
| 114 | // given locale. The image is expected to be a composite of multiple |
| 115 | // translations of the same text, with special added rows that encode |
| 116 | // the subimages' size and intended locale in the pixel data. See |
| 117 | // development/tools/recovery_l10n for an app that will generate these |
| 118 | // specialized images from Android resources. |
| 119 | int res_create_localized_alpha_surface(const char* name, const char* locale, |
| 120 | gr_surface* pSurface); |
| 121 | |
| 122 | // Free a surface allocated by any of the res_create_*_surface() |
| 123 | // functions. |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 124 | void res_free_surface(gr_surface surface); |
| 125 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 126 | #endif |