Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > a6711891ce757817bba854bf3f25205a > files > 2093

qtjambi-doc-4.3.3-3mdv2008.1.i586.rpm

<class name="QItemSelectionModel" doc="/**
&lt;p&gt;The &lt;a href=&quot;QItemSelectionModel.html#QItemSelectionModel(com.trolltech.qt.core.QAbstractItemModel, com.trolltech.qt.core.QObject)&quot;&gt;&lt;tt&gt;QItemSelectionModel&lt;/tt&gt;&lt;/a&gt; class keeps track of a view's selected items.&lt;/p&gt;
&lt;p&gt;A &lt;a href=&quot;QItemSelectionModel.html#QItemSelectionModel(com.trolltech.qt.core.QAbstractItemModel, com.trolltech.qt.core.QObject)&quot;&gt;&lt;tt&gt;QItemSelectionModel&lt;/tt&gt;&lt;/a&gt; keeps track of the selected items in a view, or in several views onto the same model. It also keeps track of the currently selected item in a view.&lt;/p&gt;
&lt;p&gt;The &lt;a href=&quot;QItemSelectionModel.html#QItemSelectionModel(com.trolltech.qt.core.QAbstractItemModel, com.trolltech.qt.core.QObject)&quot;&gt;&lt;tt&gt;QItemSelectionModel&lt;/tt&gt;&lt;/a&gt; class is one of the &lt;a href=&quot;%2E%2E/qt4-interview.html#model-view-classes&quot;&gt;Model/View Classes&lt;/tt&gt;&lt;/a&gt; and is part of Qt's &lt;a href=&quot;%2E%2E/model-view-programming.html&quot;&gt;model/view framework&lt;/tt&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The selected items are stored using ranges. Whenever you want to modify the selected items use &lt;a href=&quot;QItemSelectionModel.html#select(com.trolltech.qt.core.QModelIndex, com.trolltech.qt.gui.QItemSelectionModel.SelectionFlags)&quot;&gt;&lt;tt&gt;select&lt;/tt&gt;&lt;/a&gt; and provide either a &lt;a href=&quot;QItemSelection.html&quot;&gt;&lt;tt&gt;QItemSelection&lt;/tt&gt;&lt;/a&gt;, or a QModelIndex and a QItemSelectionModel::SelectionFlag.&lt;/p&gt;
&lt;p&gt;The &lt;a href=&quot;QItemSelectionModel.html#QItemSelectionModel(com.trolltech.qt.core.QAbstractItemModel, com.trolltech.qt.core.QObject)&quot;&gt;&lt;tt&gt;QItemSelectionModel&lt;/tt&gt;&lt;/a&gt; takes a two layer approach to selection management, dealing with both selected items that have been committed and items that are part of the current selection. The current selected items are part of the current interactive selection (for example with rubber-band selection or keyboard-shift selections).&lt;/p&gt;
&lt;p&gt;To update the currently selected items, use the bitwise OR of QItemSelectionModel::Current and any of the other SelectionFlags. If you omit the QItemSelectionModel::Current command, a new current selection will be created, and the previous one added to the committed selection. All functions operate on both layers; for example, selectedItems() will return items from both layers.&lt;/p&gt;

@see &lt;a href=&quot;%2E%2E/model-view-programming.html&quot;&gt;Model/View Programming&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;%2E%2E/core/QAbstractItemModel.html&quot;&gt;&lt;tt&gt;QAbstractItemModel&lt;/tt&gt;&lt;/a&gt;
@see Chart Example&lt;/tt&gt; */">
    <signal name="protected final void currentChanged(com.trolltech.qt.core.QModelIndex current, com.trolltech.qt.core.QModelIndex previous)" doc="/**
&lt;p&gt;This signal is emitted whenever the current item changes. The &lt;tt&gt;previous&lt;/tt&gt; model item index is replaced by the &lt;tt&gt;current&lt;/tt&gt; index as the selection's current item.&lt;/p&gt;
&lt;p&gt;Note that this signal will not be emitted when the item model is reset.&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;b&gt;Compatible Slot Signatures:&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;tt&gt;void mySlot(com.trolltech.qt.core.QModelIndex current, com.trolltech.qt.core.QModelIndex previous)&lt;/tt&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;tt&gt;void mySlot(com.trolltech.qt.core.QModelIndex current)&lt;/tt&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;tt&gt;void mySlot()&lt;/tt&gt;&lt;/dd&gt;
&lt;/dl&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;b&gt;See Also:&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;a href=&quot;QItemSelectionModel.html#currentIndex()&quot;&gt;&lt;tt&gt;currentIndex&lt;/tt&gt;&lt;/a&gt;, &lt;a href=&quot;QItemSelectionModel.html#setCurrentIndex(com.trolltech.qt.core.QModelIndex, com.trolltech.qt.gui.QItemSelectionModel.SelectionFlags)&quot;&gt;&lt;tt&gt;setCurrentIndex&lt;/tt&gt;&lt;/a&gt;, &lt;a href=&quot;QItemSelectionModel.html#selectionChanged(com.trolltech.qt.gui.QItemSelection, com.trolltech.qt.gui.QItemSelection)&quot;&gt;&lt;tt&gt;selectionChanged&lt;/tt&gt;&lt;/a&gt;&lt;/dd&gt;
&lt;/dl&gt;
 */"/>
    <signal name="protected final void currentColumnChanged(com.trolltech.qt.core.QModelIndex current, com.trolltech.qt.core.QModelIndex previous)" doc="/**
&lt;p&gt;This signal is emitted if the &lt;tt&gt;current&lt;/tt&gt; item changes and its column is different to the column of the &lt;tt&gt;previous&lt;/tt&gt; current item.&lt;/p&gt;
&lt;p&gt;Note that this signal will not be emitted when the item model is reset.&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;b&gt;Compatible Slot Signatures:&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;tt&gt;void mySlot(com.trolltech.qt.core.QModelIndex current, com.trolltech.qt.core.QModelIndex previous)&lt;/tt&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;tt&gt;void mySlot(com.trolltech.qt.core.QModelIndex current)&lt;/tt&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;tt&gt;void mySlot()&lt;/tt&gt;&lt;/dd&gt;
&lt;/dl&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;b&gt;See Also:&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;a href=&quot;QItemSelectionModel.html#currentChanged(com.trolltech.qt.core.QModelIndex, com.trolltech.qt.core.QModelIndex)&quot;&gt;&lt;tt&gt;currentChanged&lt;/tt&gt;&lt;/a&gt;, &lt;a href=&quot;QItemSelectionModel.html#currentRowChanged(com.trolltech.qt.core.QModelIndex, com.trolltech.qt.core.QModelIndex)&quot;&gt;&lt;tt&gt;currentRowChanged&lt;/tt&gt;&lt;/a&gt;, &lt;a href=&quot;QItemSelectionModel.html#currentIndex()&quot;&gt;&lt;tt&gt;currentIndex&lt;/tt&gt;&lt;/a&gt;, &lt;a href=&quot;QItemSelectionModel.html#setCurrentIndex(com.trolltech.qt.core.QModelIndex, com.trolltech.qt.gui.QItemSelectionModel.SelectionFlags)&quot;&gt;&lt;tt&gt;setCurrentIndex&lt;/tt&gt;&lt;/a&gt;&lt;/dd&gt;
&lt;/dl&gt;
 */"/>
    <signal name="protected final void currentRowChanged(com.trolltech.qt.core.QModelIndex current, com.trolltech.qt.core.QModelIndex previous)" doc="/**
