Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/interface/interface_icons_event.c
| Show First 20 Lines • Show All 54 Lines • ▼ Show 20 Lines | |||||
| #include "UI_interface.h" | #include "UI_interface.h" | ||||
| #include "UI_interface_icons.h" | #include "UI_interface_icons.h" | ||||
| #include "WM_api.h" | #include "WM_api.h" | ||||
| #include "WM_types.h" | #include "WM_types.h" | ||||
| #include "interface_intern.h" | #include "interface_intern.h" | ||||
| static void icon_draw_rect_input_text(const rctf *rect, | static void icon_draw_rect_input_text( | ||||
| const float color[4], | const rctf *rect, const float color[4], const char *str, float font_size, float v_offset) | ||||
| const char *str, | |||||
| float font_size) | |||||
| { | { | ||||
| BLF_batch_draw_flush(); | BLF_batch_draw_flush(); | ||||
| const int font_id = BLF_default(); | const int font_id = BLF_default(); | ||||
| BLF_color4fv(font_id, color); | BLF_color4fv(font_id, color); | ||||
| BLF_size(font_id, font_size * U.pixelsize, U.dpi); | BLF_size(font_id, font_size * U.pixelsize, U.dpi); | ||||
| float width, height; | float width, height; | ||||
| BLF_width_and_height(font_id, str, BLF_DRAW_STR_DUMMY_MAX, &width, &height); | BLF_width_and_height(font_id, str, BLF_DRAW_STR_DUMMY_MAX, &width, &height); | ||||
| const float x = rect->xmin + (((rect->xmax - rect->xmin) - width) / 2.0f); | const float x = trunc(rect->xmin + (((rect->xmax - rect->xmin) - width) / 2.0f)); | ||||
| const float y = rect->ymin + (((rect->ymax - rect->ymin) - height) / 2.0f); | const float y = rect->ymin + (((rect->ymax - rect->ymin) - height) / 2.0f) + | ||||
| BLF_position(font_id, x, y, 0.0f); | (v_offset * U.dpi_fac); | ||||
| BLF_draw(font_id, str, BLF_DRAW_STR_DUMMY_MAX); | |||||
| BLF_batch_draw_flush(); | |||||
| } | |||||
| static void icon_draw_rect_input_symbol(const rctf *rect, const float color[4], const char *str) | |||||
| { | |||||
| BLF_batch_draw_flush(); | |||||
| const int font_id = blf_mono_font; | |||||
| BLF_color4fv(font_id, color); | |||||
| BLF_size(font_id, 19.0f * U.pixelsize, U.dpi); | |||||
| const float x = rect->xmin + (2.0f * U.pixelsize); | |||||
| const float y = rect->ymin + (1.0f * U.pixelsize); | |||||
| BLF_position(font_id, x, y, 0.0f); | BLF_position(font_id, x, y, 0.0f); | ||||
| BLF_draw(font_id, str, BLF_DRAW_STR_DUMMY_MAX); | BLF_draw(font_id, str, BLF_DRAW_STR_DUMMY_MAX); | ||||
| BLF_batch_draw_flush(); | BLF_batch_draw_flush(); | ||||
| } | } | ||||
| void icon_draw_rect_input(float x, | void icon_draw_rect_input(float x, | ||||
| float y, | float y, | ||||
| int w, | int w, | ||||
| int h, | int h, | ||||
| float UNUSED(alpha), | float UNUSED(alpha), | ||||
| short event_type, | short event_type, | ||||
| short UNUSED(event_value)) | short UNUSED(event_value)) | ||||
| { | { | ||||
| rctf rect = { | |||||
| .xmin = (int)x - U.pixelsize, | |||||
| .xmax = (int)(x + w + U.pixelsize), | |||||
| .ymin = (int)(y), | |||||
| .ymax = (int)(y + h), | |||||
| }; | |||||
| float color[4]; | float color[4]; | ||||
| GPU_line_width(1.0f); | GPU_line_width(1.0f); | ||||
| UI_GetThemeColor4fv(TH_TEXT, color); | UI_GetThemeColor4fv(TH_TEXT, color); | ||||
| UI_draw_roundbox_corner_set(UI_CNR_ALL); | UI_draw_roundbox_corner_set(UI_CNR_ALL); | ||||
| UI_draw_roundbox_aa( | UI_draw_roundbox_aa(&rect, false, 3.0f * U.pixelsize, color); | ||||
| &(const rctf){ | |||||
| .xmin = (int)x - U.pixelsize, | |||||
| .xmax = (int)(x + w), | |||||
| .ymin = (int)y, | |||||
| .ymax = (int)(y + h), | |||||
| }, | |||||
| false, | |||||
| 3.0f * U.pixelsize, | |||||
| color); | |||||
| const enum { | const enum { | ||||
| UNIX, | UNIX, | ||||
| MACOS, | MACOS, | ||||
| MSWIN, | MSWIN, | ||||
| } platform = | } platform = | ||||
| #if defined(__APPLE__) | #if defined(__APPLE__) | ||||
| MACOS | MACOS | ||||
| #elif defined(_WIN32) | #elif defined(_WIN32) | ||||
| MSWIN | MSWIN | ||||
| #else | #else | ||||
| UNIX | UNIX | ||||
| #endif | #endif | ||||
| ; | ; | ||||
| const rctf rect = { | |||||
| .xmin = x, | |||||
| .ymin = y, | |||||
| .xmax = x + w, | |||||
| .ymax = y + h, | |||||
| }; | |||||
| if ((event_type >= EVT_AKEY) && (event_type <= EVT_ZKEY)) { | if ((event_type >= EVT_AKEY) && (event_type <= EVT_ZKEY)) { | ||||
| const char str[2] = {'A' + (event_type - EVT_AKEY), '\0'}; | const char str[2] = {'A' + (event_type - EVT_AKEY), '\0'}; | ||||
| icon_draw_rect_input_text(&rect, color, str, 13.0f); | icon_draw_rect_input_text(&rect, color, str, 13.0f, 0.0f); | ||||
| } | } | ||||
| else if ((event_type >= EVT_F1KEY) && (event_type <= EVT_F12KEY)) { | else if ((event_type >= EVT_F1KEY) && (event_type <= EVT_F24KEY)) { | ||||
| char str[4]; | char str[4]; | ||||
| SNPRINTF(str, "F%d", 1 + (event_type - EVT_F1KEY)); | SNPRINTF(str, "F%d", 1 + (event_type - EVT_F1KEY)); | ||||
| icon_draw_rect_input_text(&rect, color, str, event_type > EVT_F9KEY ? 8.0f : 10.0f); | icon_draw_rect_input_text(&rect, color, str, event_type > EVT_F9KEY ? 8.5f : 11.5f, 0.0f); | ||||
| } | } | ||||
| else if (event_type == EVT_LEFTSHIFTKEY) { /* Right Shift has already been converted to left. */ | else if (event_type == EVT_LEFTSHIFTKEY) { /* Right Shift has already been converted to left. */ | ||||
| icon_draw_rect_input_symbol(&rect, color, (const char[]){0xe2, 0x87, 0xa7, 0x0}); | icon_draw_rect_input_text(&rect, color, (const char[]){0xe2, 0x87, 0xa7, 0x0}, 16.0f, 0.0f); | ||||
| } | } | ||||
| else if (event_type == EVT_LEFTCTRLKEY) { /* Right Shift has already been converted to left. */ | else if (event_type == EVT_LEFTCTRLKEY) { /* Right Shift has already been converted to left. */ | ||||
| if (platform == MACOS) { | if (platform == MACOS) { | ||||
| icon_draw_rect_input_symbol(&rect, color, (const char[]){0xe2, 0x8c, 0x83, 0x0}); | icon_draw_rect_input_text(&rect, color, (const char[]){0xe2, 0x8c, 0x83, 0x0}, 21.0f, -8.0f); | ||||
| } | } | ||||
| else { | else { | ||||
| icon_draw_rect_input_text(&rect, color, "Ctrl", 9.0f); | icon_draw_rect_input_text(&rect, color, "Ctrl", 9.0f, 0.0f); | ||||
| } | } | ||||
| } | } | ||||
| else if (event_type == EVT_LEFTALTKEY) { /* Right Alt has already been converted to left. */ | else if (event_type == EVT_LEFTALTKEY) { /* Right Alt has already been converted to left. */ | ||||
| if (platform == MACOS) { | if (platform == MACOS) { | ||||
| icon_draw_rect_input_symbol(&rect, color, (const char[]){0xe2, 0x8c, 0xa5, 0x0}); | icon_draw_rect_input_text(&rect, color, (const char[]){0xe2, 0x8c, 0xa5, 0x0}, 13.0f, 0.0f); | ||||
| } | } | ||||
| else { | else { | ||||
| icon_draw_rect_input_text(&rect, color, "Alt", 10.0f); | icon_draw_rect_input_text(&rect, color, "Alt", 10.0f, 0.0f); | ||||
| } | } | ||||
| } | } | ||||
| else if (event_type == EVT_OSKEY) { | else if (event_type == EVT_OSKEY) { | ||||
| if (platform == MACOS) { | if (platform == MACOS) { | ||||
| icon_draw_rect_input_symbol(&rect, color, (const char[]){0xe2, 0x8c, 0x98, 0x0}); | icon_draw_rect_input_text(&rect, color, (const char[]){0xe2, 0x8c, 0x98, 0x0}, 16.0f, 0.0f); | ||||
| } | } | ||||
| else if (platform == MSWIN) { | else if (platform == MSWIN) { | ||||
| icon_draw_rect_input_symbol(&rect, color, (const char[]){0xe2, 0x9d, 0x96, 0x0}); | icon_draw_rect_input_text(&rect, color, (const char[]){0xe2, 0x9d, 0x96, 0x0}, 16.0f, 0.0f); | ||||
| } | } | ||||
| else { | else { | ||||
| icon_draw_rect_input_text(&rect, color, "OS", 10.0f); | icon_draw_rect_input_text(&rect, color, "OS", 10.0f, 0.0f); | ||||
| } | } | ||||
| } | } | ||||
| else if (event_type == EVT_DELKEY) { | else if (event_type == EVT_DELKEY) { | ||||
| icon_draw_rect_input_text(&rect, color, "Del", 9.0f); | icon_draw_rect_input_text(&rect, color, "Del", 9.0f, 0.0f); | ||||
| } | } | ||||
| else if (event_type == EVT_TABKEY) { | else if (event_type == EVT_TABKEY) { | ||||
| icon_draw_rect_input_symbol(&rect, color, (const char[]){0xe2, 0xad, 0xbe, 0x0}); | icon_draw_rect_input_text(&rect, color, (const char[]){0xe2, 0xad, 0xbe, 0x0}, 18.0f, -1.5f); | ||||
| } | } | ||||
| else if (event_type == EVT_HOMEKEY) { | else if (event_type == EVT_HOMEKEY) { | ||||
| icon_draw_rect_input_text(&rect, color, "Home", 6.0f); | icon_draw_rect_input_text(&rect, color, "Home", 6.0f, 0.0f); | ||||
| } | } | ||||
| else if (event_type == EVT_ENDKEY) { | else if (event_type == EVT_ENDKEY) { | ||||
| icon_draw_rect_input_text(&rect, color, "End", 8.0f); | icon_draw_rect_input_text(&rect, color, "End", 8.0f, 0.0f); | ||||
| } | } | ||||
| else if (event_type == EVT_RETKEY) { | else if (event_type == EVT_RETKEY) { | ||||
| icon_draw_rect_input_symbol(&rect, color, (const char[]){0xe2, 0x8f, 0x8e, 0x0}); | icon_draw_rect_input_text(&rect, color, (const char[]){0xe2, 0x8f, 0x8e, 0x0}, 17.0f, -1.0f); | ||||
| } | } | ||||
| else if (event_type == EVT_ESCKEY) { | else if (event_type == EVT_ESCKEY) { | ||||
| if (platform == MACOS) { | if (platform == MACOS) { | ||||
| icon_draw_rect_input_symbol(&rect, color, (const char[]){0xe2, 0x8e, 0x8b, 0x0}); | icon_draw_rect_input_text(&rect, color, (const char[]){0xe2, 0x8e, 0x8b, 0x0}, 21.0f, -1.0f); | ||||
| } | } | ||||
| else { | else { | ||||
| icon_draw_rect_input_text(&rect, color, "Esc", 8.0f); | icon_draw_rect_input_text(&rect, color, "Esc", 8.5f, 0.0f); | ||||
| } | } | ||||
| } | } | ||||
| else if (event_type == EVT_PAGEUPKEY) { | else if (event_type == EVT_PAGEUPKEY) { | ||||
| icon_draw_rect_input_text(&rect, color, (const char[]){'P', 0xe2, 0x86, 0x91, 0x0}, 8.0f); | icon_draw_rect_input_text( | ||||
| &rect, color, (const char[]){'P', 0xe2, 0x86, 0x91, 0x0}, 12.0f, 0.0f); | |||||
| } | } | ||||
| else if (event_type == EVT_PAGEDOWNKEY) { | else if (event_type == EVT_PAGEDOWNKEY) { | ||||
| icon_draw_rect_input_text(&rect, color, (const char[]){'P', 0xe2, 0x86, 0x93, 0x0}, 8.0f); | icon_draw_rect_input_text( | ||||
| &rect, color, (const char[]){'P', 0xe2, 0x86, 0x93, 0x0}, 12.0f, 0.0f); | |||||
| } | } | ||||
| else if (event_type == EVT_LEFTARROWKEY) { | else if (event_type == EVT_LEFTARROWKEY) { | ||||
| icon_draw_rect_input_symbol(&rect, color, (const char[]){0xe2, 0x86, 0x90, 0x0}); | icon_draw_rect_input_text(&rect, color, (const char[]){0xe2, 0x86, 0x90, 0x0}, 18.0f, -1.5f); | ||||
| } | } | ||||
| else if (event_type == EVT_UPARROWKEY) { | else if (event_type == EVT_UPARROWKEY) { | ||||
| icon_draw_rect_input_symbol(&rect, color, (const char[]){0xe2, 0x86, 0x91, 0x0}); | icon_draw_rect_input_text(&rect, color, (const char[]){0xe2, 0x86, 0x91, 0x0}, 16.0f, 0.0f); | ||||
| } | } | ||||
| else if (event_type == EVT_RIGHTARROWKEY) { | else if (event_type == EVT_RIGHTARROWKEY) { | ||||
| icon_draw_rect_input_symbol(&rect, color, (const char[]){0xe2, 0x86, 0x92, 0x0}); | icon_draw_rect_input_text(&rect, color, (const char[]){0xe2, 0x86, 0x92, 0x0}, 18.0f, -1.5f); | ||||
| } | } | ||||
| else if (event_type == EVT_DOWNARROWKEY) { | else if (event_type == EVT_DOWNARROWKEY) { | ||||
| icon_draw_rect_input_symbol(&rect, color, (const char[]){0xe2, 0x86, 0x93, 0x0}); | icon_draw_rect_input_text(&rect, color, (const char[]){0xe2, 0x86, 0x93, 0x0}, 16.0f, 0.0f); | ||||
| } | } | ||||
| else if (event_type == EVT_SPACEKEY) { | else if (event_type == EVT_SPACEKEY) { | ||||
| icon_draw_rect_input_symbol(&rect, color, (const char[]){0xe2, 0x90, 0xa3, 0x0}); | icon_draw_rect_input_text(&rect, color, (const char[]){0xe2, 0x90, 0xa3, 0x0}, 20.0f, 2.0f); | ||||
| } | } | ||||
| } | } | ||||