I know this has been discussed before, but I couldn't find a topic that answered my question in a direct manner. How do developers go about making unique GUI's? For instance are graphics like images of gradients used as backgrounds for certain elements in a programs window? Are buttons given background images so they do not look like standard OS buttons? In other words how do programs like Evernote, Office, or any other mainstream application get their look without looking like the boring GUI's represented in textbooks and online tutorials?
|
closed as not a real question by Andrew Thompson, Jack Maney, Alvin Wong, MadProgrammer, jlordo Jan 11 at 9:07
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Extending the Component class is definitely the way to go. If you want it to be pretty, all you need to do is override the Personally I like using |
|||
|
|
|
This may involve a myriad of ways, and the apps you mention are not necessarily built with java (hardly). Java seems to have added translucent and shaped windows support (see AWTUtilities), techniques like these may be of interest: http://www.pushing-pixels.org/2008/02/27/translucent-and-shaped-windows-in-core-java.html |
|||
|