/jEdit/tags/jedit-4-3-pre14/startup/getGraphicsEnvironment.bsh

# · Unknown · 24 lines · 19 code · 5 blank · 0 comment · 0 complexity · 2f71265bda65216feec849e01a67c8b2 MD5 · raw file

  1. import java.awt.*;
  2. /* Pre-fetches the device configurations in a separate thread
  3. so that you don't get a win32 freeze before the first
  4. context menu popup.
  5. @since jEdit 4.3pre6
  6. */
  7. public class EnvGetter extends Thread {
  8. public void run() {
  9. GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
  10. GraphicsDevice[] devices = ge.getScreenDevices();
  11. for (int j = 0; j < devices.length; j++)
  12. {
  13. GraphicsDevice device = devices[j];
  14. GraphicsConfiguration[] gc =
  15. device.getConfigurations();
  16. }
  17. }
  18. }
  19. new EnvGetter().start();