| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441 | 
							- /*=========================================================================
 
-   Library:   CTK
 
-   Copyright (c) Kitware Inc.
 
-   Licensed under the Apache License, Version 2.0 (the "License");
 
-   you may not use this file except in compliance with the License.
 
-   You may obtain a copy of the License at
 
-       http://www.commontk.org/LICENSE
 
-   Unless required by applicable law or agreed to in writing, software
 
-   distributed under the License is distributed on an "AS IS" BASIS,
 
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
-   See the License for the specific language governing permissions and
 
-   limitations under the License.
 
- =========================================================================*/
 
- // CTK includes
 
- #include "ctkMatrixWidget.h"
 
- // Qt includes
 
- #include <QDebug>
 
- #include <QDoubleSpinBox>
 
- #include <QHBoxLayout>
 
- #include <QHeaderView>
 
- #include <QItemEditorFactory>
 
- #include <QResizeEvent>
 
- #include <QStyledItemDelegate>
 
- #include <QTableWidget>
 
- #include <QTableWidgetItem>
 
- #include <QVariant>
 
- #include <Qt>
 
- //-----------------------------------------------------------------------------
 
- // Custom item editors
 
- namespace
 
- {
 
- //-----------------------------------------------------------------------------
 
-   class ctkMatrixDoubleSpinBox : public QDoubleSpinBox
 
-   {
 
-   public:
 
-     ctkMatrixDoubleSpinBox(QWidget * parentWidget)
 
-       : QDoubleSpinBox(parentWidget)
 
-     {
 
-       // We know that the parentWidget() of parentWidget will be a
 
-       // ctkMatrixWidget because this object is
 
-       // created by the QItemEditorFactory
 
-       ctkMatrixWidget* matrixWidget =
 
-         qobject_cast<ctkMatrixWidget*>(parentWidget->parentWidget()->parent());
 
-       Q_ASSERT(matrixWidget);
 
-       this->setMinimum(matrixWidget->minimum());
 
-       this->setMaximum(matrixWidget->maximum());
 
-       this->setDecimals(matrixWidget->decimals());
 
-       this->setSingleStep(matrixWidget->singleStep());
 
-     }
 
-   };
 
- }
 
- //-----------------------------------------------------------------------------
 
- class ctkMatrixWidgetPrivate
 
- {
 
-   Q_DECLARE_PUBLIC(ctkMatrixWidget);
 
- protected:
 
-   ctkMatrixWidget* const q_ptr;
 
- public:
 
-   ctkMatrixWidgetPrivate(ctkMatrixWidget& object, int rows = 4, int columns = 4);
 
-   void init();
 
-   void validateItems();
 
-   void updateGeometries();
 
-   void setIdentityItem(int i, int j);
 
-   QTableWidget* Table;
 
-   // Parameters for the spinbox used to change the value of matrix elements
 
-   double Minimum;
 
-   double Maximum;
 
-   int    Decimals;
 
-   double SingleStep;
 
- };
 
- //-----------------------------------------------------------------------------
 
- ctkMatrixWidgetPrivate::ctkMatrixWidgetPrivate(ctkMatrixWidget& object, int rows, int columns)
 
-   :q_ptr(&object)
 
- {
 
-   this->Table = new QTableWidget(rows, columns);
 
- }
 
- //-----------------------------------------------------------------------------
 
- void ctkMatrixWidgetPrivate::init()
 
