Commit 94c800f3 authored by zhykzhykzhyk's avatar zhykzhykzhyk Committed by mercury233

Make IME window at correct position (#5)

parent 55e1c13d
...@@ -94,7 +94,7 @@ index f629588..d2fefae 100644 ...@@ -94,7 +94,7 @@ index f629588..d2fefae 100644
private: private:
diff --git a/source/Irrlicht/MacOSX/CIrrDeviceMacOSX.mm b/source/Irrlicht/MacOSX/CIrrDeviceMacOSX.mm diff --git a/source/Irrlicht/MacOSX/CIrrDeviceMacOSX.mm b/source/Irrlicht/MacOSX/CIrrDeviceMacOSX.mm
index ad493fc..b4b1a3e 100644 index ad493fc..8692d0c 100644
--- a/source/Irrlicht/MacOSX/CIrrDeviceMacOSX.mm --- a/source/Irrlicht/MacOSX/CIrrDeviceMacOSX.mm
+++ b/source/Irrlicht/MacOSX/CIrrDeviceMacOSX.mm +++ b/source/Irrlicht/MacOSX/CIrrDeviceMacOSX.mm
@@ -496,7 +496,7 @@ CIrrDeviceMacOSX::CIrrDeviceMacOSX(const SIrrlichtCreationParameters& param) @@ -496,7 +496,7 @@ CIrrDeviceMacOSX::CIrrDeviceMacOSX(const SIrrlichtCreationParameters& param)
...@@ -154,7 +154,7 @@ index ad493fc..b4b1a3e 100644 ...@@ -154,7 +154,7 @@ index ad493fc..b4b1a3e 100644
} }
return (result); return (result);
@@ -971,6 +1005,18 @@ bool CIrrDeviceMacOSX::run() @@ -971,6 +1005,33 @@ bool CIrrDeviceMacOSX::run()
os::Timer::tick(); os::Timer::tick();
storeMouseLocation(); storeMouseLocation();
...@@ -167,13 +167,28 @@ index ad493fc..b4b1a3e 100644 ...@@ -167,13 +167,28 @@ index ad493fc..b4b1a3e 100644
+ } + }
+ else + else
+ { + {
+ [Window makeFirstResponder:(AppDelegate*)[NSApp delegate]]; + auto textView = (NSTextView*)[NSApp delegate];
+ auto crect = focusElement->getAbsolutePosition();
+
+ // ensure font height enough to fill the rect, otherwize ime window will overlaps the edit box
+ [textView setFont:[NSFont userFontOfSize:crect.getHeight()]];
+
+ // change origin from top left to bottom right
+ NSRect rect = {
+ crect.UpperLeftCorner.X,
+ [[textView superview] frame].size.height - crect.LowerRightCorner.Y,
+ crect.getWidth(), crect.getHeight(),
+ };
+ [textView setFrame:rect];
+
+ // start to receive input events
+ [Window makeFirstResponder:textView];
+ } + }
+ +
event = [NSApp nextEventMatchingMask:NSAnyEventMask untilDate:[NSDate distantPast] inMode:NSDefaultRunLoopMode dequeue:YES]; event = [NSApp nextEventMatchingMask:NSAnyEventMask untilDate:[NSDate distantPast] inMode:NSDefaultRunLoopMode dequeue:YES];
if (event != nil) if (event != nil)
{ {
@@ -979,6 +1025,13 @@ bool CIrrDeviceMacOSX::run() @@ -979,6 +1040,13 @@ bool CIrrDeviceMacOSX::run()
switch([(NSEvent *)event type]) switch([(NSEvent *)event type])
{ {
case NSKeyDown: case NSKeyDown:
...@@ -187,7 +202,7 @@ index ad493fc..b4b1a3e 100644 ...@@ -187,7 +202,7 @@ index ad493fc..b4b1a3e 100644
postKeyEvent(event,ievent,true); postKeyEvent(event,ievent,true);
break; break;
@@ -1199,22 +1252,22 @@ void CIrrDeviceMacOSX::postKeyEvent(void *event,irr::SEvent &ievent,bool pressed @@ -1199,22 +1267,22 @@ void CIrrDeviceMacOSX::postKeyEvent(void *event,irr::SEvent &ievent,bool pressed
} }
else else
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment