blob: 6cae6c53e48bbc3e631d195a1e87974f6d906b46 [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
===How can I get a list of open editor windows?===
====To obtain a reference to the currently selected editor====
<pre>
Node[] arr = TopComponent.getRegistry().getCurrentNodes();
for (int i = 0; i < arr.length; i++) {
EditorCookie ec = (EditorCookie) arr[i].getCookie(EditorCookie.class);
if (ec != null) {
JEditorPane[] panes = ec.getOpenedPanes();
if (panes != null) {
// USE panes
}
}
}
</pre>
Note that EditorCookie.getOpenPanes() is deprecated (https://netbeans.org/bugzilla/show_bug.cgi?id=223383). Use <code>org.openide.text.NbDocument.findRecentEditorPane(EditorCookie)</code> instead.
====To obtain references to all opened editors====
<pre>
Set<TopComponent> comps = TopComponent.getRegistry().getOpened();
for (TopComponent tc: comps) {
Node[] arr = tc.getActivatedNodes();
for (int j = 0; j < arr.length; j++) {
EditorCookie ec = (EditorCookie) arr[j].getCookie(EditorCookie.class);
if (ec != null) {
JEditorPane[] panes = ec.getOpenedPanes();
if (panes != null) {
// USE panes
}
}
}
}
</pre>
====Variants to get the Editor TopComponents====
=====Variant A)=====
<pre>
private Collection<TopComponent> getCurrentOpenedEditors() {
final ArrayList<TopComponent> result = new ArrayList<TopComponent>();
final WindowManager wm = WindowManager.getDefault();
for (Mode mode : wm.getModes()) {
if (wm.isEditorMode(mode)) {
//result.addAll(Arrays.asList(mode.getTopComponents())); OR even faster
result.addAll(Arrays.asList(wm.getOpenedTopComponents(mode)));
}
}
return result;
}
</pre>
=====Variant B)=====
<pre>
private TopComponent getCurrentEditor() {
Set<? extends Mode> modes = WindowManager.getDefault().getModes();
for (Mode mode : modes) {
if ("editor".equals(mode.getName())) {
return mode.getSelectedTopComponent();
}
}
return null;
}
//or
private TopComponent getCurrentEditor() {
Mode editor = WindowManager.getDefault().findMode("editor");
return editor.getSelectedTopComponent();
}
</pre>
----
'''Reference-''' [http://nbguru.wordpress.com/2008/07/25/tat-editor-windows-reactivated-8/ Editor Windows Reactivated]
----
===Apache Migration Information===
The content in this page was kindly donated by Oracle Corp. to the
Apache Software Foundation.
This page was exported from http://wiki.netbeans.org/DevFaqGetOpenEditorWindows ,
that was last modified by NetBeans user Markiewb
on 2016-10-26T20:35:35Z.