• PySide 模块
  • PySide.QtGui
  • 内容表

    上一话题

    QGraphicsView

    下一话题

    QTreeView

    QAbstractItemView

    继承者: QTreeView , QHelpContentWidget , QTreeWidget , QHeaderView , QTableView , QTableWidget , QColumnView , QListView , QUndoView , QListWidget , QHelpIndexWidget

    概要

    函数

    虚函数

    信号

    详细描述

    PySide.QtGui.QAbstractItemView class provides the basic functionality for item view classes.

    PySide.QtGui.QAbstractItemView class is the base class for every standard view that uses a PySide.QtCore.QAbstractItemModel . PySide.QtGui.QAbstractItemView is an abstract class and cannot itself be instantiated. It provides a standard interface for interoperating with models through the signals and slots mechanism, enabling subclasses to be kept up-to-date with changes to their models. This class provides standard support for keyboard and mouse navigation, viewport scrolling, item editing, and selections. The keyboard navigation implements this functionality:

    功能
    方向键 改变当前项并选择它。
    Ctrl + 方向键 改变当前项但不选择它。
    Shift + 方向键 更改当前项并选择它。先前选中项不会被取消选择。
    Ctr+Space 切换当前项的选定。
    Tab/Backtab 将当前项更改为下一/上一项。
    Home/End 选择模型中的第一/最后项。
    Page up/Page down 按视图中的可见行数向上/向下卷动展示行。
    Ctrl+A 选择模型中的所有项。

    注意,上表假定 selection mode 允许操作。例如,无法选择项,若选定模式为 QAbstractItemView.NoSelection .

    PySide.QtGui.QAbstractItemView class is one of the 模型/视图类 且属于 Qt 的 模型/视图框架 .

    The view classes that inherit PySide.QtGui.QAbstractItemView only need to implement their own view-specific functionality, such as drawing items, returning the geometry of items, finding items, etc.

    PySide.QtGui.QAbstractItemView provides common slots such as PySide.QtGui.QAbstractItemView.edit() and PySide.QtGui.QAbstractItemView.setCurrentIndex() . Many protected slots are also provided, including PySide.QtGui.QAbstractItemView.dataChanged() , PySide.QtGui.QAbstractItemView.rowsInserted() , PySide.QtGui.QAbstractItemView.rowsAboutToBeRemoved() , PySide.QtGui.QAbstractItemView.selectionChanged() ,和 PySide.QtGui.QAbstractItemView.currentChanged() .

    根项的返回通过 PySide.QtGui.QAbstractItemView.rootIndex() , and the current item by PySide.QtGui.QAbstractItemView.currentIndex() . To make sure that an item is visible use PySide.QtGui.QAbstractItemView.scrollTo() .

    Some of PySide.QtGui.QAbstractItemView ‘s functions are concerned with scrolling, for example PySide.QtGui.QAbstractItemView.setHorizontalScrollMode() and PySide.QtGui.QAbstractItemView.setVerticalScrollMode() . To set the range of the scroll bars, you can, for example, reimplement the view's PySide.QtGui.QAbstractItemView.resizeEvent() 函数:

    def resizeEvent(self, event):
        horizontalScrollBar().setRange(0, realWidth - width())
        ...
    										

    注意,范围不更新,直到小部件被展示为止。

    几个其它函数涉及选定控制;例如 PySide.QtGui.QAbstractItemView.setSelectionMode() ,和 PySide.QtGui.QAbstractItemView.setSelectionBehavior() . This class provides a default selection model to work with ( PySide.QtGui.QAbstractItemView.selectionModel() ), but this can be replaced by using PySide.QtGui.QAbstractItemView.setSelectionModel() with an instance of PySide.QtGui.QItemSelectionModel .

    要完全控制项的显示和编辑,可以指定委托采用 PySide.QtGui.QAbstractItemView.setItemDelegate() .

    PySide.QtGui.QAbstractItemView provides a lot of protected functions. Some are concerned with editing, for example, PySide.QtGui.QAbstractItemView.edit() ,和 PySide.QtGui.QAbstractItemView.commitData() , whilst others are keyboard and mouse event handlers.

    注意

    If you inherit PySide.QtGui.QAbstractItemView and intend to update the contents of the viewport, you should use viewport-> PySide.QtGui.QAbstractItemView.update() 而不是 PySide.QtGui.QWidget.update() 因为所有描绘操作都发生在视口中。

    另请参阅

    视图类 模型/视图编程 PySide.QtCore.QAbstractItemModel 图表范例

    class PySide.QtGui. QAbstractItemView ( [ parent=None ] )
    参数: parent PySide.QtGui.QWidget

    Constructs an abstract item view with the given parent .

    PySide.QtGui.QAbstractItemView. DragDropMode

    描述视图可以行动的各种拖放事件。默认情况下,视图不支持拖曳或掉落 ( NoDragDrop ).

    常量 描述
    QAbstractItemView.NoDragDrop 不支持拖曳或掉落。
    QAbstractItemView.DragOnly 视图支持拖曳自己的项
    QAbstractItemView.DropOnly 视图接受掉落
    QAbstractItemView.DragDrop 视图支持拖拽和掉落两者
    QAbstractItemView.InternalMove 视图接受移动 ( 非拷贝 ) 操作仅来自自身。

    注意,使用模型需要提供对拖放操作的支持。

    另请参阅

    PySide.QtGui.QAbstractItemView.setDragDropMode() 将拖放用于项视图

    PySide.QtGui.QAbstractItemView. SelectionBehavior
    常量 描述
    QAbstractItemView.SelectItems 选择单个项。
    QAbstractItemView.SelectRows 仅选择行。
    QAbstractItemView.SelectColumns 仅选择列。
    PySide.QtGui.QAbstractItemView. EditTrigger

    此枚举描述将初始项编辑的动作。

    常量 描述
    QAbstractItemView.NoEditTriggers 没有编辑可能。
    QAbstractItemView.CurrentChanged 开始编辑每当当前项改变时。
    QAbstractItemView.DoubleClicked 开始编辑当双击项时。
    QAbstractItemView.SelectedClicked 开始编辑当点击已选中项时。
    QAbstractItemView.EditKeyPressed 开始编辑当在项上按下平台编辑键时。
    QAbstractItemView.AnyKeyPressed 开始编辑当在项上按下任意键时。
    QAbstractItemView.AllEditTriggers 开始编辑对于上述所有动作。
    PySide.QtGui.QAbstractItemView. ScrollMode
    常量 描述
    QAbstractItemView.ScrollPerItem 视图每次卷动内容一项。
    QAbstractItemView.ScrollPerPixel 视图每次卷动内容一像素。
    PySide.QtGui.QAbstractItemView. CursorAction

    此枚举描述在项之间导航的不同方式,

    常量 描述
    QAbstractItemView.MoveUp 移至当前项的上方项。
    QAbstractItemView.MoveDown 移至当前项的下方项。
    QAbstractItemView.MoveLeft 移动到当前项的左侧项。
    QAbstractItemView.MoveRight 移动到当前项的右侧项。
    QAbstractItemView.MoveHome 移至左上角项。
    QAbstractItemView.MoveEnd 移动到右下角项。
    QAbstractItemView.MovePageUp 移至当前项上一页。
    QAbstractItemView.MovePageDown 移至当前项下一页。
    QAbstractItemView.MoveNext 移至当前项之后项。
    QAbstractItemView.MovePrevious 移至当前项之前项。
    PySide.QtGui.QAbstractItemView. DropIndicatorPosition

    此枚举指示掉落指示器相对当前鼠标位置的索引位置:

    常量 描述
    QAbstractItemView.OnItem 项将掉落在索引处。
    QAbstractItemView.AboveItem 项将掉落在索引上方。
    QAbstractItemView.BelowItem 项将掉落在索引下方。
    QAbstractItemView.OnViewport 项将掉落在没有项的视口区域。各视图处理视口掉落项的方式,从属正使用的底层模型行为。
    PySide.QtGui.QAbstractItemView. ScrollHint
    常量 描述
    QAbstractItemView.EnsureVisible 卷动以确保项可见。
    QAbstractItemView.PositionAtTop 卷动以将项放置在视口顶部。
    QAbstractItemView.PositionAtBottom 卷动以定位到视口底部项。
    QAbstractItemView.PositionAtCenter 卷动以定位到视口中心项。
    PySide.QtGui.QAbstractItemView. SelectionMode

    此枚举指示视图如何响应用户选择:

    常量 描述
    QAbstractItemView.SingleSelection When the user selects an item, any already-selected item becomes unselected, and the user cannot unselect the selected item by clicking on it.
    QAbstractItemView.ContiguousSelection When the user selects an item in the usual way, the selection is cleared and the new item selected. However, if the user presses the Shift key while clicking on an item, all items between the current item and the clicked item are selected or unselected, depending on the state of the clicked item.
    QAbstractItemView.ExtendedSelection When the user selects an item in the usual way, the selection is cleared and the new item selected. However, if the user presses the Ctrl key when clicking on an item, the clicked item gets toggled and all other items are left untouched. If the user presses the Shift key while clicking on an item, all items between the current item and the clicked item are selected or unselected, depending on the state of the clicked item. Multiple items can be selected by dragging the mouse over them.
    QAbstractItemView.MultiSelection When the user selects an item in the usual way, the selection status of that item is toggled and the other items are left alone. Multiple items can be toggled by dragging the mouse over them.
    QAbstractItemView.NoSelection 无法选择项。

    The most commonly used modes are SingleSelection and ExtendedSelection .

    PySide.QtGui.QAbstractItemView. State

    描述视图可以处于的不同状态。通常,这只对重实现自己的视图感兴趣。

    常量 描述
    QAbstractItemView.NoState 这是默认状态。
    QAbstractItemView.DraggingState 用户正在拖曳项。
    QAbstractItemView.DragSelectingState 用户正在选择项。
    QAbstractItemView.EditingState 用户正在 Widget 编辑器中编辑项。
    QAbstractItemView.ExpandingState 用户正在打开项分支。
    QAbstractItemView.CollapsingState 用户正在关闭项分支。
    QAbstractItemView.AnimatingState 项视图正在履行动画。
    PySide.QtGui.QAbstractItemView. activated ( index )
    参数: index PySide.QtCore.QModelIndex
    PySide.QtGui.QAbstractItemView. alternatingRowColors ( )
    返回类型: PySide.QtCore.bool

    This property holds whether to draw the background using alternating colors.

    If this property is true, the item background will be drawn using QPalette.Base and QPalette.AlternateBase ;否则将绘制项背景使用 QPalette.Base 颜色。

    默认情况下,此特性为 false。

    PySide.QtGui.QAbstractItemView. autoScrollMargin ( )
    返回类型: PySide.QtCore.int

    This property holds the size of the area when auto scrolling is triggered.

    This property controls the size of the area at the edge of the viewport that triggers autoscrolling. The default value is 16 pixels.

    PySide.QtGui.QAbstractItemView. clearSelection ( )

    Deselects all selected items. The current index will not be changed.

    PySide.QtGui.QAbstractItemView. clicked ( index )
    参数: index PySide.QtCore.QModelIndex
    PySide.QtGui.QAbstractItemView. closeEditor ( editor , hint )
    参数:
    PySide.QtGui.QAbstractItemView. closePersistentEditor ( index )
    参数: index PySide.QtCore.QModelIndex

    Closes the persistent editor for the item at the given index .

    PySide.QtGui.QAbstractItemView. commitData ( editor )
    参数: editor PySide.QtGui.QWidget

    提交数据在 editor 到模型。

    PySide.QtGui.QAbstractItemView. currentChanged ( current , 上一 )
    参数:

    This slot is called when a new item becomes the current item. The previous current item is specified by the 上一 index, and the new item by the current index.

    If you want to know about changes to items see the PySide.QtGui.QAbstractItemView.dataChanged() 信号。

    PySide.QtGui.QAbstractItemView. currentIndex ( )
    返回类型: PySide.QtCore.QModelIndex

    Returns the model index of the current item.

    PySide.QtGui.QAbstractItemView. dataChanged ( topLeft , bottomRight )
    参数:

    This slot is called when items are changed in the model. The changed items are those from topLeft to bottomRight inclusive. If just one item is changed topLeft == bottomRight .

    PySide.QtGui.QAbstractItemView. defaultDropAction ( )
    返回类型: PySide.QtCore.Qt.DropAction

    This property holds the drop action that will be used by default in QAbstractItemView::drag().

    If the property is not set, the drop action is CopyAction when the supported actions support CopyAction.

    PySide.QtGui.QAbstractItemView. dirtyRegionOffset ( )
    返回类型: PySide.QtCore.QPoint

    Returns the offset of the dirty regions in the view.

    若使用 PySide.QtGui.QAbstractItemView.scrollDirtyRegion() and implement a PySide.QtGui.QAbstractScrollArea.paintEvent() in a subclass of PySide.QtGui.QAbstractItemView , you should translate the area given by the paint event with the offset returned from this function.

    PySide.QtGui.QAbstractItemView. doAutoScroll ( )
    PySide.QtGui.QAbstractItemView. doItemsLayout ( )

    This function is intended to lay out the items in the view. The default implementation just calls PySide.QtGui.QAbstractItemView.updateGeometries() and updates the viewport.

    PySide.QtGui.QAbstractItemView. doubleClicked ( index )
    参数: index PySide.QtCore.QModelIndex
    PySide.QtGui.QAbstractItemView. dragDropMode ( )
    返回类型: PySide.QtGui.QAbstractItemView.DragDropMode

    This property holds the drag and drop event the view will act upon.

    PySide.QtGui.QAbstractItemView. dragDropOverwriteMode ( )
    返回类型: PySide.QtCore.bool

    This property holds the view's drag and drop behavior.

    If its value is true , the selected data will overwrite the existing item data when dropped, while moving the data will clear the item. If its value is false , the selected data will be inserted as a new item when the data is dropped. When the data is moved, the item is removed as well.

    默认值为 false , as in the PySide.QtGui.QListView and PySide.QtGui.QTreeView subclasses. In the PySide.QtGui.QTableView subclass, on the other hand, the property has been set to true .

    Note: This is not intended to prevent overwriting of items. The model's implementation of flags() should do that by not returning Qt.ItemIsDropEnabled .

    PySide.QtGui.QAbstractItemView. dragEnabled ( )
    返回类型: PySide.QtCore.bool

    This property holds whether the view supports dragging of its own items.

    PySide.QtGui.QAbstractItemView. dropIndicatorPosition ( )
    返回类型: PySide.QtGui.QAbstractItemView.DropIndicatorPosition

    Returns the position of the drop indicator in relation to the closest item.

    PySide.QtGui.QAbstractItemView. edit ( index , trigger , event )
    参数:
    返回类型:

    PySide.QtCore.bool

    Starts editing the item at index , creating an editor if necessary, and returns true if the view's QAbstractItemView.State 现为 EditingState ;否则返回 false。

    The action that caused the editing process is described by trigger , and the associated event is specified by event .

    Editing can be forced by specifying the trigger to be QAbstractItemView.AllEditTriggers .

    PySide.QtGui.QAbstractItemView. edit ( index )
    参数: index PySide.QtCore.QModelIndex

    Starts editing the item corresponding to the given index 若它可编辑。

    Note that this function does not change the current index. Since the current index defines the next and previous items to edit, users may find that keyboard navigation does not work as expected. To provide consistent navigation behavior, call PySide.QtGui.QAbstractItemView.setCurrentIndex() before this function with the same model index.

    另请参阅

    QModelIndex.flags()

    PySide.QtGui.QAbstractItemView. editTriggers ( )
    返回类型: PySide.QtGui.QAbstractItemView.EditTriggers

    This property holds which actions will initiate item editing.

    This property is a selection of flags defined by QAbstractItemView.EditTrigger , combined using the OR operator. The view will only initiate the editing of an item if the action performed is set in this property.

    PySide.QtGui.QAbstractItemView. editorDestroyed ( editor )
    参数: editor PySide.QtCore.QObject

    This function is called when the given editor has been destroyed.

    PySide.QtGui.QAbstractItemView. entered ( index )
    参数: index PySide.QtCore.QModelIndex
    PySide.QtGui.QAbstractItemView. executeDelayedItemsLayout ( )

    Executes the scheduled layouts without waiting for the event processing to begin.

    PySide.QtGui.QAbstractItemView. hasAutoScroll ( )
    返回类型: PySide.QtCore.bool

    This property holds whether autoscrolling in drag move events is enabled.

    若此特性被设为 true (默认), PySide.QtGui.QAbstractItemView automatically scrolls the contents of the view if the user drags within 16 pixels of the viewport edge. If the current item changes, then the view will scroll automatically to ensure that the current item is fully visible.

    This property only works if the viewport accepts drops. Autoscroll is switched off by setting this property to false.

    PySide.QtGui.QAbstractItemView. horizontalOffset ( )
    返回类型: PySide.QtCore.int

    Returns the horizontal offset of the view.

    在基类中,这是纯虚函数。

    PySide.QtGui.QAbstractItemView. horizontalScrollMode ( )
    返回类型: PySide.QtGui.QAbstractItemView.ScrollMode

    This property holds how the view scrolls its contents in the horizontal direction.

    This property controls how the view scroll its contents horizontally. Scrolling can be done either per pixel or per item.

    PySide.QtGui.QAbstractItemView. horizontalScrollbarAction ( action )
    参数: action PySide.QtCore.int
    PySide.QtGui.QAbstractItemView. horizontalScrollbarValueChanged ( value )
    参数: value PySide.QtCore.int
    PySide.QtGui.QAbstractItemView. iconSize ( )
    返回类型: PySide.QtCore.QSize

    This property holds the size of items' icons.

    设置此特性将导致项被再次布局,当视图可见时。

    PySide.QtGui.QAbstractItemView. indexAt ( point )
    参数: point PySide.QtCore.QPoint
    返回类型: PySide.QtCore.QModelIndex

    Returns the model index of the item at the viewport coordinates point .

    在基类中,这是纯虚函数。

    PySide.QtGui.QAbstractItemView. indexWidget ( index )
    参数: index PySide.QtCore.QModelIndex
    返回类型: PySide.QtGui.QWidget

    返回用于项的 Widget 在给定 index .

    PySide.QtGui.QAbstractItemView. isIndexHidden ( index )
    参数: index PySide.QtCore.QModelIndex
    返回类型: PySide.QtCore.bool

    Returns true if the item referred to by the given index is hidden in the view, otherwise returns false.

    Hiding is a view specific feature. For example in TableView a column can be marked as hidden or a row in the TreeView.

    在基类中,这是纯虚函数。

    PySide.QtGui.QAbstractItemView. itemDelegate ( index )
    参数: index PySide.QtCore.QModelIndex
    返回类型: PySide.QtGui.QAbstractItemDelegate

    Returns the item delegate used by this view and model for the given index .

    PySide.QtGui.QAbstractItemView. itemDelegate ( )
    返回类型: PySide.QtGui.QAbstractItemDelegate

    Returns the item delegate used by this view and model. This is either one set with PySide.QtGui.QAbstractItemView.setItemDelegate() , or the default one.

    PySide.QtGui.QAbstractItemView. itemDelegateForColumn ( column )
    参数: column PySide.QtCore.int
    返回类型: PySide.QtGui.QAbstractItemDelegate

    Returns the item delegate used by this view and model for the given column . You can call PySide.QtGui.QAbstractItemView.itemDelegate() to get a pointer to the current delegate for a given index.

    PySide.QtGui.QAbstractItemView. itemDelegateForRow ( row )
    参数: row PySide.QtCore.int
    返回类型: PySide.QtGui.QAbstractItemDelegate

    Returns the item delegate used by this view and model for the given row , or 0 if no delegate has been assigned. You can call PySide.QtGui.QAbstractItemView.itemDelegate() to get a pointer to the current delegate for a given index.

    PySide.QtGui.QAbstractItemView. keyboardSearch ( search )
    参数: search – unicode

    Moves to and selects the item best matching the string search . If no item is found nothing happens.

    In the default implementation, the search is reset if search is empty, or the time interval since the last search has exceeded QApplication.keyboardInputInterval() .

    PySide.QtGui.QAbstractItemView. model ( )
    返回类型: PySide.QtCore.QAbstractItemModel

    Returns the model that this view is presenting.

    PySide.QtGui.QAbstractItemView. moveCursor ( cursorAction , modifiers )
    参数:
    返回类型:

    PySide.QtCore.QModelIndex

    PySide.QtGui.QAbstractItemView. openPersistentEditor ( index )
    参数: index PySide.QtCore.QModelIndex

    Opens a persistent editor on the item at the given index . If no editor exists, the delegate will create a new editor.

    PySide.QtGui.QAbstractItemView. pressed ( index )
    参数: index PySide.QtCore.QModelIndex
    PySide.QtGui.QAbstractItemView. reset ( )

    重置视图的内部状态。

    警告

    This function will reset open editors, scroll bar positions, selections, etc. Existing changes will not be committed. If you would like to save your changes when resetting the view, you can reimplement this function, commit your changes, and then call the superclass' implementation.

    PySide.QtGui.QAbstractItemView. rootIndex ( )
    返回类型: PySide.QtCore.QModelIndex

    Returns the model index of the model's root item. The root item is the parent item to the view's toplevel items. The root can be invalid.

    PySide.QtGui.QAbstractItemView. rowsAboutToBeRemoved ( parent , start , end )
    参数:

    This slot is called when rows are about to be removed. The deleted rows are those under the given parent from start to end 包含在内。

    PySide.QtGui.QAbstractItemView. rowsInserted ( parent , start , end )
    参数:

    This slot is called when rows are inserted. The new rows are those under the given parent from start to end inclusive. The base class implementation calls fetchMore() on the model to check for more data.

    PySide.QtGui.QAbstractItemView. scheduleDelayedItemsLayout ( )

    Schedules a layout of the items in the view to be executed when the event processing starts.

    Even if PySide.QtGui.QAbstractItemView.scheduleDelayedItemsLayout() is called multiple times before events are processed, the view will only do the layout once.

    PySide.QtGui.QAbstractItemView. scrollDirtyRegion ( dx , dy )
    参数:
    • dx PySide.QtCore.int
    • dy PySide.QtCore.int

    Prepares the view for scrolling by ( dx ,``dy`` ) pixels by moving the dirty regions in the opposite direction. You only need to call this function if you are implementing a scrolling viewport in your view subclass.

    若实现 PySide.QtGui.QAbstractScrollArea.scrollContentsBy() in a subclass of PySide.QtGui.QAbstractItemView , call this function before you call QWidget.scroll() on the viewport. Alternatively, just call PySide.QtGui.QAbstractItemView.update() .

    PySide.QtGui.QAbstractItemView. scrollTo ( index [ , hint=EnsureVisible ] )
    参数:

    Scrolls the view if necessary to ensure that the item at index is visible. The view will try to position the item according to the given hint .

    在基类中,这是纯虚函数。

    PySide.QtGui.QAbstractItemView. scrollToBottom ( )

    卷动视图到底部。

    PySide.QtGui.QAbstractItemView. scrollToTop ( )

    卷动视图到顶部。

    PySide.QtGui.QAbstractItemView. selectAll ( )

    Selects all items in the view. This function will use the selection behavior set on the view when selecting.

    PySide.QtGui.QAbstractItemView. selectedIndexes ( )
    返回类型: PySide.QtCore.QModelIndexList

    This convenience function returns a list of all selected and non-hidden item indexes in the view. The list contains no duplicates, and is not sorted.

    PySide.QtGui.QAbstractItemView. selectionBehavior ( )
    返回类型: PySide.QtGui.QAbstractItemView.SelectionBehavior

    This property holds which selection behavior the view uses.

    此特性保持是否按单项、单行或单列进行选择。

    另请参阅

    QAbstractItemView.SelectionMode QAbstractItemView.SelectionBehavior

    PySide.QtGui.QAbstractItemView. selectionChanged ( selected , deselected )
    参数:

    This slot is called when the selection is changed. The previous selection (which may be empty), is specified by deselected , and the new selection by selected .

    PySide.QtGui.QAbstractItemView. selectionCommand ( index [ , event=None ] )
    参数:
    返回类型:

    PySide.QtGui.QItemSelectionModel.SelectionFlags

    Returns the SelectionFlags to be used when updating a selection with to include the index specified. The event is a user input event, such as a mouse or keyboard event.

    Reimplement this function to define your own selection behavior.

    PySide.QtGui.QAbstractItemView. selectionMode ( )
    返回类型: PySide.QtGui.QAbstractItemView.SelectionMode

    This property holds which selection mode the view operates in.

    This property controls whether the user can select one or many items and, in many-item selections, whether the selection must be a continuous range of items.

    另请参阅

    QAbstractItemView.SelectionMode QAbstractItemView.SelectionBehavior

    PySide.QtGui.QAbstractItemView. selectionModel ( )
    返回类型: PySide.QtGui.QItemSelectionModel

    返回当前选定模型。

    PySide.QtGui.QAbstractItemView. setAlternatingRowColors ( enable )
    参数: enable PySide.QtCore.bool

    This property holds whether to draw the background using alternating colors.

    If this property is true, the item background will be drawn using QPalette.Base and QPalette.AlternateBase ;否则将绘制项背景使用 QPalette.Base 颜色。

    默认情况下,此特性为 false。

    PySide.QtGui.QAbstractItemView. setAutoScroll ( enable )
    参数: enable PySide.QtCore.bool

    This property holds whether autoscrolling in drag move events is enabled.

    若此特性被设为 true (默认), PySide.QtGui.QAbstractItemView automatically scrolls the contents of the view if the user drags within 16 pixels of the viewport edge. If the current item changes, then the view will scroll automatically to ensure that the current item is fully visible.

    This property only works if the viewport accepts drops. Autoscroll is switched off by setting this property to false.

    PySide.QtGui.QAbstractItemView. setAutoScrollMargin ( margin )
    参数: margin PySide.QtCore.int

    This property holds the size of the area when auto scrolling is triggered.

    This property controls the size of the area at the edge of the viewport that triggers autoscrolling. The default value is 16 pixels.

    PySide.QtGui.QAbstractItemView. setCurrentIndex ( index )
    参数: index PySide.QtCore.QModelIndex

    把当前项设为项在 index .

    除非当前选定方式为 NoSelection , the item is also be selected. Note that this function also updates the starting position for any new selections the user performs.

    要把项设为当前项而不选择它,调用

    selectionModel()->setCurrentIndex(index, QItemSelectionModel::NoUpdate);

    PySide.QtGui.QAbstractItemView. setDefaultDropAction ( dropAction )
    参数: dropAction PySide.QtCore.Qt.DropAction

    This property holds the drop action that will be used by default in QAbstractItemView::drag().

    If the property is not set, the drop action is CopyAction when the supported actions support CopyAction.

    PySide.QtGui.QAbstractItemView. setDirtyRegion ( region )
    参数: region PySide.QtGui.QRegion

    Marks the given region as dirty and schedules it to be updated. You only need to call this function if you are implementing your own view subclass.

    PySide.QtGui.QAbstractItemView. setDragDropMode ( behavior )
    参数: behavior PySide.QtGui.QAbstractItemView.DragDropMode

    This property holds the drag and drop event the view will act upon.

    PySide.QtGui.QAbstractItemView. setDragDropOverwriteMode ( overwrite )
    参数: overwrite PySide.QtCore.bool

    This property holds the view's drag and drop behavior.

    If its value is true , the selected data will overwrite the existing item data when dropped, while moving the data will clear the item. If its value is false , the selected data will be inserted as a new item when the data is dropped. When the data is moved, the item is removed as well.

    默认值为 false , as in the PySide.QtGui.QListView and PySide.QtGui.QTreeView subclasses. In the PySide.QtGui.QTableView subclass, on the other hand, the property has been set to true .

    Note: This is not intended to prevent overwriting of items. The model's implementation of flags() should do that by not returning Qt.ItemIsDropEnabled .

    PySide.QtGui.QAbstractItemView. setDragEnabled ( enable )
    参数: enable PySide.QtCore.bool

    This property holds whether the view supports dragging of its own items.

    PySide.QtGui.QAbstractItemView. setDropIndicatorShown ( enable )
    参数: enable PySide.QtCore.bool

    This property holds whether the drop indicator is shown when dragging items and dropping..

    PySide.QtGui.QAbstractItemView. setEditTriggers ( triggers )
    参数: triggers PySide.QtGui.QAbstractItemView.EditTriggers

    This property holds which actions will initiate item editing.

    This property is a selection of flags defined by QAbstractItemView.EditTrigger , combined using the OR operator. The view will only initiate the editing of an item if the action performed is set in this property.

    PySide.QtGui.QAbstractItemView. setHorizontalScrollMode ( mode )
    参数: mode PySide.QtGui.QAbstractItemView.ScrollMode

    This property holds how the view scrolls its contents in the horizontal direction.

    This property controls how the view scroll its contents horizontally. Scrolling can be done either per pixel or per item.

    PySide.QtGui.QAbstractItemView. setIconSize ( size )
    参数: size PySide.QtCore.QSize

    This property holds the size of items' icons.

    设置此特性将导致项被再次布局,当视图可见时。

    PySide.QtGui.QAbstractItemView. setIndexWidget ( index , widget )
    参数:

    设置给定 widget on the item at the given index , passing the ownership of the widget to the viewport.

    index is invalid (e.g., if you pass the root index), this function will do nothing.

    给定 widget ‘s autoFillBackground property must be set to true, otherwise the widget's background will be transparent, showing both the model data and the item at the given index .

    If index widget A is replaced with index widget B, index widget A will be deleted. For example, in the code snippet below, the PySide.QtGui.QLineEdit object will be deleted.

    setIndexWidget(index, QLineEdit())
    ...
    setIndexWidget(index, QTextEdit())
    											

    This function should only be used to display static content within the visible area corresponding to an item of data. If you want to display custom dynamic content or implement a custom editor widget, subclass PySide.QtGui.QItemDelegate 代替。

    PySide.QtGui.QAbstractItemView. setItemDelegate ( delegate )
    参数: delegate PySide.QtGui.QAbstractItemDelegate

    Sets the item delegate for this view and its model to delegate . This is useful if you want complete control over the editing and display of items.

    任何现有委托将被移除,但不被删除。 PySide.QtGui.QAbstractItemView 未拥有所有权对于 delegate .

    警告

    You should not share the same instance of a delegate between views. Doing so can cause incorrect or unintuitive editing behavior since each view connected to a given delegate may receive the PySide.QtGui.QAbstractItemDelegate.closeEditor() signal, and attempt to access, modify or close an editor that has already been closed.

    PySide.QtGui.QAbstractItemView. setItemDelegateForColumn ( column , delegate )
    参数:

    Sets the given item delegate used by this view and model for the given column . All items on column will be drawn and managed by delegate instead of using the default delegate (i.e., PySide.QtGui.QAbstractItemView.itemDelegate() ).

    Any existing column delegate for column will be removed, but not deleted. PySide.QtGui.QAbstractItemView 未拥有所有权对于 delegate .

    注意

    If a delegate has been assigned to both a row and a column, the row delegate will take precedence and manage the intersecting cell index.

    警告

    You should not share the same instance of a delegate between views. Doing so can cause incorrect or unintuitive editing behavior since each view connected to a given delegate may receive the PySide.QtGui.QAbstractItemDelegate.closeEditor() signal, and attempt to access, modify or close an editor that has already been closed.

    PySide.QtGui.QAbstractItemView. setItemDelegateForRow ( row , delegate )
    参数:

    Sets the given item delegate used by this view and model for the given row . All items on row will be drawn and managed by delegate instead of using the default delegate (i.e., PySide.QtGui.QAbstractItemView.itemDelegate() ).

    Any existing row delegate for row will be removed, but not deleted. PySide.QtGui.QAbstractItemView 未拥有所有权对于 delegate .

    注意

    If a delegate has been assigned to both a row and a column, the row delegate (i.e., this delegate) will take precedence and manage the intersecting cell index.

    警告

    You should not share the same instance of a delegate between views. Doing so can cause incorrect or unintuitive editing behavior since each view connected to a given delegate may receive the PySide.QtGui.QAbstractItemDelegate.closeEditor() signal, and attempt to access, modify or close an editor that has already been closed.

    PySide.QtGui.QAbstractItemView. setModel ( model )
    参数: model PySide.QtCore.QAbstractItemModel

    设置 model for the view to present.

    This function will create and set a new selection model, replacing any model that was previously set with PySide.QtGui.QAbstractItemView.setSelectionModel() . However, the old selection model will not be deleted as it may be shared between several views. We recommend that you delete the old selection model if it is no longer required. This is done with the following code:

    m = view->selectionModel()
    view->setModel(model())
    del m
    										

    If both the old model and the old selection model do not have parents, or if their parents are long-lived objects, it may be preferable to call their deleteLater() functions to explicitly delete them.

    The view does not take ownership of the model unless it is the model's parent object because the model may be shared between many different views.

    PySide.QtGui.QAbstractItemView. setRootIndex ( index )
    参数: index PySide.QtCore.QModelIndex

    Sets the root item to the item at the given index .

    PySide.QtGui.QAbstractItemView. setSelection ( rect , command )
    参数:
    PySide.QtGui.QAbstractItemView. setSelectionBehavior ( behavior )
    参数: behavior PySide.QtGui.QAbstractItemView.SelectionBehavior

    This property holds which selection behavior the view uses.

    此特性保持是否按单项、单行或单列进行选择。

    另请参阅

    QAbstractItemView.SelectionMode QAbstractItemView.SelectionBehavior

    PySide.QtGui.QAbstractItemView. setSelectionMode ( mode )
    参数: mode PySide.QtGui.QAbstractItemView.SelectionMode

    This property holds which selection mode the view operates in.

    This property controls whether the user can select one or many items and, in many-item selections, whether the selection must be a continuous range of items.

    另请参阅

    QAbstractItemView.SelectionMode QAbstractItemView.SelectionBehavior

    PySide.QtGui.QAbstractItemView. setSelectionModel ( selectionModel )
    参数: selectionModel PySide.QtGui.QItemSelectionModel

    Sets the current selection model to the given selectionModel .

    Note that, if you call PySide.QtGui.QAbstractItemView.setModel() after this function, the given selectionModel will be replaced by one created by the view.

    注意

    It is up to the application to delete the old selection model if it is no longer needed; i.e., if it is not being used by other views. This will happen automatically when its parent object is deleted. However, if it does not have a parent, or if the parent is a long-lived object, it may be preferable to call its deleteLater() function to explicitly delete it.

    PySide.QtGui.QAbstractItemView. setState ( state )
    参数: state PySide.QtGui.QAbstractItemView.State

    Sets the item view's state to the given state .

    PySide.QtGui.QAbstractItemView. setTabKeyNavigation ( enable )
    参数: enable PySide.QtCore.bool

    This property holds whether item navigation with tab and backtab is enabled..

    PySide.QtGui.QAbstractItemView. setTextElideMode ( mode )
    参数: mode PySide.QtCore.Qt.TextElideMode

    This property holds the position of the ”...” in elided text..

    The default value for all item views is Qt.ElideRight .

    PySide.QtGui.QAbstractItemView. setVerticalScrollMode ( mode )
    参数: mode PySide.QtGui.QAbstractItemView.ScrollMode

    This property holds how the view scrolls its contents in the vertical direction.

    This property controls how the view scroll its contents vertically. Scrolling can be done either per pixel or per item.

    PySide.QtGui.QAbstractItemView. showDropIndicator ( )
    返回类型: PySide.QtCore.bool

    This property holds whether the drop indicator is shown when dragging items and dropping..

    PySide.QtGui.QAbstractItemView. sizeHintForColumn ( column )
    参数: column PySide.QtCore.int
    返回类型: PySide.QtCore.int

    Returns the width size hint for the specified column or -1 if there is no model.

    This function is used in views with a horizontal header to find the size hint for a header section based on the contents of the given column .

    PySide.QtGui.QAbstractItemView. sizeHintForIndex ( index )
    参数: index PySide.QtCore.QModelIndex
    返回类型: PySide.QtCore.QSize

    Returns the size hint for the item with the specified index or an invalid size for invalid indexes.

    PySide.QtGui.QAbstractItemView. sizeHintForRow ( row )
    参数: row PySide.QtCore.int
    返回类型: PySide.QtCore.int

    Returns the height size hint for the specified row or -1 if there is no model.

    The returned height is calculated using the size hints of the given row ‘s items, i.e. the returned value is the maximum height among the items. Note that to control the height of a row, you must reimplement the QAbstractItemDelegate.sizeHint() 函数。

    This function is used in views with a vertical header to find the size hint for a header section based on the contents of the given row .

    PySide.QtGui.QAbstractItemView. startAutoScroll ( )
    PySide.QtGui.QAbstractItemView. startDrag ( supportedActions )
    参数: supportedActions PySide.QtCore.Qt.DropActions
    PySide.QtGui.QAbstractItemView. state ( )
    返回类型: PySide.QtGui.QAbstractItemView.State

    返回项视图的状态。

    PySide.QtGui.QAbstractItemView. stopAutoScroll ( )
    PySide.QtGui.QAbstractItemView. tabKeyNavigation ( )
    返回类型: PySide.QtCore.bool

    This property holds whether item navigation with tab and backtab is enabled..

    PySide.QtGui.QAbstractItemView. textElideMode ( )
    返回类型: PySide.QtCore.Qt.TextElideMode

    This property holds the position of the ”...” in elided text..

    The default value for all item views is Qt.ElideRight .

    PySide.QtGui.QAbstractItemView. update ( index )
    参数: index PySide.QtCore.QModelIndex

    Updates the area occupied by the given index .

    PySide.QtGui.QAbstractItemView. updateEditorData ( )

    Updates the data shown in the open editor widgets in the view.

    PySide.QtGui.QAbstractItemView. updateEditorGeometries ( )

    Updates the geometry of the open editor widgets in the view.

    PySide.QtGui.QAbstractItemView. updateGeometries ( )

    Updates the geometry of the child widgets of the view.

    PySide.QtGui.QAbstractItemView. verticalOffset ( )
    返回类型: PySide.QtCore.int

    返回视图的垂直偏移。

    在基类中,这是纯虚函数。

    PySide.QtGui.QAbstractItemView. verticalScrollMode ( )
    返回类型: PySide.QtGui.QAbstractItemView.ScrollMode

    This property holds how the view scrolls its contents in the vertical direction.

    This property controls how the view scroll its contents vertically. Scrolling can be done either per pixel or per item.

    PySide.QtGui.QAbstractItemView. verticalScrollbarAction ( action )
    参数: action PySide.QtCore.int
    PySide.QtGui.QAbstractItemView. verticalScrollbarValueChanged ( value )
    参数: value PySide.QtCore.int
    PySide.QtGui.QAbstractItemView. viewOptions ( )
    返回类型: PySide.QtGui.QStyleOptionViewItem

    返回 PySide.QtGui.QStyleOptionViewItem structure populated with the view's palette, font, state, alignments etc.

    PySide.QtGui.QAbstractItemView. viewportEntered ( )
    PySide.QtGui.QAbstractItemView. visualRect ( index )
    参数: index PySide.QtCore.QModelIndex
    返回类型: PySide.QtCore.QRect

    返回项所占据的视口矩形在 index .

    若项显示在多个区域,那么 visualRect 应返回包含索引的首要区域,而不是索引可能环绕、触摸或导致绘制的完整区域。

    在基类中,这是纯虚函数。

    PySide.QtGui.QAbstractItemView. visualRegionForSelection ( selection )
    参数: selection PySide.QtGui.QItemSelection
    返回类型: PySide.QtGui.QRegion

    返回来自项视口的区域在给定 selection .

    在基类中,这是纯虚函数。