/jEdit/tags/jedit-4-3-pre14/startup/getGraphicsEnvironment.bsh
# · Unknown · 24 lines · 19 code · 5 blank · 0 comment · 0 complexity · 2f71265bda65216feec849e01a67c8b2 MD5 · raw file
- import java.awt.*;
- /* Pre-fetches the device configurations in a separate thread
- so that you don't get a win32 freeze before the first
- context menu popup.
-
- @since jEdit 4.3pre6
- */
-
- public class EnvGetter extends Thread {
- public void run() {
- GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
- GraphicsDevice[] devices = ge.getScreenDevices();
- for (int j = 0; j < devices.length; j++)
- {
- GraphicsDevice device = devices[j];
- GraphicsConfiguration[] gc =
- device.getConfigurations();
- }
- }
- }
- new EnvGetter().start();