&lt;p&gt;This signal is emitted if the &lt;tt&gt;current&lt;/tt&gt; item changes and its row is different to the row of the &lt;tt&gt;previous&lt;/tt&gt; current item.&lt;/p&gt;
&lt;p&gt;Note that this signal will not be emitted when the item model is reset.&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;b&gt;Compatible Slot Signatures:&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;tt&gt;void mySlot(com.trolltech.qt.core.QModelIndex current, com.trolltech.qt.core.QModelIndex previous)&lt;/tt&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;tt&gt;void mySlot(com.trolltech.qt.core.QModelIndex current)&lt;/tt&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;tt&gt;void mySlot()&lt;/tt&gt;&lt;/dd&gt;
&lt;/dl&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;b&gt;See Also:&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;a href=&quot;QItemSelectionModel.html#currentChanged(com.trolltech.qt.core.QModelIndex, com.trolltech.qt.core.QModelIndex)&quot;&gt;&lt;tt&gt;currentChanged&lt;/tt&gt;&lt;/a&gt;, &lt;a href=&quot;QItemSelectionModel.html#currentColumnChanged(com.trolltech.qt.core.QModelIndex, com.trolltech.qt.core.QModelIndex)&quot;&gt;&lt;tt&gt;currentColumnChanged&lt;/tt&gt;&lt;/a&gt;, &lt;a href=&quot;QItemSelectionModel.html#currentIndex()&quot;&gt;&lt;tt&gt;currentIndex&lt;/tt&gt;&lt;/a&gt;, &lt;a href=&quot;QItemSelectionModel.html#setCurrentIndex(com.trolltech.qt.core.QModelIndex, com.trolltech.qt.gui.QItemSelectionModel.SelectionFlags)&quot;&gt;&lt;tt&gt;setCurrentIndex&lt;/tt&gt;&lt;/a&gt;&lt;/dd&gt;
&lt;/dl&gt;
 */"/>
    <signal name="protected final void selectionChanged(com.trolltech.qt.gui.QItemSelection selected, com.trolltech.qt.gui.QItemSelection deselected)" doc="/**
&lt;p&gt;This signal is emitted whenever the selection changes. The change in the selection is represented as an item selection of &lt;tt&gt;deselected&lt;/tt&gt; items and an item selection of &lt;tt&gt;selected&lt;/tt&gt; items.&lt;/p&gt;
&lt;p&gt;Note the that the current index changes independently from the selection. Also note that this signal will not be emitted when the item model is reset.&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;b&gt;Compatible Slot Signatures:&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;tt&gt;void mySlot(com.trolltech.qt.gui.QItemSelection selected, com.trolltech.qt.gui.QItemSelection deselected)&lt;/tt&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;tt&gt;void mySlot(com.trolltech.qt.gui.QItemSelection selected)&lt;/tt&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;tt&gt;void mySlot()&lt;/tt&gt;&lt;/dd&gt;
&lt;/dl&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;b&gt;See Also:&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;a href=&quot;QItemSelectionModel.html#select(com.trolltech.qt.core.QModelIndex, com.trolltech.qt.gui.QItemSelectionModel.SelectionFlags)&quot;&gt;&lt;tt&gt;select&lt;/tt&gt;&lt;/a&gt;, &lt;a href=&quot;QItemSelectionModel.html#currentChanged(com.trolltech.qt.core.QModelIndex, com.trolltech.qt.core.QModelIndex)&quot;&gt;&lt;tt&gt;currentChanged&lt;/tt&gt;&lt;/a&gt;&lt;/dd&gt;
&lt;/dl&gt;
 */"/>
    <method name="public QItemSelectionModel(com.trolltech.qt.core.QAbstractItemModel model)" doc="/**
&lt;p&gt;Constructs a selection model that operates on the specified item &lt;tt&gt;model&lt;/tt&gt;.&lt;/p&gt;
 */"/>
    <method name="public QItemSelectionModel(com.trolltech.qt.core.QAbstractItemModel model, com.trolltech.qt.core.QObject parent)" doc="/**
&lt;p&gt;Constructs a selection model that operates on the specified item &lt;tt&gt;model&lt;/tt&gt; with &lt;tt&gt;parent&lt;/tt&gt;.&lt;/p&gt;
 */"/>
    <method name="public final void clearSelection()" doc="/**
