blob: 018f3274f6800bb4194953ca5a4d4fe91c65f26c [file] [log] [blame]
Dees_Troy51a0e822012-09-05 15:24:24 -04001/*
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
Ethan Yonkerb7a54a32015-10-05 10:16:27 -050020#include "../gui/placement.h"
Ethan Yonkerfbb43532015-12-28 21:54:50 +010021#include <stdbool.h>
22
23struct GRSurface {
24 int width;
25 int height;
26 int row_bytes;
27 int pixel_bytes;
28 unsigned char* data;
29 __u32 format;
30};
Ethan Yonkerb7a54a32015-10-05 10:16:27 -050031
Dees Troyf171e102014-11-06 22:19:58 +010032typedef void* gr_surface;
Dees_Troy51a0e822012-09-05 15:24:24 -040033typedef unsigned short gr_pixel;
34
Vojtech Bocek76ee9032014-09-07 15:01:56 +020035#define FONT_TYPE_TWRP 0
Vojtech Bocek76ee9032014-09-07 15:01:56 +020036#define FONT_TYPE_TTF 1
Vojtech Bocek76ee9032014-09-07 15:01:56 +020037
Dees_Troy51a0e822012-09-05 15:24:24 -040038int gr_init(void);
39void gr_exit(void);
40
41int gr_fb_width(void);
42int gr_fb_height(void);
43gr_pixel *gr_fb_data(void);
44void gr_flip(void);
Ethan Yonkerfbb43532015-12-28 21:54:50 +010045void gr_fb_blank(bool blank);
Dees_Troy51a0e822012-09-05 15:24:24 -040046
47void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a);
that9876ac32015-02-15 21:40:59 +010048void gr_clip(int x, int y, int w, int h);
49void gr_noclip();
Dees_Troy51a0e822012-09-05 15:24:24 -040050void gr_fill(int x, int y, int w, int h);
Vojtech Bocekdb378b62015-03-05 20:02:57 +010051void gr_line(int x0, int y0, int x1, int y1, int width);
52gr_surface gr_render_circle(int radius, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
Dees_Troy51a0e822012-09-05 15:24:24 -040053
Ethan Yonkerb7a54a32015-10-05 10:16:27 -050054int gr_textEx_scaleW(int x, int y, const char *s, void* pFont, int max_width, int placement, int scale);
Dees_Troy51a0e822012-09-05 15:24:24 -040055
Vojtech Bocek76ee9032014-09-07 15:01:56 +020056int gr_getMaxFontHeight(void *font);
Dees_Troy51a0e822012-09-05 15:24:24 -040057
Vojtech Bocek76ee9032014-09-07 15:01:56 +020058void *gr_ttf_loadFont(const char *filename, int size, int dpi);
Ethan Yonkerb7a54a32015-10-05 10:16:27 -050059void *gr_ttf_scaleFont(void *font, int max_width, int measured_width);
Vojtech Bocek76ee9032014-09-07 15:01:56 +020060void gr_ttf_freeFont(void *font);
61int gr_ttf_textExWH(void *context, int x, int y, const char *s, void *pFont, int max_width, int max_height);
62int gr_ttf_measureEx(const char *s, void *font);
63int gr_ttf_maxExW(const char *s, void *font, int max_width);
64int gr_ttf_getMaxFontHeight(void *font);
65void gr_ttf_dump_stats(void);
Dees_Troy51a0e822012-09-05 15:24:24 -040066
67void gr_blit(gr_surface source, int sx, int sy, int w, int h, int dx, int dy);
68unsigned int gr_get_width(gr_surface surface);
69unsigned int gr_get_height(gr_surface surface);
70int gr_get_surface(gr_surface* surface);
71int gr_free_surface(gr_surface surface);
72
Ethan Yonker63e414f2015-02-06 15:44:39 -060073// Functions in graphics_utils.c
Vojtech Bocek03fd6c52014-03-13 18:46:34 +010074int gr_save_screenshot(const char *dest);
75
Dees_Troy51a0e822012-09-05 15:24:24 -040076// input event structure, include <linux/input.h> for the definition.
77// see http://www.mjmwired.net/kernel/Documentation/input/ for info.
78struct input_event;
79
80int ev_init(void);
81void ev_exit(void);
thatde72b6d2015-02-08 08:55:00 +010082int ev_get(struct input_event *ev, int timeout_ms);
Vojtech Bocek1fc30fc2014-01-29 18:37:19 +010083int ev_has_mouse(void);
Dees_Troy51a0e822012-09-05 15:24:24 -040084
85// Resources
86
87// Returns 0 if no error, else negative.
88int res_create_surface(const char* name, gr_surface* pSurface);
89void res_free_surface(gr_surface surface);
Ethan Yonker63e414f2015-02-06 15:44:39 -060090int res_scale_surface(gr_surface source, gr_surface* destination, float scale_w, float scale_h);
Dees_Troy51a0e822012-09-05 15:24:24 -040091
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +000092int vibrate(int timeout_ms);
93
Dees_Troy51a0e822012-09-05 15:24:24 -040094#endif