I would like to create an Eclipse view with support for toolbars, menubars, and status line provided for in JFace's ApplicationWindow. What should I do in createPartControl() of the view class to enable this?
John Steele Messages: 33 Registered: June 2010 Location: Seattle, WA
Member
addMenuBar() will add the top-level menu.
addToolBar() will add the toolbar underneath the main menu.
addStatusLine() will create the status area near the bottom of the window.