- {
 
-   Q_Q(ctkMatrixWidget);
 
-   this->Table->setParent(q);
 
-   QHBoxLayout* layout = new QHBoxLayout(q);
 
-   layout->addWidget(this->Table);
 
-   layout->setContentsMargins(0,0,0,0);
 
-   q->setLayout(layout);
 
-   // Set parameters for the spinbox
 
-   // TODO: not sure [-100. 100.] is the right default range
 
-   this->Minimum = -100;
 
-   this->Maximum = 100;
 
-   this->Decimals = 2;
 
-   this->SingleStep = 0.01;
 
-   // Don't select the items
 
-   this->Table->setSelectionMode(QAbstractItemView::NoSelection);
 
-   // Hide headers
 
-   this->Table->verticalHeader()->hide();
 
-   this->Table->horizontalHeader()->hide();
 
-   // Disable scrollBars
 
-   this->Table->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
 
-   this->Table->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
 
-   // Don't expand for no reason
 
-   q->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
 
-   // Disable the frame by default
 
-   this->Table->setFrameStyle(QFrame::NoFrame);
 
-   // Register custom editors
 
-   QItemEditorFactory *editorFactory = new QItemEditorFactory;
 
-   editorFactory->registerEditor(QVariant::Double, new QStandardItemEditorCreator<ctkMatrixDoubleSpinBox>);
 
-   QStyledItemDelegate* defaultItemDelegate =
 
-     qobject_cast<QStyledItemDelegate*>(this->Table->itemDelegate());
 
-   Q_ASSERT(defaultItemDelegate);
 
-   defaultItemDelegate->setItemEditorFactory(editorFactory);
 
-   // Define prototype item
 
-   QTableWidgetItem* _item = new QTableWidgetItem;
 
-   _item->setData(Qt::DisplayRole, QVariant(0.0));
 
-   _item->setTextAlignment(Qt::AlignCenter);
 
-   // The table takes ownership of the prototype.
 
-   this->Table->setItemPrototype(_item);
 
-   QObject::connect(this->Table, SIGNAL(cellChanged(int, int)),
 
-                    q, SIGNAL(matrixChanged()));
 
-   /// \todo Wrap model signals to emit signals when the matrix is changed.
 
- /// Right now you can connect to the signal:
 
- /// matrixWidget->model()->dataChanged(...)
 
-   // Set Read-only
 
-   q->setEditable(true);
 
-   // Initialize
 
-   this->validateItems();
 
-   this->updateGeometries();
 
- }
 
- // --------------------------------------------------------------------------
 
- void ctkMatrixWidgetPrivate::validateItems()
 
- {
 
-   Q_Q(ctkMatrixWidget);
 
-   for (int i=0; i < q->rowCount(); ++i)
 
-     {
 
-     for (int j=0; j < q->columnCount(); ++j)
 
-       {
 
-       QTableWidgetItem* item = this->Table->item(i, j);
 
-       if (!item)
 
-         {
 
-         this->Table->setItem(i, j , this->Table->itemPrototype()->clone());
 
-         this->setIdentityItem(i, j);
 
-         }
 
-       else
 
-         {
 
-         double value = item->data(Qt::DisplayRole).toDouble();
 
-         item->setData(Qt::DisplayRole,
 
-                       qBound(this->Minimum, value, this->Maximum));
 
-         }
 
-       }
 
-     }
 
- }
 
- // --------------------------------------------------------------------------
 
- void ctkMatrixWidgetPrivate::setIdentityItem(int i, int j)
 
- {
 
-   Q_Q(ctkMatrixWidget);
 
-   // the item must exist first
 
-   Q_ASSERT(this->Table->item(i, j));
 
-   // identity matrix has 1 on the diagonal, 0 everywhere else
 
-   double value = (i == j ? 1. : 0.);
 
-   // set the value to the table
 
-   q->setValue(i, j, value);
 
- }
 
- // --------------------------------------------------------------------------
 
- void ctkMatrixWidgetPrivate::updateGeometries()
 
- {
 
-   Q_Q(ctkMatrixWidget);
 
-   QSize viewportSize = q->size();
 
-   // columns
 
-   const int ccount = q->columnCount();
 
-   int colWidth = viewportSize.width() / ccount;
 
-   int lastColWidth = colWidth
 
-     + (viewportSize.width() - colWidth * ccount);
 
-   for (int j=0; j < ccount; j++)
 
-     {
 
-     bool lastColumn = (j==(ccount-1));
 
-     int newWidth = lastColumn ? lastColWidth : colWidth;
 
-     this->Table->setColumnWidth(j, newWidth);
 
-     Q_ASSERT(this->Table->columnWidth(j) == newWidth);
 
-     }
 
-   // rows
 
-   const int rcount = q->rowCount();
 
-   int rowHeight = viewportSize.height() / rcount;
 
-   int lastRowHeight = rowHeight + (viewportSize.height() - rowHeight * rcount);
 
-   for (int i=0; i < rcount; i++)
 
-     {
 
-     bool lastRow = (i==(rcount-1));
 
-     int newHeight = lastRow ? lastRowHeight : rowHeight;
 
-     this->Table->setRowHeight(i, newHeight);
 
-     Q_ASSERT(this->Table->rowHeight(i) == newHeight);
 
-     }
 
-   this->Table->updateGeometry();
 
- }
 
