First step in using HorizontalProxyModel to show selected row in properties table.
HorizontalProxyModel now inherits from QIdentityProxyModel which provides a more complete base implementation (maybe to much?) for now it seems to do what we want, forward relevant signals which the abstract base didn't. Issues: Properties table needs formatting and shows all rows as columns instead of values of a single row.
This commit is contained in:
parent
49f009bdf9
commit
3080523b0d
4 changed files with 16 additions and 7 deletions
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
|
||||
HorizontalProxyModel::HorizontalProxyModel(QObject *parent)
|
||||
: QAbstractProxyModel(parent)
|
||||
: QIdentityProxyModel(parent)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue