diff options
| author | inmarket <andrewh@inmarket.com.au> | 2015-08-17 00:18:54 +1000 | 
|---|---|---|
| committer | inmarket <andrewh@inmarket.com.au> | 2015-08-17 00:18:54 +1000 | 
| commit | 3fea02324831eba1773f45b1dc6d0bf2a0c8326d (patch) | |
| tree | 21b3741388871035e9dcef8e024bbeb6c08a7c7a /src/gwin/gwin_keyboard.c | |
| parent | 058a873e9e425207db8b99be083e87cf956b9827 (diff) | |
| download | uGFX-3fea02324831eba1773f45b1dc6d0bf2a0c8326d.tar.gz uGFX-3fea02324831eba1773f45b1dc6d0bf2a0c8326d.tar.bz2 uGFX-3fea02324831eba1773f45b1dc6d0bf2a0c8326d.zip | |
Add some keyboard widget support
Diffstat (limited to 'src/gwin/gwin_keyboard.c')
| -rw-r--r-- | src/gwin/gwin_keyboard.c | 21 | 
1 files changed, 20 insertions, 1 deletions
| diff --git a/src/gwin/gwin_keyboard.c b/src/gwin/gwin_keyboard.c index c27580de..70771d9b 100644 --- a/src/gwin/gwin_keyboard.c +++ b/src/gwin/gwin_keyboard.c @@ -30,6 +30,8 @@ typedef uint32_t	utf32;  // A character code - note this is not UTF-32 but a representation of the UTF-8 code stream for a single character.  typedef uint32_t	ucode; +static GSourceHandle	AllKeyboards; +  // Get the length of a UTF-8 string  static int UTF8StrLen(const utf8 *s) {  	int				len; @@ -164,6 +166,11 @@ static void SendKeyboardEventToListener(GSourceListener	*psl, GKeyboardObject *g  static void SendKeyboardEvent(GKeyboardObject *gk) {  	GSourceListener	*psl; +	// Send to the "All Keyboards" source listeners +	psl = 0; +	while ((psl = geventGetSourceListener(AllKeyboards, psl))) +		SendKeyboardEventToListener(psl, gk); +  	// Send to the keyboard specific source listeners  	psl = 0;  	while ((psl = geventGetSourceListener((GSourceHandle)gk, psl))) @@ -313,7 +320,7 @@ static const gwidgetVMT keyboardVMT = {  			KeyMouseMove,			// Process mouse move events  		},  	#endif -	#if GINPUT_NEED_KEYBOARD +	#if GINPUT_NEED_KEYBOARD || GWIN_NEED_KEYBOARD  		{  			0						// Process keyboard events  		}, @@ -344,6 +351,10 @@ GHandle gwinGKeyboardCreate(GDisplay *g, GKeyboardObject *gk, const GWidgetInit  	gk->keytable = &GWIN_KEYBOARD_DEFAULT_LAYOUT;  	gk->keyset = gk->keytable->ksets[0];  	gk->lastkeyrow = gk->lastkeycol = gk->keyrow = gk->keycol = GKEY_BAD_ROWCOL; + +	if (!AllKeyboards) +		AllKeyboards = ginputGetKeyboard(GKEYBOARD_ALL_INSTANCES); +  	gwinSetVisible((GHandle)gk, pInit->g.show);  	return (GHandle)gk;  } @@ -473,4 +484,12 @@ void gwinKeyboardDraw_Normal(GWidgetObject *gw, void *param) {  	#undef gk  } +#if !(GFX_USE_GINPUT && GINPUT_NEED_KEYBOARD) +	GSourceHandle ginputGetKeyboard(unsigned instance) { +		if (instance == GKEYBOARD_ALL_INSTANCES) +			return (GSourceHandle)&AllKeyboards; +		return 0; +	} +#endif +  #endif /* GFX_USE_GWIN && GWIN_NEED_KEYBOARD */ | 
