
If anyone thinks to breaks their preferred order, please read http://xkcd.com/1172/ This closes #112.
71 lines
2.2 KiB
C++
71 lines
2.2 KiB
C++
#include "deviceview.h"
|
|
#include "methodwidget.h"
|
|
#include "devicemodel.h"
|
|
#include <QHeaderView>
|
|
#include <QStyledItemDelegate>
|
|
#include <QSortFilterProxyModel>
|
|
#include <QDebug>
|
|
|
|
class MethodDelegate : public QStyledItemDelegate {
|
|
public:
|
|
MethodDelegate( QWidget *parent = 0 );
|
|
|
|
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
};
|
|
|
|
DeviceView::DeviceView(QWidget *parent)
|
|
: QTableView(parent)
|
|
{
|
|
setAlternatingRowColors( true );
|
|
setShowGrid( false );
|
|
setSelectionBehavior( QAbstractItemView::SelectRows );
|
|
setSelectionMode( QAbstractItemView::SingleSelection );
|
|
horizontalHeader()->setStretchLastSection( true );
|
|
verticalHeader()->hide();
|
|
setItemDelegate(new MethodDelegate(this));
|
|
}
|
|
|
|
void DeviceView::setModel ( QAbstractItemModel * model ) {
|
|
QTableView::setModel( model );
|
|
rowsUpdated(QModelIndex(), 0, model->rowCount()-1);
|
|
connect( model, SIGNAL(rowsInserted(const QModelIndex &, int, int)), this, SLOT(rowsUpdated(const QModelIndex &, int, int)) );
|
|
connect( model, SIGNAL(rowsRemoved(const QModelIndex &, int, int)), this, SLOT(rowsUpdated(const QModelIndex &, int, int)) );
|
|
}
|
|
|
|
void DeviceView::rowsUpdated ( const QModelIndex & /*parent*/, int start, int end ) {
|
|
QSortFilterProxyModel *model = qobject_cast<QSortFilterProxyModel*>( this->model() );
|
|
if (!model) {
|
|
return;
|
|
}
|
|
|
|
if (end >= model->rowCount()) {
|
|
end = model->rowCount() - 1;
|
|
}
|
|
|
|
for (int i = start; i <= end; ++i) {
|
|
QModelIndex index = model->index( i, 2, QModelIndex() );
|
|
this->openPersistentEditor(index);
|
|
}
|
|
}
|
|
|
|
MethodDelegate::MethodDelegate( QWidget *parent )
|
|
:QStyledItemDelegate(parent)
|
|
{}
|
|
|
|
QWidget *MethodDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem & /* option */, const QModelIndex &index) const {
|
|
DeviceView *p = qobject_cast<DeviceView *>(this->parent());
|
|
if (!p) {
|
|
return 0;
|
|
}
|
|
QSortFilterProxyModel *sModel = qobject_cast<QSortFilterProxyModel*>( p->model() );
|
|
if (!sModel) {
|
|
return 0;
|
|
}
|
|
|
|
DeviceModel *model = qobject_cast<DeviceModel*>( sModel->sourceModel() );
|
|
if (!model) {
|
|
return 0;
|
|
}
|
|
MethodWidget *widget = new MethodWidget(model->device(sModel->mapToSource(index)), parent);
|
|
return widget;
|
|
}
|