Home
last modified time | relevance | path

Searched refs:tree (Results 26 – 50 of 249) sorted by relevance

12345678910

/aoo41x/main/accessibility/workben/org/openoffice/accessibility/awb/
H A DAccessibilityWorkBench.java48 import javax.swing.tree.TreeNode;
49 import javax.swing.tree.TreePath;
63 import org.openoffice.accessibility.awb.tree.AccessibilityTree;
64 import org.openoffice.accessibility.awb.tree.AccessibilityModel;
65 import org.openoffice.accessibility.awb.tree.DynamicAccessibilityModel;
168 javax.swing.tree.TreeModel treeModel = new DynamicAccessibilityModel(); in Layout()
559 javax.swing.tree.TreeNode aSelectedNode = in actionPerformed()
560 (javax.swing.tree.TreeNode)aSelectionPath.getLastPathComponent(); in actionPerformed()
584 javax.swing.tree.TreePath aPath = aEvent.getPath(); in valueChanged()
/aoo41x/main/qadevOOo/tests/java/ifc/awt/tree/
H A D_XTreeControl.java24 package ifc.awt.tree;
26 import com.sun.star.awt.tree.ExpandVetoException;
27 import com.sun.star.awt.tree.TreeExpansionEvent;
28 import com.sun.star.awt.tree.XMutableTreeNode;
29 import com.sun.star.awt.tree.XTreeControl;
30 import com.sun.star.awt.tree.XTreeEditListener;
31 import com.sun.star.awt.tree.XTreeExpansionListener;
32 import com.sun.star.awt.tree.XTreeNode;
H A D_XMutableTreeDataModel.java24 package ifc.awt.tree;
26 import com.sun.star.awt.tree.XMutableTreeDataModel;
27 import com.sun.star.awt.tree.XMutableTreeNode;
/aoo41x/main/offapi/com/sun/star/xml/wrapper/
H A DXXMLDocumentWrapper.idl42 * When converting SAX events into a DOM tree, this interface is
105 * Clears all useless element in a branch of the DOM tree along the
106 * tree order.
122 * Collapses a tree path
127 * @param node the start point of the path from where the tree
133 * Converts a part of the DOM tree into SAX events.
150 * Converts the whole DOM tree into a SAX event stream.
/aoo41x/main/offapi/com/sun/star/configuration/
H A DConfigurationRegistry.idl40 /* provides access to a configuration tree as a registry.
48 configuration tree, as provided by an
53 <p> There are some restrictions when accessing a configuration tree using a registry.
54 Most of them are implications of the fact that a configuration tree is very static in
72 /** controls the binding of the object to a configuration sub tree.
74 is used to open a special subtree within the configuration tree.
/aoo41x/main/accessibility/workben/org/openoffice/accessibility/awb/tree/
H A DAccessibilityModel.java24 package org.openoffice.accessibility.awb.tree;
27 import javax.swing.tree.TreeNode;
28 import javax.swing.tree.MutableTreeNode;
29 import javax.swing.tree.DefaultMutableTreeNode;
44 public abstract class AccessibilityModel extends javax.swing.tree.DefaultTreeModel {
H A DAccessibilityTree.java24 package org.openoffice.accessibility.awb.tree;
28 import javax.swing.tree.DefaultTreeModel;
29 import javax.swing.tree.DefaultMutableTreeNode;
41 public AccessibilityTree(javax.swing.tree.TreeModel model) { in AccessibilityTree()
/aoo41x/main/toolkit/test/accessibility/
H A DAccessibleTreeCellRenderer.java22 import javax.swing.tree.DefaultTreeCellRenderer;
23 import javax.swing.tree.TreePath;
49 JTree tree, in getTreeCellRendererComponent() argument
58 tree, value, sel, in getTreeCellRendererComponent()
/aoo41x/main/javainstaller2/src/JavaSetup/org/openoffice/setup/PanelHelper/
H A DTreeNodeRenderer.java32 import javax.swing.tree.DefaultMutableTreeNode;
33 import javax.swing.tree.DefaultTreeCellRenderer;
52 JTree tree, Object value, boolean sel, boolean expanded, in getTreeCellRendererComponent() argument
55 super.getTreeCellRendererComponent(tree, value, sel, expanded, leaf, row, hasFocus); in getTreeCellRendererComponent()
/aoo41x/main/odk/examples/java/Inspector/
H A DUnoTreeRenderer.java32 import javax.swing.tree.DefaultMutableTreeNode;
33 import javax.swing.tree.DefaultTreeCellRenderer;
68 …public synchronized Component getTreeCellRendererComponent(JTree tree,Object value, boolean sel, b… in getTreeCellRendererComponent() argument
72 … Component rc = super.getTreeCellRendererComponent( tree, value, sel,expanded, leaf, row,hasFocus); in getTreeCellRendererComponent()
H A DSwingTreeControlProvider.java50 import javax.swing.tree.DefaultTreeSelectionModel;
51 import javax.swing.tree.ExpandVetoException;
52 import javax.swing.tree.TreePath;
53 import javax.swing.tree.TreeSelectionModel;
269 …WillExpand(javax.swing.event.TreeExpansionEvent event) throws javax.swing.tree.ExpandVetoException… in addTreeExpandListener()
277 …illCollapse( javax.swing.event.TreeExpansionEvent evt) throws javax.swing.tree.ExpandVetoException… in addTreeExpandListener()
/aoo41x/test/testgui/source/testlib/gui/
H A DUIMap.java122 public static VclTreeListBox tree(String id) { in tree() method in UIMap
224 public static final VclTreeListBox optionsDlgList = tree("CUI_HID_OFADLG_TREELISTBOX");
296 public static final VclTreeListBox scCalcSubTotalForColumns = tree("SC_HID_SC_SUBT_COLS");
368 public static final VclTreeListBox optionsDlgPathTabTree = tree("CUI_HID_OPTPATH_CTL_PATH");
369 public static final VclTreeListBox optionsDlgMicorOfficeTree = tree("CUI_HID_OFAPAGE_MSFLTR2_CLB");
528 public static final VclTreeListBox sdNavigator = tree("SD_HID_SD_NAVIGATOR_TLB");
539 public static final VclTreeListBox runMacroDlgCategories = tree("CUI_HID_SELECTOR_CATEGORIES");
540 public static final VclTreeListBox runMacroDlgCommands = tree("CUI_HID_SELECTOR_COMMANDS");
/aoo41x/main/xmlsecurity/tools/uno/
H A DTestTool.java79 import javax.swing.tree.TreePath;
446 private void updatesTree(Node node, JTree tree) in updatesTree() argument
451 while (i<tree.getRowCount()) in updatesTree()
453 TreePath treePath = tree.getPathForRow(i); in updatesTree()
454 tree.expandPath(treePath); in updatesTree()
460 tree.addSelectionPath(treePath); in updatesTree()
467 tree.setCellRenderer(new XMLTreeCellRanderer(node)); in updatesTree()
468 tree.scrollRowToVisible(currentLine); in updatesTree()
H A DXMLTreeCellRanderer.java26 import javax.swing.tree.DefaultTreeCellRenderer;
55 JTree tree, in getTreeCellRendererComponent() argument
64 tree, value, sel, in getTreeCellRendererComponent()
/aoo41x/main/offapi/com/sun/star/awt/tree/
H A DXMutableTreeDataModel.idl27 #include <com/sun/star/awt/tree/XTreeDataModel.idl>
31 #include <com/sun/star/awt/tree/XMutableTreeNode.idl>
36 module com { module sun { module star { module awt { module tree {
47 /** creates a new tree node with the given value and given settings.
H A DMutableTreeNode.idl27 #include <com/sun/star/awt/tree/XMutableTreeNode.idl>
32 module com { module sun { module star { module awt { module tree {
36 /** Represents an editable tree node as used by the <type>MutableTreeDataModel</type>
H A DTreeControl.idl27 #include <com/sun/star/awt/tree/XTreeControl.idl>
32 module com { module sun { module star { module awt { module tree {
40 <p>A specific node in a tree is identified by a <type>XTreeNode</type>.
70 <p>If you want to add child nodes to your tree on demand you can do the following.
H A DMutableTreeDataModel.idl27 #include <com/sun/star/awt/tree/XMutableTreeDataModel.idl>
31 #include <com/sun/star/awt/tree/XMutableTreeNode.idl>
36 module com { module sun { module star { module awt { module tree {
H A DTreeExpansionEvent.idl31 #include <com/sun/star/awt/tree/XTreeNode.idl>
36 module com { module sun { module star { module awt { module tree {
48 com::sun::star::awt::tree::XTreeNode Node;
/aoo41x/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Panel/
H A DChooseComponents.java47 import javax.swing.tree.DefaultMutableTreeNode;
48 import javax.swing.tree.DefaultTreeModel;
49 import javax.swing.tree.TreePath;
50 import javax.swing.tree.TreeSelectionModel;
H A DChooseUninstallationComponents.java47 import javax.swing.tree.DefaultMutableTreeNode;
48 import javax.swing.tree.DefaultTreeModel;
49 import javax.swing.tree.TreePath;
50 import javax.swing.tree.TreeSelectionModel;
/aoo41x/main/offapi/com/sun/star/frame/
H A DFrameSearchFlag.idl74 Search doesn't stop at the next level inside the tree!
96 /** allow the search outside the current sub task tree of the whole possible frame tree
101 But it can be used at the root of the frame tree to search on direct childrens of it only.
/aoo41x/main/offapi/type_reference/
H A Dtypelibrary_history.txt122 new reference type library is taken from the release source tree OOC680m7.
131 new reference type library is taken from the release source tree OOD680m5.
135 reference type library is taken from the release source tree OOF680 m14.
143 reference type library is taken from the release source tree OOG680 m5.
176 reference type library is taken from the release source tree OOO320 m12.
180 reference type library is taken from the release source tree OOO320 m19.
/aoo41x/main/qadevOOo/tests/java/mod/_toolkit/
H A DMutableTreeDataModel.java25 import com.sun.star.awt.tree.XMutableTreeDataModel;
26 import com.sun.star.awt.tree.XMutableTreeNode;
86 …public class XTreeDataModelListenerEvent implements ifc.awt.tree._XTreeDataModel.XTreeDataModelLis…
/aoo41x/main/helpcontent2/util/shared/
H A Dmakefile.mk48 -add shared.tree $(COMMONMISC)$/LANGUAGE$/shared.tree \
59 $(COMMONMISC)$/LANGUAGE$/shared.tree \

Completed in 93 milliseconds

12345678910