vote up 0 vote down star

Hello!

How could I make non-rectangular windows with soft borders in Java?
Soft borders (also known as soft clipping) are borders without aliasing artifacts.

I searched the web a lot and found several posts about translucent and/or non-rectangular windows.

The topic "soft border" is confusing. It seems that the information I found deals with applying soft borders to component which are inside another Java components.

But, can I, or can I not apply soft borders to custom shaped JWindow which is placed just on the desktop?

I am primely referring to following post:
http://today.java.net/pub/a/today/2008/03/18/translucent-and-shaped-swing-windows.html

When it comes to soft clipping, the article forwards to
http://weblogs.java.net/blog/campbell/archive/2006/07/java_2d_tricker.html
But here, soft clipping on an existing Graphics2D object is described.

flag

63% accept rate

1 Answer

vote up 0 vote down

Have you read this article:

http://www.pushing-pixels.org/?p=272

It mentions soft clipping and the previous articles you mentioned, but also includes some source code to implement a soft clipped window, the direct link is here:

http://www.pushing-pixels.org/wp-content/uploads/2008/03/softclippedwindow.java

That should provide you with a possible solution for what you want to do.

link|flag
Sorry, it is not what I'm looking for. The given example displays a soft-clipped window inside another Swing window. It seems, there is no simple solution. I guess one could achieve my intention by capturing the desktop and involve that data to simulate soft clipping, ... Too complex! ;) – ivan_ivanovich_ivanoff Jun 14 at 8:44

Your Answer

Get an OpenID
or

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