pyface.data_view.abstract_data_model module

Provides an AbstractDataModel ABC for Pyface data models.

This module provides an ABC for all data view data models. This specifies the API that the data view widgets expect, and which the underlying data is adapted to by the concrete implementations. Data models are intended to be toolkit-independent, and be able to adapt any approximately tabular or nested data structure to what the data view system expects.

class pyface.data_view.abstract_data_model.AbstractDataModel[source]

Bases: ABCHasStrictTraits

Abstract base class for Pyface data models.

The data model API is intended to provide a common API for hierarchical and tabular data. This class is concerned with the structure, type and values provided by the data, but not with how the data is presented.

Row and column indices are represented by sequences (usually lists) of integers, specifying the index at each level of the hierarchy. The root row and column are represented by empty lists.

Subclasses need to implement the get_column_count, can_have_children and get_row_count methods to return the number of columns in a particular row, as well as the hierarchical structure of the rows. Appropriate observers should be set up on the underlaying data so that the structure_changed event is fired when the values returned by these methods would change.

Subclasses also have to implement the get_value and get_value_type methods. These expect a row and column index, with root values treated specially: the root row corresponds to the values which will be displayed in the column headers of the view, and the root column corresponds to the values which will be displayed in the row headers of the view. The get_value returns an arbitrary Python object corresponding to the cell being viewed, and the get_value_type should return an instance of an AbstractValueType that adapts the raw value to the data channels that the data view expects (eg. text, color, icons, editable value, etc.). Implementations should ensure that the values_changed event fires whenever the data, or the way the data is presented, is updated.

If the data is to be editable then the subclass should override the set_value method. It should attempt to change the underlying data as a side-effect or raise DataViewSetError on failure (for example, setting an invalid value). If the underlying data structure cannot be listened to internally (such as a numpy array or Pandas data frame), set_value should also fire the values_changed event with appropriate values.

In the cases where the underlying data structure cannot be observed by the usual traits mechanisms, the end-user of the code may be responsible for ensuring that the structure_changed and values_changed events are fired appropriately.

index_manager = Instance(AbstractIndexManager)

The index manager that helps convert toolkit indices to data view indices. This should be an IntIndexManager for non-hierarchical data or a TupleIndexManager for hierarchical data.

structure_changed = Event()

Event fired when the structure of the data changes.

values_changed = Event()

Event fired when value changes without changes to structure. This should be set to a 4-tuple of (start_row_index, start_column_index, end_row_index, end_column_index) indicated the subset of data which changed. These end values are inclusive, unlike standard Python slicing notation.

abstract get_column_count()[source]

How many columns in the data view model.

Returns

column_count – The number of columns that the data view provides. This count should not include the row header.

Return type

non-negative int

abstract can_have_children(row)[source]

Whether or not a row can have child rows.

The root row should always return True.

Parameters

row (sequence of int) – The indices of the row as a sequence from root to leaf.

Returns

can_have_children – Whether or not the row can ever have child rows.

Return type

bool

abstract get_row_count(row)[source]

How many child rows the row currently has.

Parameters

row (sequence of int) – The indices of the row as a sequence from root to leaf.

Returns

row_count – The number of child rows that the row has.

Return type

non-negative int

abstract get_value(row, column)[source]

Return the Python value for the row and column.

The values for column headers are returned by calling this method with row equal to (). The values for row headers are returned by calling this method with column equal to ().

Parameters
  • row (sequence of int) – The indices of the row as a sequence from root to leaf.

  • column (sequence of int) – The indices of the column as a sequence of length 0 or 1.

Returns

value – The value represented by the given row and column.

Return type

Any

Raises

DataViewGetError – If the value cannot be accessed in an expected way. If this is raised then the error will be ignored and not logged by the data view infrastructure.

can_set_value(row, column)[source]

Whether the value in the indicated row and column can be set.

The default method assumes the data is read-only and always returns False.

Whether or a column header can be set is returned by calling this method with row equal to (). Whether or a row header can be set is returned by calling this method with column equal to ().

Parameters
  • row (sequence of int) – The indices of the row as a sequence from root to leaf.

  • column (sequence of int) – The indices of the column as a sequence of length 0 or 1.

Returns

can_set_value – Whether or not the value can be set.

Return type

bool

set_value(row, column, value)[source]

Set the Python value for the row and column.

The default method assumes the data is read-only and always returns False.

The values for column headers can be set by calling this method with row equal to (). The values for row headers can be set by calling this method with column equal to ().

Parameters
  • row (sequence of int) – The indices of the row as a sequence from root to leaf.

  • column (sequence of int) – The indices of the column as a sequence of length 0 or 1.

  • value (Any) – The new value for the given row and column.

Raises

DataViewSetError – If the value cannot be set.

abstract get_value_type(row, column)[source]

Return the value type of the given row and column.

The value type for column headers are returned by calling this method with row equal to (). The value types for row headers are returned by calling this method with column equal to ().

Parameters
  • row (sequence of int) – The indices of the row as a sequence from root to leaf.

  • column (sequence of int) – The indices of the column as a sequence of length 0 or 1.

Returns

value_type – The value type of the given row and column, or None if no value should be displayed.

Return type

AbstractValueType or None

is_row_valid(row)[source]

Return whether or not the given row index refers to a valid row.

A row index is valid if every value in the tuple is between 0 and the number of child rows of the parent.

Parameters

row (sequence of int) – The row to check as indices of the row from root to leaf.

Returns

valid – Whether or not the row index is valid.

Return type

bool

is_column_valid(column)[source]

Return whether or not the given column index refers to a valid column.

A column index is valid if it is the root, or the value is between 0 and the number of columns in the model.

Parameters

column (sequence of int) – The column to check.

Returns

valid – Whether or not the column index is valid.

Return type

bool

iter_rows(start_row=())[source]

Iterator that yields rows in preorder.

Parameters

start_row (sequence of int) – The row to start at. The iterator will yeild the row and all descendant rows.

Yields

row_index (sequence of int) – The current row index.

iter_items(start_row=())[source]

Iterator that yields rows and columns in preorder.

This yields pairs of row, column for all rows in preorder and and all column indices for all rows, including (). Columns are iterated in order.

Parameters

start_row (sequence of int) – The row to start iteration from.

Yields

row_index, column_index – The current row and column indices.