Implement changing the font size for individual top level (OS) windows

This commit is contained in:
Kovid Goyal
2018-05-25 21:07:56 +05:30
parent b14c9614e0
commit df9eab279a
14 changed files with 152 additions and 74 deletions

View File

@@ -170,6 +170,8 @@ unsigned long screen_current_char_width(Screen *self);
void screen_mark_url(Screen *self, index_type start_x, index_type start_y, index_type end_x, index_type end_y);
void screen_handle_graphics_command(Screen *self, const GraphicsCommand *cmd, const uint8_t *payload);
bool screen_open_url(Screen*);
void screen_dirty_sprite_positions(Screen *self);
void screen_rescale_images(Screen *self);
#define DECLARE_CH_SCREEN_HANDLER(name) void screen_##name(Screen *screen);
DECLARE_CH_SCREEN_HANDLER(bell)
DECLARE_CH_SCREEN_HANDLER(backspace)