13.07.2015 Views

Multithreaded Graphics - Custom Training Courses - Coreservlets.com

Multithreaded Graphics - Custom Training Courses - Coreservlets.com

Multithreaded Graphics - Custom Training Courses - Coreservlets.com

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Drawing Directly on Window:Example (Continued)}public void mouseReleased(MouseEvent event) {<strong>Graphics</strong> g = get<strong>Graphics</strong>();g.setColor(Color.BLUE);drawRectangle(g, startX, startY, lastX, lastY);}15}private class RectDrawer extends MouseMotionAdapter {public void mouseDragged(MouseEvent event) {int x = event.getX();int y = event.getY();<strong>Graphics</strong> g = get<strong>Graphics</strong>();g.setXORMode(Color.LIGHT_GRAY);drawRectangle(g, startX, startY, lastX, lastY);drawRectangle(g, startX, startY, x, y);lastX = x;lastY = y;}}Drawing Directly on Window:ResultBy retrieving the <strong>Graphics</strong> object, methods other than paintcan draw directly on the window16

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!