&lt;p&gt;Clears the selection in the selection model. Emits &lt;a href=&quot;QItemSelectionModel.html#selectionChanged(com.trolltech.qt.gui.QItemSelection, com.trolltech.qt.gui.QItemSelection)&quot;&gt;&lt;tt&gt;selectionChanged&lt;/tt&gt;&lt;/a&gt;.&lt;/p&gt;
 */"/>
    <method name="public final boolean columnIntersectsSelection(int column, com.trolltech.qt.core.QModelIndex parent)" doc="/**
&lt;p&gt;Returns true if there are any items selected in the &lt;tt&gt;column&lt;/tt&gt; with the given &lt;tt&gt;parent&lt;/tt&gt;.&lt;/p&gt;
 */"/>
    <method name="public final com.trolltech.qt.core.QModelIndex currentIndex()" doc="/**
&lt;p&gt;Returns the model item index for the current item, or an invalid index if there is no current item.&lt;/p&gt;

@see &lt;a href=&quot;QItemSelectionModel.html#setCurrentIndex(com.trolltech.qt.core.QModelIndex, com.trolltech.qt.gui.QItemSelectionModel.SelectionFlags)&quot;&gt;&lt;tt&gt;setCurrentIndex&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="protected final void emitSelectionChanged(com.trolltech.qt.gui.QItemSelection newSelection, com.trolltech.qt.gui.QItemSelection oldSelection)" doc="/**
&lt;p&gt;Compares the two selections &lt;tt&gt;newSelection&lt;/tt&gt; and &lt;tt&gt;oldSelection&lt;/tt&gt; and emits &lt;a href=&quot;QItemSelectionModel.html#selectionChanged(com.trolltech.qt.gui.QItemSelection, com.trolltech.qt.gui.QItemSelection)&quot;&gt;&lt;tt&gt;selectionChanged&lt;/tt&gt;&lt;/a&gt; with the deselected and selected items.&lt;/p&gt;
 */"/>
    <method name="public final boolean hasSelection()" doc="/**
&lt;p&gt;Returns true if the selection model contains any selection ranges; otherwise returns false.&lt;/p&gt;
 */"/>
    <method name="public final boolean isColumnSelected(int column, com.trolltech.qt.core.QModelIndex parent)" doc="/**
&lt;p&gt;Returns true if all items are selected in the &lt;tt&gt;column&lt;/tt&gt; with the given &lt;tt&gt;parent&lt;/tt&gt;.&lt;/p&gt;
&lt;p&gt;Note that this function is usually faster than calling &lt;a href=&quot;QItemSelectionModel.html#isSelected(com.trolltech.qt.core.QModelIndex)&quot;&gt;&lt;tt&gt;isSelected&lt;/tt&gt;&lt;/a&gt; on all items in the same column and that unselectable items are ignored.&lt;/p&gt;
 */"/>
    <method name="public final boolean isRowSelected(int row, com.trolltech.qt.core.QModelIndex parent)" doc="/**
&lt;p&gt;Returns true if all items are selected in the &lt;tt&gt;row&lt;/tt&gt; with the given &lt;tt&gt;parent&lt;/tt&gt;.&lt;/p&gt;
&lt;p&gt;Note that this function is usually faster than calling &lt;a href=&quot;QItemSelectionModel.html#isSelected(com.trolltech.qt.core.QModelIndex)&quot;&gt;&lt;tt&gt;isSelected&lt;/tt&gt;&lt;/a&gt; on all items in the same row and that unselectable items are ignored.&lt;/p&gt;
 */"/>
    <method name="public final boolean isSelected(com.trolltech.qt.core.QModelIndex index)" doc="/**
&lt;p&gt;Returns true if the given model item &lt;tt&gt;index&lt;/tt&gt; is selected.&lt;/p&gt;
 */"/>
    <method name="public final com.trolltech.qt.core.QAbstractItemModel model()" doc="/**
&lt;p&gt;Returns the item model operated on by the selection model.&lt;/p&gt;
 */"/>
    <method name="public final boolean rowIntersectsSelection(int row, com.trolltech.qt.core.QModelIndex parent)" doc="/**
