mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
99dd292553
- Resize the window slightly when compiled with REMOVE_ADVANCED to avoid deadspace at the bottom of the window. - Skip over the non-printable characters by starting with character ' ' + 1. - Instead of iterating over every cell, simply compute the cell x and y using the CellSize. - Modify behaviour of charmap to allow large character render on mouse move, only hiding the larger character on double click. - Simplify math for moving window to be on desktop. Added FIXME to highlight this doesn't work well on multi-monitor setups. Changed xPos and yPos to LONG since negative numbers are valid on multi-monitor setups. - Do not draw invalid glyphs on the map (can happen when switching fonts or filtering existing font). - Do not allow mouse-over of invalid glyphs. - Fix bug that caused the Help button to remain enabled as it was being modified before it was even created. - Do a better job at finding the correct glyph under the mouse. - Ensure the active cell is cleared correctly. - Invalidate the rect around the previously active cell to ensure it gets redrawn as inactive. - Fix bug from CORE-10518 (initial active cell was not being invalidated on scroll). - Do not try to copy a character to the output if there is no active cell selected. - Populate the advanced portion of the screen with several built-in code pages (the list is hardcoded so that we don't enumerate everything). - Add functionality to filter the character map by a code page (called a character set in this program). - Some fonts list 0x0000 as drawable, even when it isn't, so ignore any valid glyphs that contain it.
32 lines
770 B
C
32 lines
770 B
C
#pragma once
|
|
|
|
#define IDC_STATIC -1
|
|
|
|
#define IDI_ICON 100
|
|
|
|
#define IDD_CHARMAP 200
|
|
#define IDD_ABOUTBOX 201
|
|
#define IDD_STATUSBAR 202
|
|
#define IDD_ADVANCED 203
|
|
|
|
#define IDC_FONTCOMBO 1001
|
|
#define IDC_CMHELP 1002
|
|
#define IDC_FONTMAP 1003
|
|
#define IDC_TEXTBOX 1004
|
|
#define IDC_SELECT 1005
|
|
#define IDC_COPY 1006
|
|
#define IDC_ADVVIEW 1007
|
|
#define IDC_DISPLAY 1008
|
|
#define IDC_LICENSE_EDIT 1009
|
|
#define IDC_COMBO_CHARSET 1000
|
|
#define IDC_COMBO_GROUPBY 1001
|
|
#define IDC_BUTTON_SEARCH 1002
|
|
#define IDC_EDIT_SEARCH 1003
|
|
#define IDC_EDIT_UNICODE 1004
|
|
#define IDC_CHECK_ADVANCED 1007
|
|
|
|
#define IDS_LICENSE 1010
|
|
#define IDS_ABOUT 1011
|
|
#define IDS_TITLE 1012
|
|
#define IDS_UNICODE 1013
|
|
#define IDS_ALL 1014
|