Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_Window.h
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
| * \return The recommended DPI for this window. | * \return The recommended DPI for this window. | ||||
| */ | */ | ||||
| virtual inline GHOST_TUns16 getDPIHint() | virtual inline GHOST_TUns16 getDPIHint() | ||||
| { | { | ||||
| return 96; | return 96; | ||||
| } | } | ||||
| #ifdef WITH_INPUT_IME | #ifdef WITH_INPUT_IME | ||||
| virtual void beginIME( | virtual void beginIME() | ||||
| GHOST_TInt32 x, GHOST_TInt32 y, GHOST_TInt32 w, GHOST_TInt32 h, int completed) | { | ||||
| /* do nothing temporarily if not in windows */ | |||||
| } | |||||
| virtual void positionIME(GHOST_TInt32 x, GHOST_TInt32 y, GHOST_TInt32 h) | |||||
| { | |||||
| /* do nothing temporarily if not in windows */ | |||||
| } | |||||
| virtual void cancelIME() | |||||
| { | { | ||||
| /* do nothing temporarily if not in windows */ | /* do nothing temporarily if not in windows */ | ||||
| } | } | ||||
| virtual void endIME() | virtual void endIME() | ||||
| { | { | ||||
| /* do nothing temporarily if not in windows */ | /* do nothing temporarily if not in windows */ | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||