[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.platform.rcp] Re: View Maximize Event
|
- From: vikashait@xxxxxxxxx (vikash kumar)
- Date: Tue, 15 Sep 2009 07:13:03 +0000 (UTC)
- Newsgroups: eclipse.platform.rcp
- Organization: Eclipse
- User-agent: NewsPortal/0.36 (http://florian-amrhein.de/newsportal)
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;