1516171819202122232425
private Cursor cursor; public DrawingBoard() { cursor = new Cursor(this); this.setPreferredSize(new Dimension(1000, 1000)); this.addMouseMotionListener(this); // Listen to mouse moves, drags. this.addMouseListener(this);