Draw pointable / pickable lines, etc, how to?
- From: "Kevin" <kaidizhao@xxxxxxxxxxxx>
- Date: 26 Feb 2006 14:45:49 -0800
Hello,
I am wondering what is the best way to this common GUI task:
Draw some rectangles, lines, pies, etc (say, in a JPanel). Make sure
these things are "pointable" and "pickable": when mouse is moved over
it, we can press mouse key to "pick up" it and drag it around, etc.
Previously in some early school homework projects, I just stored the
locations for each of them in an array. For example, for a line, I
stored its starting and ending (x, y) points. For a rectangle, I stored
its 4 corner points (x,y). In listener for mouse move (or click, drag)
in JPanel, I got the current mouse's position, and checked each item in
the above array to see if the mouse was in any of them. This worked ok
with not too many lines or rectangles. And it did not use too much
memory also since only several integers needed to be saved for each
line or rectangle, etc.
Any idea of better method? (in terms of efficiency, for example, we may
have 10000 rectangels and 50000 lines. And of course we need it for
real time when user moves the mouse around).
Thanks. :-)
.
- Follow-Ups:
- Re: Draw pointable / pickable lines, etc, how to?
- From: Richard Wheeldon
- Re: Draw pointable / pickable lines, etc, how to?
- From: Kevin
- Re: Draw pointable / pickable lines, etc, how to?
- Prev by Date: Re: Writing to a file and a TextArea
- Next by Date: Re: Draw pointable / pickable lines, etc, how to?
- Previous by thread: Mac OS X LookAndFeel on Windows
- Next by thread: Re: Draw pointable / pickable lines, etc, how to?
- Index(es):
Relevant Pages
|
|