mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-04-02 01:35:26 +02:00
40 lines
1.1 KiB
Java
40 lines
1.1 KiB
Java
package com.voxelmodpack.hdskins.upload;
|
|
|
|
import javax.swing.JFrame;
|
|
|
|
import org.apache.logging.log4j.LogManager;
|
|
import org.apache.logging.log4j.Logger;
|
|
|
|
import com.voxelmodpack.hdskins.gui.GLWindow;
|
|
|
|
final class InternalDialog {
|
|
|
|
private static final Logger LOGGER = LogManager.getLogger();
|
|
|
|
static JFrame hiddenFrame;
|
|
|
|
public static JFrame getAWTContext() {
|
|
JFrame context = GLWindow.current().getFrame();
|
|
|
|
if (context != null) {
|
|
return context;
|
|
}
|
|
|
|
if (hiddenFrame == null) {
|
|
hiddenFrame = new JFrame("InternalDialogue");
|
|
hiddenFrame.setVisible(false);
|
|
hiddenFrame.requestFocusInWindow();
|
|
hiddenFrame.requestFocus();
|
|
|
|
try {
|
|
if (hiddenFrame.isAlwaysOnTopSupported()) {
|
|
hiddenFrame.setAlwaysOnTop(true);
|
|
}
|
|
} catch (SecurityException e) {
|
|
LOGGER.fatal("Could not set window on top state. This is probably Forge's fault.", e);
|
|
}
|
|
}
|
|
|
|
return hiddenFrame;
|
|
}
|
|
}
|