[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.rcp] Re: View Maximize Event

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;