Supporting Control + Command + Space hotkey in java to bring up emoji input?

2017-01-25 Thread AJ Gregory
Is it possible using a swing app to support the standard hotkey on mac (Control + Command + Space) to bring up the emoji input window in a text field?

Re: Odd behavior on Max OSX 10.10 with retina display and external monitor.

2015-06-26 Thread AJ Gregory
That was a typo. It was tested with latest 1.8.0_45. -Aj On Friday, June 26, 2015, Hendrik Schreiber wrote: > > > > On Jun 27, 2015, at 00:36, AJ Gregory > wrote: > > > > Using latest Java 1.8.0_25 or Java 1.7.0_80 I'm seeing some odd behavior > on > >

Odd behavior on Max OSX 10.10 with retina display and external monitor.

2015-06-26 Thread AJ Gregory
Using latest Java 1.8.0_25 or Java 1.7.0_80 I'm seeing some odd behavior on Max OSX 10.10 when using a retina laptop and an external monitor. Using a simple test class that creates a JFrame with a JDialog like this: public class TestMacWindows { public static void main(String[] args) {

Odd behavior with transparent window getting shadow after toggling visibility

2014-11-25 Thread AJ Gregory
If you run the class below on a RETINA MacBook Pro (OSX 10.10) the first time you see the JWindow it's a white circle with NO shadow, but then later when it calls setVisible(false) and setVisible(true) the circle has a shadow when it's made visible again which isn't right... I can't reproduce on n

Toolkit.sync()

2014-06-25 Thread AJ Gregory
Hello I'm looking for a way to make sure window updates have made it on screen. Does this do anything in the Mac implementation? Toolkit.getDefaultToolkit().sync(); If not is there some way (in java or jni code) to make sure any window paints have happened on screen and aren't still queued?