&lt;p&gt;Returns true if there are any items selected in the &lt;tt&gt;row&lt;/tt&gt; with the given &lt;tt&gt;parent&lt;/tt&gt;.&lt;/p&gt;
 */"/>
    <method name="public final java.util.List&lt;com.trolltech.qt.core.QModelIndex&gt; selectedColumns(int row)" doc="/**
&lt;p&gt;Returns the indexes in the given &lt;tt&gt;row&lt;/tt&gt; for columns where all rows are selected.&lt;/p&gt;

@see &lt;a href=&quot;QItemSelectionModel.html#selectedIndexes()&quot;&gt;&lt;tt&gt;selectedIndexes&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QItemSelectionModel.html#selectedRows(int)&quot;&gt;&lt;tt&gt;selectedRows&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final java.util.List&lt;com.trolltech.qt.core.QModelIndex&gt; selectedColumns()" doc="/**
&lt;p&gt;Equivalent to &lt;a href=&quot;QItemSelectionModel.html#selectedColumns(int)&quot;&gt;&lt;tt&gt;selectedColumns&lt;/tt&gt;&lt;/a&gt;(0). */"/>
    <method name="public final java.util.List&lt;com.trolltech.qt.core.QModelIndex&gt; selectedIndexes()" doc="/**
&lt;p&gt;Returns a list of all selected model item indexes. The list contains no duplicates, and is not sorted.&lt;/p&gt;
 */"/>
    <method name="public final java.util.List&lt;com.trolltech.qt.core.QModelIndex&gt; selectedRows(int column)" doc="/**
&lt;p&gt;Returns the indexes in the given &lt;tt&gt;column&lt;/tt&gt; for the rows where all columns are selected.&lt;/p&gt;

@see &lt;a href=&quot;QItemSelectionModel.html#selectedIndexes()&quot;&gt;&lt;tt&gt;selectedIndexes&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QItemSelectionModel.html#selectedColumns(int)&quot;&gt;&lt;tt&gt;selectedColumns&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final java.util.List&lt;com.trolltech.qt.core.QModelIndex&gt; selectedRows()" doc="/**
&lt;p&gt;Equivalent to &lt;a href=&quot;QItemSelectionModel.html#selectedRows(int)&quot;&gt;&lt;tt&gt;selectedRows&lt;/tt&gt;&lt;/a&gt;(0). */"/>
    <method name="public final com.trolltech.qt.gui.QItemSelection selection()" doc="/**
&lt;p&gt;Returns the selection ranges stored in the selection model.&lt;/p&gt;
 */"/>
    <method name="public final void setCurrentIndex(com.trolltech.qt.core.QModelIndex index, com.trolltech.qt.gui.QItemSelectionModel.SelectionFlags command)" doc="/**
&lt;p&gt;Sets the model item &lt;tt&gt;index&lt;/tt&gt; to be the current item, and emits &lt;a href=&quot;QItemSelectionModel.html#currentChanged(com.trolltech.qt.core.QModelIndex, com.trolltech.qt.core.QModelIndex)&quot;&gt;&lt;tt&gt;currentChanged&lt;/tt&gt;&lt;/a&gt;. The current item is used for keyboard navigation and focus indication; it is independent of any selected items, although a selected item can also be the current item.&lt;/p&gt;
&lt;p&gt;Depending on the specified &lt;tt&gt;command&lt;/tt&gt;, the &lt;tt&gt;index&lt;/tt&gt; can also become part of the current selection.&lt;/p&gt;

@see &lt;a href=&quot;QItemSelectionModel.html#currentIndex()&quot;&gt;&lt;tt&gt;currentIndex&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QItemSelectionModel.html#select(com.trolltech.qt.core.QModelIndex, com.trolltech.qt.gui.QItemSelectionModel.SelectionFlags)&quot;&gt;&lt;tt&gt;select&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public void clear()" doc="/**
&lt;p&gt;Clears the selection model. Emits &lt;a href=&quot;QItemSelectionModel.html#selectionChanged(com.trolltech.qt.gui.QItemSelection, com.trolltech.qt.gui.QItemSelection)&quot;&gt;&lt;tt&gt;selectionChanged&lt;/tt&gt;&lt;/a&gt; and &lt;a href=&quot;QItemSelectionModel.html#currentChanged(com.trolltech.qt.core.QModelIndex, com.trolltech.qt.core.QModelIndex)&quot;&gt;&lt;tt&gt;currentChanged&lt;/tt&gt;&lt;/a&gt;.&lt;/p&gt;
 */"/>
    <method name="public void reset()" doc="/**
