Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » U++ Library support » U++ Libraries and TheIDE: i18n, Unicode and Internationalization » [Proposal] IsDoubleWidth() implementation for double width unicode chars.
[Proposal] IsDoubleWidth() implementation for double width unicode chars. [message #52751] Mon, 18 November 2019 12:40
Oblivion is currently offline  Oblivion
Messages: 1092
Registered: August 2007
Senior Contributor
Hello,

I propose adding the below code to charsets functions.
It simplifies Eastern-Asian/CJK character handling, and seems to cover more than IsCJKIdeograph().
Code is a rip-off from Markus Kuhns wcwidth() implementation. It is widely used, and doesn't seem to have a problematic license.
Other parts of the original code can be added as separate functions too, but while rendering double width characters, this function can be safely used.



bool IsDoubleWidth(int c)
{
	// This function is taken from Markus Kuhn's wcwidth implementation.
	// For license and implementation details, see:
	// https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c
	
	return c >= 0x1100
			&& (c <= 0x115F								// Hangul Jamo init. consonants
				|| c == 0x2329
				|| c == 0x232A
				|| (c >= 0x2E80 && c <= 0xA4CF && c != 0x303F)                  // CJK ... Yi
				|| (c >= 0xAC00 && c <= 0xD7A3)					// Hangul Syllables
				|| (c >= 0xF900 && c <= 0xFAFF)					// CJK Compatibility Ideographs
				|| (c >= 0xFE10 && c <= 0xFE19)					// Vertical forms
				|| (c >= 0xFE30 && c <= 0xFE6F)					// CJK Compatibility Forms
				|| (c >= 0xFF00 && c <= 0xFF60)					// Fullwidth Forms
				|| (c >= 0xFFE0 && c <= 0xFFE6)
				|| (c >= 0x20000 && c <= 0x2FFFD)
				|| (c >= 0x30000 && c <= 0x3FFFD)
				);
}


Best regards,
Oblivion


[Updated on: Mon, 18 November 2019 13:06]

Report message to a moderator

Previous Topic: Updated ES-ES
Next Topic: theide comments Spellchecking in Russian under linux
Goto Forum:
  


Current Time: Thu Apr 25 23:50:29 CEST 2024

Total time taken to generate the page: 0.04336 seconds