Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-swt-dev] Activating SWT app in taskbar

The following pattern seems to be used in Debug and a few other places in 
Eclipse code:

        Shell shell = ...;
        shell.setMinimized(false);
        shell.forceActive();

Nick




Steve Northover/Ottawa/IBM@IBMCA 
Sent by: platform-swt-dev-admin@xxxxxxxxxxx
02/21/2005 01:20 PM
Please respond to
platform-swt-dev


To
platform-swt-dev@xxxxxxxxxxx
cc

Subject
Re: [platform-swt-dev] Activating SWT app in taskbar







Check the MSDN.  There's no API to do this in SWT. 



Benjamin Ranck <benjaminranck@xxxxxxxxx> 
Sent by: platform-swt-dev-admin@xxxxxxxxxxx 
02/21/2005 12:49 PM 

Please respond to
platform-swt-dev


To
platform-swt-dev@xxxxxxxxxxx 
cc

Subject
[platform-swt-dev] Activating SWT app in taskbar








Hi,
I've been wondering if it's possible to activate the blinking
mechanism that ms windows applications do to show that they are active
or changed in the taskbar. Eclipse does it, specifically when you are
in debug mode and have hit a break point and are outside the
application, it blinks in the taskbar. Is there a way to do this using
SWT components/calls?

Thanks in advance,
Benjamin

-- 
/*  http://www.benjaminranck.com */
_______________________________________________
platform-swt-dev mailing list
platform-swt-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/platform-swt-dev




Back to the top