- // --------------------------------------------------------------------------
 
- ctkMatrixWidget::ctkMatrixWidget(QWidget* _parent)
 
-   :Superclass(_parent)
 
-   ,d_ptr(new ctkMatrixWidgetPrivate(*this))
 
- {
 
-   Q_D(ctkMatrixWidget);
 
-   d->init();
 
- }
 
- // --------------------------------------------------------------------------
 
- ctkMatrixWidget::ctkMatrixWidget(int rows, int columns, QWidget* _parent)
 
-   : QWidget(_parent)
 
-   , d_ptr(new ctkMatrixWidgetPrivate(*this, rows, columns))
 
- {
 
-   Q_D(ctkMatrixWidget);
 
-   d->init();
 
- }
 
- // --------------------------------------------------------------------------
 
- ctkMatrixWidget::ctkMatrixWidget(ctkMatrixWidgetPrivate& pvt,
 
-                                  QWidget* _parent)
 
-   : Superclass(_parent)
 
-   ,d_ptr(&pvt)
 
- {
 
-   Q_D(ctkMatrixWidget);
 
-   d->init();
 
- }
 
- // --------------------------------------------------------------------------
 
- ctkMatrixWidget::~ctkMatrixWidget()
 
- {
 
- }
 
- // --------------------------------------------------------------------------
 
- int ctkMatrixWidget::columnCount()const
 
- {
 
-   Q_D(const ctkMatrixWidget);
 
-   return d->Table->columnCount();
 
- }
 
- // --------------------------------------------------------------------------
 
- void ctkMatrixWidget::setColumnCount(int rc)
 
- {
 
-   Q_D(ctkMatrixWidget);
 
-   d->Table->setColumnCount(rc);
 
-   d->validateItems();
 
-   d->updateGeometries();
 
- }
 
- // --------------------------------------------------------------------------
 
- int ctkMatrixWidget::rowCount()const
 
- {
 
-   Q_D(const ctkMatrixWidget);
 
-   return d->Table->rowCount();
 
- }
 
- // --------------------------------------------------------------------------
 
- void ctkMatrixWidget::setRowCount(int rc)
 
- {
 
-   Q_D(ctkMatrixWidget);
 
-   d->Table->setRowCount(rc);
 
-   d->validateItems();
 
-   d->updateGeometries();
 
- }
 
- // --------------------------------------------------------------------------
 
- bool ctkMatrixWidget::isEditable()const
 
- {
 
-   Q_D(const ctkMatrixWidget);
 
-   return d->Table->editTriggers();
 
- }
 
- // --------------------------------------------------------------------------
 
- void ctkMatrixWidget::setEditable(bool newEditable)
 
- {
 
-   Q_D(ctkMatrixWidget);
 
-   d->Table->setEditTriggers(
 
-     newEditable ? QTableWidget::DoubleClicked : QTableWidget::NoEditTriggers);
 
- }
 
- // --------------------------------------------------------------------------
 
- CTK_GET_CPP(ctkMatrixWidget, double, minimum, Minimum);
 
- CTK_GET_CPP(ctkMatrixWidget, double, maximum, Maximum);
 
- CTK_GET_CPP(ctkMatrixWidget, double, singleStep, SingleStep);
 
- CTK_SET_CPP(ctkMatrixWidget, double, setSingleStep, SingleStep);
 
- CTK_GET_CPP(ctkMatrixWidget, int, decimals, Decimals);
 
- // --------------------------------------------------------------------------
 
- void ctkMatrixWidget::setMinimum(double newMinimum)
 
- {
 
-   Q_D(ctkMatrixWidget);
 
-   d->Minimum = newMinimum;
 
-   d->Maximum = qMax(newMinimum, d->Maximum);
 
-   d->validateItems();
 
- }
 
- // --------------------------------------------------------------------------
 
- void ctkMatrixWidget::setMaximum(double newMaximum)
 
- {
 
-   Q_D(ctkMatrixWidget);
 
-   d->Minimum = qMin(d->Minimum, newMaximum);
 
-   d->Maximum = newMaximum;
 
-   d->validateItems();
 
- }
 
- // --------------------------------------------------------------------------
 
