Uses of Class
org.gnu.gtk.TreeIter

Packages that use TreeIter
org.gnu.gtk   
 

Uses of TreeIter in org.gnu.gtk
 

Methods in org.gnu.gtk that return TreeIter
 TreeIter TreeModel.getIter(TreePath path)
          Returns a valid iterator pointing to path, or null/
 TreeIter TreeModel.getIter(java.lang.String pathString)
          Returns a valid iterator pointing to the path represented by pathString, or returns null if the path is invalid.
 TreeIter TreeModel.getFirstIter()
          Returns the iterator at the start of the model (the one at the path "0"), or returns null if the tree is empty.
 TreeIter TreeModel.getNextIter(TreeIter iter)
          Returns the next iter pointing to the node following the TreeIter provided at the same level.
 TreeIter TreeModel.getFirstChild(TreeIter parent)
          Returns an iterator for the first child of the given iterator, or null if the iter has no children.
 TreeIter ListStore.insertRow(int position)
          Creates a new row at position.
 TreeIter ListStore.insertRowBefore(TreeIter sibling)
          Inserts a new row before sibling.
 TreeIter ListStore.insertRowAfter(TreeIter sibling)
          Inserts a new row after sibling.
 TreeIter ListStore.prependRow()
          Prepends a new row to list_store.
 TreeIter ListStore.appendRow()
          Appends a new row to the store
 TreeIter TreeStore.insertRow(TreeIter parent, int position)
          Creates a new row at position.
 TreeIter TreeStore.insertRowBefore(TreeIter sibling, TreeIter parent)
          Inserts a new row before sibling.
 TreeIter TreeStore.insertRowAfter(TreeIter sibling, TreeIter parent)
          Inserts a new row after sibling.
 TreeIter TreeStore.prependRow(TreeIter parent)
          Prepends a new row to the store.
 TreeIter TreeStore.appendRow(TreeIter parent)
          Appends a new row to tree_store.
 

Methods in org.gnu.gtk with parameters of type TreeIter
 void TreeSelectionForEach.forEach(TreeModel model, TreePath path, TreeIter iter)
          This is called for each of the items.
 TreePath TreeModel.getPath(TreeIter iter)
          Returns a newly-created TreePath referenced by iter.
 java.lang.String TreeModel.getValue(TreeIter iter, DataBlockString dataBlock)
          Returns the Value at the given iter in the specified data block.
 int TreeModel.getValue(TreeIter iter, DataBlockInt dataBlock)
          Returns the Value at the given iter in the specified data block.
 boolean TreeModel.getValue(TreeIter iter, DataBlockBoolean dataBlock)
          Returns the Value at the given iter in the specified data block.
 double TreeModel.getValue(TreeIter iter, DataBlockDouble dataBlock)
          Returns the Value at the given iter in the specified data block.
 java.lang.Object TreeModel.getValue(TreeIter iter, DataBlockObject dataBlock)
          Returns the Value at the given iter in the specified data block.
 TreeIter TreeModel.getNextIter(TreeIter iter)
          Returns the next iter pointing to the node following the TreeIter provided at the same level.
 boolean TreeModel.iterHasChild(TreeIter iter)
          Returns TRUE if iter has children, FALSE otherwise.
 TreeIter TreeModel.getFirstChild(TreeIter parent)
          Returns an iterator for the first child of the given iterator, or null if the iter has no children.
 int TreeModel.getIterChildCount(TreeIter iter)
          Returns the number of children that iter has
 void ListStore.setValue(TreeIter iter, DataBlockString dataBlock, java.lang.String value)
          Sets a value in the data store.
 void ListStore.setValue(TreeIter iter, DataBlockInt dataBlock, int value)
          Sets a value in the data store.
 void ListStore.setValue(TreeIter iter, DataBlockBoolean dataBlock, boolean value)
          Sets a value in the data store.
 void ListStore.setValue(TreeIter iter, DataBlockDouble dataBlock, double value)
          Sets a value in the data store.
 void ListStore.setValue(TreeIter iter, DataBlockObject dataBlock, java.lang.Object value)
          Sets a value in the dataStore.
 void ListStore.setValue(TreeIter iter, DataBlockPixbuf dataBlock, Pixbuf value)
          Sets a value in the dataStore.
 void ListStore.removeRow(TreeIter iter)
          Removes the given row from the list store.
 TreeIter ListStore.insertRowBefore(TreeIter sibling)
          Inserts a new row before sibling.
 TreeIter ListStore.insertRowAfter(TreeIter sibling)
          Inserts a new row after sibling.
 void TreeStore.setValue(TreeIter iter, DataBlockString dataBlock, java.lang.String value)
          Sets a value in the dataStore.
 void TreeStore.setValue(TreeIter iter, DataBlockInt dataBlock, int value)
          Sets a value in the dataStore.
 void TreeStore.setValue(TreeIter iter, DataBlockBoolean dataBlock, boolean value)
          Sets a value in the dataStore.
 void TreeStore.setValue(TreeIter iter, DataBlockDouble dataBlock, double value)
          Sets a value in the dataStore.
 void TreeStore.setValue(TreeIter iter, DataBlockObject dataBlock, java.lang.Object value)
          Sets a value in the dataStore.
 void TreeStore.setValue(TreeIter iter, DataBlockPixbuf dataBlock, Pixbuf value)
          Sets a value in the dataStore.
 void TreeStore.removeRow(TreeIter iter)
          Removes a row from the tree store.
 TreeIter TreeStore.insertRow(TreeIter parent, int position)
          Creates a new row at position.
 TreeIter TreeStore.insertRowBefore(TreeIter sibling, TreeIter parent)
          Inserts a new row before sibling.
 TreeIter TreeStore.insertRowBefore(TreeIter sibling, TreeIter parent)
          Inserts a new row before sibling.
 TreeIter TreeStore.insertRowAfter(TreeIter sibling, TreeIter parent)
          Inserts a new row after sibling.
 TreeIter TreeStore.insertRowAfter(TreeIter sibling, TreeIter parent)
          Inserts a new row after sibling.
 TreeIter TreeStore.prependRow(TreeIter parent)
          Prepends a new row to the store.
 TreeIter TreeStore.appendRow(TreeIter parent)
          Appends a new row to tree_store.
 boolean TreeStore.isAncestor(TreeIter iter, TreeIter descendant)
          Returns TRUE if iter is an ancestor of descendant.
 boolean TreeStore.isAncestor(TreeIter iter, TreeIter descendant)
          Returns TRUE if iter is an ancestor of descendant.
 int TreeStore.getIteratorDepth(TreeIter iter)
          Returns the depth of the iterator.
 void TreeSelection.select(TreeIter iter)
          Selects the specified iterator.
 void TreeSelection.unselect(TreeIter iter)
          Unselects the specified iterator.
 boolean TreeSelection.getSelected(TreeIter iter)
          Returns TRUE if the row pointed to by iter is currently selected.
 


Please send any bug reports, comments, or suggestions for the API or documentation to java-gnome-developer@lists.sf.net