View Maximize Event [message #483636] |
Wed, 02 September 2009 12:22  |
Eclipse User |
|
|
|
Originally posted by: Yo.gi.com
Is it possible to catch the event when a view is maximized?
I am trying to trigger another event when this occurs.
|
|
|
|
|
|
Re: View Maximize Event [message #485808 is a reply to message #483733] |
Tue, 15 September 2009 07:13  |
Eclipse User |
|
|
|
the only way is two capture those events by implementing own presentation
layout extending StackPresentation. I implemented own presentation layer
and listened to to these event by applying a dependency.
/**
* Represents the main interface between a StackPresentation and the
workbench.
*
* Not intended to be implemented by clients.
*
* @since 3.0
*/
public interface IStackPresentationSite {
public static int STATE_MINIMIZED = 0;
public static int STATE_MAXIMIZED = 1;
public static int STATE_RESTORED = 2;
|
|
|
Powered by
FUDForum. Page generated in 0.03957 seconds