&lt;p&gt;Clears the selection model. Does not emit any signals.&lt;/p&gt;
 */"/>
    <method name="public void select(com.trolltech.qt.gui.QItemSelection selection, com.trolltech.qt.gui.QItemSelectionModel.SelectionFlags command)" doc="/**
&lt;p&gt;Selects the item &lt;tt&gt;selection&lt;/tt&gt; using the specified &lt;tt&gt;command&lt;/tt&gt;, and emits &lt;a href=&quot;QItemSelectionModel.html#selectionChanged(com.trolltech.qt.gui.QItemSelection, com.trolltech.qt.gui.QItemSelection)&quot;&gt;&lt;tt&gt;selectionChanged&lt;/tt&gt;&lt;/a&gt;.&lt;/p&gt;

@see &lt;tt&gt;QItemSelectionModel::SelectionFlag&lt;/tt&gt; */"/>
    <method name="public void select(com.trolltech.qt.core.QModelIndex index, com.trolltech.qt.gui.QItemSelectionModel.SelectionFlags command)" doc="/**
&lt;p&gt;Selects the model item &lt;tt&gt;index&lt;/tt&gt; using the specified &lt;tt&gt;command&lt;/tt&gt;, and emits &lt;a href=&quot;QItemSelectionModel.html#selectionChanged(com.trolltech.qt.gui.QItemSelection, com.trolltech.qt.gui.QItemSelection)&quot;&gt;&lt;tt&gt;selectionChanged&lt;/tt&gt;&lt;/a&gt;.&lt;/p&gt;

@see &lt;tt&gt;QItemSelectionModel::SelectionFlags&lt;/tt&gt; */"/>
    <enum name="SelectionFlag" doc="/**
&lt;p&gt;This enum describes the way the selection model will be updated.&lt;/p&gt;
 */">
        <enum-value name="NoUpdate" doc="/**
&lt;p&gt;No selection will be made.&lt;/p&gt;
 */"/>
        <enum-value name="Clear" doc="/**
&lt;p&gt;The complete selection will be cleared.&lt;/p&gt;
 */"/>
        <enum-value name="Select" doc="/**
&lt;p&gt;All specified indexes will be selected.&lt;/p&gt;
 */"/>
        <enum-value name="Deselect" doc="/**
&lt;p&gt;All specified indexes will be deselected.&lt;/p&gt;
 */"/>
        <enum-value name="Toggle" doc="/**
&lt;p&gt;All specified indexes will be selected or deselected depending on their current state.&lt;/p&gt;
 */"/>
        <enum-value name="Current" doc="/**
&lt;p&gt;The current selection will be updated.&lt;/p&gt;
 */"/>
        <enum-value name="Rows" doc="/**
&lt;p&gt;All indexes will be expanded to span rows.&lt;/p&gt;
 */"/>
        <enum-value name="Columns" doc="/**
&lt;p&gt;All indexes will be expanded to span columns.&lt;/p&gt;
 */"/>
        <enum-value name="SelectCurrent" doc="/**
&lt;p&gt;A combination of Select and Current, provided for convenience.&lt;/p&gt;
 */"/>
        <enum-value name="ToggleCurrent" doc="/**
&lt;p&gt;A combination of Toggle and Current, provided for convenience.&lt;/p&gt;
 */"/>
        <enum-value name="ClearAndSelect" doc="/**
&lt;p&gt;A combination of Clear and Select, provided for convenience.&lt;/p&gt;
 */"/>
</enum>
</class>