Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / February 2007

Tip: Looking for answers? Try searching our database.

Multiple image sizes in frame icon (window icon) in Swing

Thread view: 
Dan Polansky - 11 Feb 2007 10:38 GMT
Hello, in Swing, how can I achieve that a frame icon has several
images associated with it, in different sizes like 16x16 and 32x32
pixels? (In Windows, this is useful, as the icon in the window of the
frame has usually size 16x16 while the icon as shown when you press Alt
+Tab to switch between several application has 32x32 pixels.)

Thank you, Dan
Larry Barowski - 11 Feb 2007 13:54 GMT
> Hello, in Swing, how can I achieve that a frame icon has several
> images associated with it, in different sizes like 16x16 and 32x32
> pixels? (In Windows, this is useful, as the icon in the window of the
> frame has usually size 16x16 while the icon as shown when you press Alt
> +Tab to switch between several application has 32x32 pixels.)

In Java 1.6 you can use Window.setIconImages(). For older
versions of Java you'd have to do it using JNI for each
platform.
Dan Polansky - 11 Feb 2007 14:24 GMT
On Feb 11, 2:54 pm, "Larry Barowski" <MElarrybar-AT-
eng_DOT_auburnANOTHERDOTeduEND> wrote:

> > Hello, in Swing, how can I achieve that a frame icon has several
> > images associated with it, in different sizes like 16x16 and 32x32
[quoted text clipped - 5 lines]
> versions of Java you'd have to do it using JNI for each
> platform.

Larry, that is a good news. Do you know or have a link on how to do it
using JNI, at least for Windows? Dan
Larry Barowski - 12 Feb 2007 23:15 GMT
> Larry, that is a good news. Do you know or have a link on how to do it
> using JNI, at least for Windows? Dan

Following is what I use to load small and large icons from a
.ico file. I stripped out a caching mechanism, so it may not
compile as-is. Of course, if you've never used jni you'll have
to figure that out as well.

JNIEXPORT void JNICALL Java_nativ_W32Native_setIconX(JNIEnv *env,
     jclass obj, jobject wnd, jstring icon_path) {
  JAWT awt;
  awt.version = JAWT_VERSION_1_3;
  if(JAWT_GetAWT(env, &awt) == JNI_FALSE)
     return;

  JAWT_DrawingSurface *ds = awt.GetDrawingSurface(env, wnd);
  if(ds == NULL)
     return;

  jint lock = ds->Lock(ds);
  if((lock & JAWT_LOCK_ERROR) != 0) {
     awt.FreeDrawingSurface(ds);
     return; }

  JAWT_DrawingSurfaceInfo *dsi = ds->GetDrawingSurfaceInfo(ds);
  if(dsi != NULL) {
     JAWT_Win32DrawingSurfaceInfo *dsi_win =
         (JAWT_Win32DrawingSurfaceInfo*)dsi->platformInfo;
     HWND win_handle = dsi_win->hwnd;
     if(win_handle != NULL) {
        LPTSTR icon_path_str = (LPTSTR)GetString(env, icon_path);
        HICON icon, icon_sm;
        bool found = false;
        icon = (HICON)LoadImage(NULL, icon_path_str, IMAGE_ICON,
            GetSystemMetrics(SM_CXICON), GetSystemMetrics(SM_CYICON),
            LR_LOADFROMFILE);
        icon_sm = (HICON)LoadImage(NULL, icon_path_str, IMAGE_ICON,
            GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON),
            LR_LOADFROMFILE);
        if(icon != NULL)
           SendMessage(win_handle, WM_SETICON, ICON_BIG, (long)icon);
        if(icon_sm != NULL)
           SendMessage(win_handle, WM_SETICON, ICON_SMALL, (long)icon_sm);

        ReleaseString(env, icon_path, icon_path_str);
     }
     ds->FreeDrawingSurfaceInfo(dsi);
  }

  ds->Unlock(ds);
  awt.FreeDrawingSurface(ds);
}


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.