vote up 0 vote down star

In my java application, I need to create a comment box for the users to add comments. Moreover, I need to provide the user with the provision for resizing and dragging the comment box. For this, I need to show a boundary around the comment box as in the case of comment box in Microsoft Excel which I have shown below:

alt text

I dont need the circles shown on the boundary for resizing because I will be using a triangle kind of a thing on the bottom-right of the box. But I need the dotted area.

How do I create it for my application in java? Any good thoughts?


Currently I am in an analysis phase, just to find good options for this. What we have thought till now is to draw few dotted lines around the box to give the impression.

flag

67% accept rate

2 Answers

vote up 0 vote down

This can be a little bit tricky. When you need semitransparent border it will be pain. If not, it is easy. Just use popup with appropriate components and mouse listener to listen on mouse events occurred over active borders.

link|flag
vote up 0 vote down

I would perhaps look at using JXLayer for this. It looks like what you're trying to do here is paint some context outside the of component's bounds. This is the kind of thing JXLayer excels at.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.