Home | History | Annotate | Download | only in gle2

Lines Matching refs:editor

50  *       <b>inside</b> the editor area, in a right-docked view! This right docked view
53 * view as well), then it will be shown inside the editor area, along with the outline
54 * which should also be there (since if the outline was showing outside the editor
56 * <li> When the editor is maximized, then all views are temporarily hidden. In this
57 * case, the property sheet and outline will show up inside the editor.
58 * When the editor view is un-maximized, the view state will return to what it
78 /** Is the editor maximized? */
107 // What if the editor part is *already* open? How do I deal with that?
132 * Returns true if the main editor window is maximized
134 * @return true if the main editor window is maximized
193 * editor is maximized anymore (see issue
195 * Instead, the layout editor listens for resize events, and upon resize it
220 // If the active reference isn't the editor, then the editor can't be maximized
225 * Syncs the given editor's view state such that the property sheet and or
229 * This is typically done when a layout editor is fronted. For view updates
233 * @param editor the editor to sync
235 private void sync(@Nullable GraphicalEditorPart editor) {
236 if (editor == null) {
240 editor.showStructureViews(true /*outline*/, true /*properties*/, true /*layout*/);
242 editor.showStructureViews(false /*outline*/, false /*properties*/, true /*layout*/);
243 editor.getCanvasControl().getOutlinePage().setShowPropertySheet(!mPropertiesOpen);
245 editor.showStructureViews(true /*outline*/, !mPropertiesOpen /*properties*/,
252 LayoutEditorDelegate editor = LayoutEditorDelegate.fromEditor((IEditorPart) part);
253 if (editor != null) {
254 sync(editor.getGraphicalEditor());
262 IEditorPart editor = activePage.getActiveEditor();
263 sync(editor);