Java Feel Icons

Hi,
I am building a GUI for my project and would like to add some java feel icons to the GUI.
I have once download some from java.sun.com, but forget the URL. Could anyone point me to the URL or some resources?
Thanks

http://developer.java.sun.com/developer/techDocs/hi/repository/

Similar Messages

  • Good looking �Look and feel� icons ?

    Good looking �Look and feel� icons ?
    Where could be found icons , professional looking, like in �Java TM Look and Feel Graphics Repository� site, for use in JtoolBar For various functions in java application program ?

    (I truely hope I won't start a flame war, but:) I absolutely can't agree with the statement "professional looking, like in �Java TM Look and Feel Graphics Repository� site". If there's one association that comes to my mind when I hear the words "ugly" and "swing" then it's exactly those icons.
    Nevertheless here's something that might help you better:
    I think (but I'm not too sure) that you can use all icons that ship with eclipse (They should be under the CPL and thus you should be allowed to use them). And I beliebe it might be hard to find somebody who perfers the aforementioned icons ;-)
    Another source is http://www.memoire.com/guillaume-desnoix/icones/. Note that the icons have with different licences.

  • How can I change the Jframe Java help Icon

    How can I change then Jframe Java help Icon?.
    I am using then HelpSet class and HelpBroker.
    I want to change the java help icon
    Any Idea? thanks. ...

    It can be done, but it's ugly...
    Add in a listener to your topmost JFrame to sense when the focus is lost, since this happens when a help window comes up. When the focus leaves the main window, check all the windows that are up to see if one is a help window. If so, this will give you a reference to the help window and you can drill down to change what you want.
    Here's an example that changes the icon and removes the borders from the javahelp buttons.
    WindowListener wndCloser = new WindowAdapter() {
              //A necessarily roundabout method to affect
              //look and feel aspects of the javahelp viewer.
              //(there is no way to get at these components directly.)
              //When the main frame loses focus, it may be because
              //the help viewer was brought up. Look through all
              //the current frames to see if one is a help viewer.
              //If it is, change the look of the help viewer
              //to what we want.
              Frame m_helpFrame = null;
              public void windowDeactivated(WindowEvent e) {
              if (m_helpFrame != null)
                   return;
              Frame[] frames = getFrames();
              for (int k = 0; k < frames.length; k++) {
                   if (!(frames[k] instanceof JFrame))
                   continue;
                   JFrame jf = (JFrame)frames[k];
                   if (jf.getContentPane().getComponentCount()==0)
                   continue;
                   Component c = jf.getContentPane().
                   getComponent(0);
                   if (c == null || !(c instanceof JHelp))
                   continue;
                   m_helpFrame = jf;
                   //now that we know the Frame, we can change the title icon
                   final Image image2 = <your icon here>
                   m_helpFrame.setIconImage(image2);
                   JHelp jh = (JHelp)c;
                   for (int s=0; s<jh.getComponentCount(); s++) {
                   c = jh.getComponent(s);
                   if (c == null || !(c instanceof JToolBar))
                        continue;
                   JToolBar jtb = (JToolBar)c;
                   //now that we've accessed the toolbar, we can
                   //modify the look of the buttons.
                   for(int i=0; i<jtb.getComponentCount(); i++) {
                        Component comp = jtb.getComponentAtIndex(i);
                        if(comp instanceof JButton) {
                        JButton button = (JButton)comp;
                        button.setBorder(null);

  • Replacing Java cup icon - ATL tab

    Hi,
    I want to replace the Java cup icon with one of my icons.
    I can do that OK using the JFrame.setIconImage() method. (By the way, I think it should have been possible to do so using the Look and Feel only rather than explicitely setting the icon on each frame...)
    My problem is that on Windows, when switching from one application to another using the ALT - Tab keys, the icon that is displayed is my icon uglyly enlarged...
    Is there a way to setup TWO images to be used :
    - one (16*16) for the small icon on top of the window and
    - another one (32*32) that would be used for the application switching screen ???
    How come the coffee cup is actually nice looking when displayed on the application switching screen ?

    Unfortunatly you can't do that.
    Try to use a 32*32 icon only. It will be streched automatically to 16*16 in the frame title bar.
    Denis

  • Java Console (icon in taskbar)

    I clicked too quickly when looking at the java console options, selected the wrong item and hide the icon forever. Could someone please tell me where I can go to make it visible again?
    (I'm talking about the Java logo/icon that appears in your taskbar when Java applets are running in your browser.)
    felling quite foolish,
    Andrew

    In Internet Explorer, from the menubar, do
    Tools->Internet Options...
    Click on advanced
    scroll down to java options

  • Can't get the java tray icon or the console to appear

    I can't get the java tray icon or the console to appear on any system that I've tested my applications in.
    I'm using Windows XP mostly and I've also tested on Windows 2000 and 2003. I'm using jre 1.6. I've already set the icon to appear and the console to show on the advanced tab on the java icon in the control panel. I've even tried another application from another author thinking it might be something in the code of my own application.
    I need the console available on the client systems for troubleshooting but I can't get it to open and I can't open it manually from the tray icon because the icon is not there.
    I seem to remember seeing the tray icon and the console on other systems/applications in the past so what do you think is the problem?

    AFAIK, the Sun/Oracle-provided "Java Console" only works (appears) with applets and Java Web Start applications. It shows some information that is unique to those environments, and provides a place for System.out data to be written.
    For a Java application, if the application is started with the java command (as opposed to the javaw command) System.out data is written to the command/cmd window that is created.
    If you need more that that for an application, then [this article|http://www.developer.com/java/other/article.php/630821/Creating-a-Custom-Java-Console.htm] may be of interest. It's old, but still appears to be valid. Note that current versions of Java contain a class java.io.Console. This class should be able to be used as a replacement for the custom Console class that is used in the article.

  • Where can I find Java look and feel icons besides those provided in sun?

    thanx

    You can draw your own or download from site like the one shown below:
    http://www.graphxkingdom.com/shtml/doc1.shtml
    ;o)
    V.V.

  • Java buttons/icons

    Can some please help me. I saw a link on this site where you can download free buttons/icons with the java look & feel. Now I want id and I just cannot fine it. Does anyone hove the link.
    Peter Loo

    Thanks, Thof. This is exactly what I want. Learnt my lessons. In the future I will bookmark immediately anything that I want.
    Peter Loo

  • Downloading Look and Feel icons

    I've downloaded the look and feel repository, which unzips to a jar file, that seems to do nothing when I run it. When training in Java we downloaded folders of gif files with button graphics on them, where can I find these?
    Thanks Derek

    Go ahead and unzip the jar file. A jar file is the same as a zip file, so you can unzip it. It should have all the icons in it.

  • Java option icon not displaying AND Java not working, even after deleting and re-installing Java

    Hi, I have uninstalled and re-installed Java. When I look at Add-ons, it shows Java Platform SE7 U17 10.17.2.2 and Java deployment Toolkit 7.0.17… 10.17.2.2 enabled. But it is not working – and I do not see the Firefox plugin to allow occasional use of Java.
    One useful thread which discusses several difficulties in detail is
    https://support.mozilla.org/en-US/questions/944956?esab=a&as=aaq
    I tried to follow scrumpyjoe’s advice in this thread:
    “This fixed it for me (32 bit windows) after installing Version 7 Update 10, but not seeing the plugin:
    1) start regedit
    2) navigate to HKEY_LOCAL_MACHINE\SOFTWARE\MozillaPlugins
    3) right click, add New Key, name: @java.com/JavaPlugin,version=10.xx.xx
    4) click on it, then right click and add new string value, name: path
    5) right click, Modify, change value data to: C:\Program Files\Java\jre7\bin\plugin2\npjp2.dll [check if this is the right dll for your setup]
    6) exit regedit
    7) start FF”
    - but (unless I have made a mistake) it has not resolved my problem.
    What can I try next, please ?
    Background:
    Asus NX90jq
    Intel core I7
    700GB free disk space
    16384Mbytes memory
    O/S: Windows 7 Ultimate, 64-bit
    UPDATE 2apr13
    I have now unistalled and re-installed Firefox 20.0. restored preferences etc. using MozBackup, and Java Platform and Java Toolkit10.17.2.2. both show as working Add-ons - BUT STILL NO JAVA AND STILL NO RED ICON IN TOOLBAR. What is going on, please ?

    I don't understand any of these replies. How do I get Java to run for Pogo.com? I had no problems a week ago. I do not have the red icon. I am not a programer so keep it simple. I am a 59 year old speech therapist.
    [email protected] HELLLLLLP

  • How to change the java cup icon for all the JFrames?

    Hi,
    I would like to know if I can change the Java cup defult icon that appears in the upper left corner of the JFrames in one time, instead of setting the JFrame's icon in every created JFrame.
    Regards,
    Gabriel

    Then don't set the parent to null. If you don't want a parent, just set it to
    JOptionPane.showMessage(new IconFrame(), ...
    [\code]
    where IconFrame extends JFrame and sets the icon in it's constructor.  The optionpane will then use the icon from it's parent frame.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Java basic icons

    Hi,
    Just wondered how to utilise the icons built-in in java? such as open files or save files.
    thankx heaps

    hello,
    dont know if i understood your question, but hereare the jsdk icons:
    http://developer.java.sun.com/developer/techDocs/hi/repository/
    regards,
    Tim

  • Lost Java DeskTop Icon

    hello
    I am new to Java programming. I have downloaded and installed free Java version JDK 6 SE on my computer. After the download and install was complete I received a message saying that the download was successful. Then clicking on the newly created desktop icon which then prompted me to reinstall once again. But I managed to get this issue resolved.
    But I no longer have an icon situatated on desktop for me double click on to launch this program. I am using windows 7 64 bit computer. Should there be a desktop icon set up on the computer or perhaps not?
    What can I do to get this program to open up for me in the hopes of setting up a short cut to desktop?

    What do you mean by "launch this program"? The JDK is not a program (at least not in the usual sense). Think of it as a library that other programs (including those you write) can use.

  • Using the java (tm) Icon...

    If you've made an application, can you use the JAVA icon (as in the left top corner of this page) in the aboutdialog of your application?
    Is it legal?
    thx,
    sjg

    Short answer, no. See http://www.sun.com/smrc/logos/brand

  • Look & Feel Icons   **NOT SUN REPOSITORY**

    Hi guys,
    I'm looking to enhance my application with some new icons.
    I know this one:
    http://java.sun.com/developer/techDocs/hi/repository/
    but it's very limited and (to be real) simple.
    I'm looking for somthing more like this:
    http://developer.gnome.org/projects/gup/hig/1.0/icons.html#icon_kinds
    Does any one have any idea where can ???
    thanks
    Ppr

    Hello,
    As far as I remember, the 6i was fundamentally a client/server version (even though it could run in web mode), so that Java is not a valid element of that old stack.
    The only way you can go is to use some OCX widgets.
    Francois

Maybe you are looking for