- void ctkMatrixWidget::setRange(double newMinimum, double newMaximum)
 
- {
 
-   Q_D(ctkMatrixWidget);
 
-   d->Minimum = qMin(newMinimum, newMaximum);
 
-   d->Maximum = qMax(newMinimum, newMaximum);
 
-   d->validateItems();
 
- }
 
- // --------------------------------------------------------------------------
 
- void ctkMatrixWidget::setDecimals(int decimals)
 
- {
 
-   Q_D(ctkMatrixWidget);
 
-   d->Decimals = qMax(0, decimals);
 
- }
 
- // --------------------------------------------------------------------------
 
- QSize ctkMatrixWidget::minimumSizeHint() const
 
- {
 
-   Q_D(const ctkMatrixWidget);
 
-   int maxWidth = d->Table->horizontalHeader()->sectionSizeHint(0);
 
-   for (int j = 1; j < this->columnCount(); ++j)
 
-     {
 
-     maxWidth = qMax(maxWidth, d->Table->horizontalHeader()->sectionSizeHint(j));
 
-     }
 
-   int maxHeight = d->Table->verticalHeader()->sectionSizeHint(0);
 
-   for (int i = 1; i < this->rowCount(); ++i)
 
-     {
 
-     maxHeight = qMax(maxHeight, d->Table->verticalHeader()->sectionSizeHint(i));
 
-     }
 
-   return QSize(maxWidth*this->columnCount(), maxHeight*this->rowCount());
 
- }
 
- // --------------------------------------------------------------------------
 
- QSize ctkMatrixWidget::sizeHint() const
 
- {
 
-   return this->minimumSizeHint();
 
- }
 
- // --------------------------------------------------------------------------
 
- void ctkMatrixWidget::resizeEvent(QResizeEvent* event)
 
- {
 
-   Q_D(ctkMatrixWidget);
 
-   this->Superclass::resizeEvent(event);
 
-   d->updateGeometries();
 
- }
 
- // --------------------------------------------------------------------------
 
- void ctkMatrixWidget::identity()
 
- {
 
-   Q_D(ctkMatrixWidget);
 
-   // Initialize 4x4 matrix
 
-   for (int i=0; i < this->rowCount(); i++)
 
-     {
 
-     for (int j=0; j < this->columnCount(); j++)
 
-       {
 
-       d->setIdentityItem(i,j);
 
-       }
 
-     }
 
- }
 
- // --------------------------------------------------------------------------
 
- double ctkMatrixWidget::value(int i, int j)const
 
- {
 
-   Q_D(const ctkMatrixWidget);
 
-   Q_ASSERT( i>=0 && i<this->rowCount() &&
 
-             j>=0 && j<this->columnCount());
 
-   return d->Table->item(i, j)->data(Qt::DisplayRole).toDouble();
 
- }
 
- // --------------------------------------------------------------------------
 
- void ctkMatrixWidget::setValue(int i, int j, double _value)
 
- {
 
-   Q_D(ctkMatrixWidget);
 
-   Q_ASSERT( i>=0 && i<this->rowCount() &&
 
-             j>=0 && j<this->columnCount());
 
-   d->Table->item(i, j)->setData(Qt::DisplayRole,
 
-                                 QVariant(qBound(d->Minimum, _value, d->Maximum)));
 
- }
 
- // --------------------------------------------------------------------------
 
- void ctkMatrixWidget::setVector(const QVector<double> & vector)
 
- {
 
-   Q_D(ctkMatrixWidget);
 
-   bool blocked = this->blockSignals(true);
 
-   bool modified = false;
 
-   for (int i=0; i < this->rowCount(); i++)
 
-     {
 
-     for (int j=0; j < this->columnCount(); j++)
 
-       {
 
-       double value = qBound(d->Minimum,
 
-                             vector.at(i * this->columnCount() + j),
 
-                             d->Maximum);
 
-       double oldValue = d->Table->item(i,j)->data(Qt::DisplayRole).toDouble();
 
-       d->Table->item(i,j)->setData(Qt::DisplayRole, QVariant(value));
 
-       if (oldValue != value)
 
-         {
 
-         modified = true;
 
-         }
 
-       }
 
-     }
 
-   this->blockSignals(blocked);
 
-   if (modified)
 
-     {
 
-     this->emit matrixChanged();
 
-     }
 
- }
 
 
  |