2013-04-27 15:27:27 +00:00
|
|
|
#include "modeldelegates.h"
|
|
|
|
#include "../dive.h"
|
|
|
|
#include "../divelist.h"
|
|
|
|
#include "starwidget.h"
|
|
|
|
#include "models.h"
|
2013-08-30 10:14:30 +00:00
|
|
|
#include "diveplanner.h"
|
2013-09-27 15:52:01 +00:00
|
|
|
#include "simplewidgets.h"
|
2013-04-27 15:27:27 +00:00
|
|
|
|
|
|
|
#include <QtDebug>
|
|
|
|
#include <QPainter>
|
2013-04-28 11:45:22 +00:00
|
|
|
#include <QSortFilterProxyModel>
|
2013-05-02 22:27:36 +00:00
|
|
|
#include <QStyle>
|
|
|
|
#include <QStyleOption>
|
2013-05-22 17:11:49 +00:00
|
|
|
#include <QComboBox>
|
2013-05-23 18:33:20 +00:00
|
|
|
#include <QCompleter>
|
|
|
|
#include <QLineEdit>
|
2013-07-16 18:31:44 +00:00
|
|
|
#include <QKeyEvent>
|
|
|
|
#include <QAbstractItemView>
|
2013-08-30 10:14:30 +00:00
|
|
|
#include <QStringListModel>
|
2013-09-27 15:52:01 +00:00
|
|
|
#include <QApplication>
|
2013-05-02 22:27:36 +00:00
|
|
|
|
2013-07-18 13:24:02 +00:00
|
|
|
// Gets the index of the model in the currentRow and column.
|
|
|
|
// currCombo is defined below.
|
|
|
|
#define IDX( XX ) mymodel->index(currCombo.currRow, XX)
|
2013-10-15 16:45:24 +00:00
|
|
|
static bool keyboardFinished = false;
|
2013-07-18 13:24:02 +00:00
|
|
|
|
2013-05-02 22:27:36 +00:00
|
|
|
StarWidgetsDelegate::StarWidgetsDelegate(QWidget* parent):
|
|
|
|
QStyledItemDelegate(parent),
|
|
|
|
parentWidget(parent)
|
|
|
|
{
|
|
|
|
}
|
2013-04-27 15:27:27 +00:00
|
|
|
|
|
|
|
void StarWidgetsDelegate::paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const
|
|
|
|
{
|
2013-05-02 22:27:36 +00:00
|
|
|
QStyledItemDelegate::paint(painter, option, index);
|
2013-05-02 05:00:08 +00:00
|
|
|
if (!index.isValid())
|
2013-04-27 15:27:27 +00:00
|
|
|
return;
|
|
|
|
|
2013-06-17 21:59:50 +00:00
|
|
|
QVariant value = index.model()->data(index, DiveTripModel::STAR_ROLE);
|
2013-05-02 05:00:08 +00:00
|
|
|
if (!value.isValid())
|
2013-05-02 02:51:34 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
int rating = value.toInt();
|
2013-04-27 15:27:27 +00:00
|
|
|
painter->save();
|
|
|
|
painter->setRenderHint(QPainter::Antialiasing, true);
|
|
|
|
for(int i = 0; i < rating; i++)
|
|
|
|
painter->drawPixmap(option.rect.x() + i * IMG_SIZE + SPACING, option.rect.y(), StarWidget::starActive());
|
|
|
|
for(int i = rating; i < TOTALSTARS; i++)
|
|
|
|
painter->drawPixmap(option.rect.x() + i * IMG_SIZE + SPACING, option.rect.y(), StarWidget::starInactive());
|
|
|
|
painter->restore();
|
|
|
|
}
|
|
|
|
|
|
|
|
QSize StarWidgetsDelegate::sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const
|
|
|
|
{
|
|
|
|
return QSize(IMG_SIZE * TOTALSTARS + SPACING * (TOTALSTARS-1), IMG_SIZE);
|
|
|
|
}
|
2013-05-22 17:11:49 +00:00
|
|
|
|
2013-06-16 13:15:19 +00:00
|
|
|
ComboBoxDelegate::ComboBoxDelegate(QAbstractItemModel *model, QObject* parent): QStyledItemDelegate(parent), model(model)
|
2013-05-22 17:11:49 +00:00
|
|
|
{
|
2013-07-18 14:53:47 +00:00
|
|
|
connect(this, SIGNAL(closeEditor(QWidget*,QAbstractItemDelegate::EndEditHint)),
|
|
|
|
this, SLOT(revertModelData(QWidget*, QAbstractItemDelegate::EndEditHint)));
|
2013-05-22 17:11:49 +00:00
|
|
|
}
|
|
|
|
|
2013-06-16 13:15:19 +00:00
|
|
|
void ComboBoxDelegate::setEditorData(QWidget* editor, const QModelIndex& index) const
|
2013-05-23 18:33:20 +00:00
|
|
|
{
|
|
|
|
QComboBox *c = qobject_cast<QComboBox*>(editor);
|
|
|
|
QString data = index.model()->data(index, Qt::DisplayRole).toString();
|
|
|
|
int i = c->findText(data);
|
|
|
|
if (i != -1)
|
|
|
|
c->setCurrentIndex(i);
|
|
|
|
else
|
|
|
|
c->setEditText(data);
|
|
|
|
}
|
|
|
|
|
2013-07-16 22:13:58 +00:00
|
|
|
struct CurrSelected{
|
|
|
|
QComboBox *comboEditor;
|
|
|
|
int currRow;
|
|
|
|
QString activeText;
|
|
|
|
QAbstractItemModel *model;
|
Make the Qt ComboBox behave in a Better Way
So, the ComboBox is a beast, and when used on a Delegate
it's very hard to get things right, wich is a pitty, because
I overly like qt. So:
1 - Combobox needs to show the popup when user press ↓ and ↑ keys
2 - Combobox needs to select when user press enter, not twice.
3 - Combobox neesds to select when user selects from the mouse, not
pressing enter after.
4 - Combobox needs to not mess with stuff when moving around.
Everything that I listed there works on a non-delegate combobox,
but for some reason, a delegate missed those, so I reimplemented
all. not nice, but now we have a code that will work, I hope.
*fingers crossed*
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
2013-09-25 19:37:24 +00:00
|
|
|
bool ignoreSelection;
|
2013-07-16 22:13:58 +00:00
|
|
|
} currCombo;
|
|
|
|
|
2013-06-16 13:15:19 +00:00
|
|
|
QWidget* ComboBoxDelegate::createEditor(QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const
|
|
|
|
{
|
|
|
|
QComboBox *comboDelegate = new QComboBox(parent);
|
|
|
|
comboDelegate->setModel(model);
|
|
|
|
comboDelegate->setEditable(true);
|
|
|
|
comboDelegate->setAutoCompletion(true);
|
|
|
|
comboDelegate->setAutoCompletionCaseSensitivity(Qt::CaseInsensitive);
|
|
|
|
comboDelegate->completer()->setCompletionMode(QCompleter::PopupCompletion);
|
Make the Qt ComboBox behave in a Better Way
So, the ComboBox is a beast, and when used on a Delegate
it's very hard to get things right, wich is a pitty, because
I overly like qt. So:
1 - Combobox needs to show the popup when user press ↓ and ↑ keys
2 - Combobox needs to select when user press enter, not twice.
3 - Combobox neesds to select when user selects from the mouse, not
pressing enter after.
4 - Combobox needs to not mess with stuff when moving around.
Everything that I listed there works on a non-delegate combobox,
but for some reason, a delegate missed those, so I reimplemented
all. not nice, but now we have a code that will work, I hope.
*fingers crossed*
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
2013-09-25 19:37:24 +00:00
|
|
|
comboDelegate->view()->setEditTriggers(QAbstractItemView::AllEditTriggers);
|
2013-07-16 18:31:44 +00:00
|
|
|
comboDelegate->lineEdit()->installEventFilter( const_cast<QObject*>(qobject_cast<const QObject*>(this)));
|
2013-07-17 14:47:23 +00:00
|
|
|
comboDelegate->view()->installEventFilter( const_cast<QObject*>(qobject_cast<const QObject*>(this)));
|
2013-07-16 22:13:58 +00:00
|
|
|
connect(comboDelegate, SIGNAL(highlighted(QString)), this, SLOT(testActivation(QString)));
|
Make the Qt ComboBox behave in a Better Way
So, the ComboBox is a beast, and when used on a Delegate
it's very hard to get things right, wich is a pitty, because
I overly like qt. So:
1 - Combobox needs to show the popup when user press ↓ and ↑ keys
2 - Combobox needs to select when user press enter, not twice.
3 - Combobox neesds to select when user selects from the mouse, not
pressing enter after.
4 - Combobox needs to not mess with stuff when moving around.
Everything that I listed there works on a non-delegate combobox,
but for some reason, a delegate missed those, so I reimplemented
all. not nice, but now we have a code that will work, I hope.
*fingers crossed*
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
2013-09-25 19:37:24 +00:00
|
|
|
connect(comboDelegate, SIGNAL(activated(QString)), this, SLOT(fakeActivation()));
|
2013-10-15 16:45:24 +00:00
|
|
|
connect(this, SIGNAL(closeEditor(QWidget*,QAbstractItemDelegate::EndEditHint)), this, SLOT(fixTabBehavior()));
|
2013-07-16 22:13:58 +00:00
|
|
|
currCombo.comboEditor = comboDelegate;
|
|
|
|
currCombo.currRow = index.row();
|
|
|
|
currCombo.model = const_cast<QAbstractItemModel*>(index.model());
|
2013-10-15 16:45:24 +00:00
|
|
|
keyboardFinished = false;
|
2013-09-27 15:52:01 +00:00
|
|
|
|
|
|
|
// Current display of things on Gnome3 looks like shit, so
|
|
|
|
// let`s fix that.
|
|
|
|
if (isGnome3Session()) {
|
|
|
|
QPalette p;
|
|
|
|
p.setColor(QPalette::Window, QColor(Qt::white));
|
|
|
|
p.setColor(QPalette::Base, QColor(Qt::white));
|
|
|
|
comboDelegate->lineEdit()->setPalette(p);
|
|
|
|
comboDelegate->setPalette(p);
|
|
|
|
}
|
2013-06-16 13:15:19 +00:00
|
|
|
return comboDelegate;
|
|
|
|
}
|
|
|
|
|
2013-09-26 22:59:58 +00:00
|
|
|
/* This Method is being called when the user *writes* something and press enter or tab,
|
|
|
|
* and it`s also called when the mouse walks over the list of choices from the ComboBox,
|
2013-10-03 23:04:51 +00:00
|
|
|
* One thing is important, if the user writes a *new* cylinder or weight type, it will
|
2013-09-26 22:59:58 +00:00
|
|
|
* be ADDED to the list, and the user will need to fill the other data.
|
|
|
|
*/
|
|
|
|
void ComboBoxDelegate::testActivation(const QString& currText)
|
2013-07-16 22:13:58 +00:00
|
|
|
{
|
2013-09-26 22:59:58 +00:00
|
|
|
currCombo.activeText = currText.isEmpty() ? currCombo.comboEditor->currentText() : currText;
|
2013-07-16 22:13:58 +00:00
|
|
|
setModelData(currCombo.comboEditor, currCombo.model, QModelIndex());
|
|
|
|
}
|
|
|
|
|
Make the Qt ComboBox behave in a Better Way
So, the ComboBox is a beast, and when used on a Delegate
it's very hard to get things right, wich is a pitty, because
I overly like qt. So:
1 - Combobox needs to show the popup when user press ↓ and ↑ keys
2 - Combobox needs to select when user press enter, not twice.
3 - Combobox neesds to select when user selects from the mouse, not
pressing enter after.
4 - Combobox needs to not mess with stuff when moving around.
Everything that I listed there works on a non-delegate combobox,
but for some reason, a delegate missed those, so I reimplemented
all. not nice, but now we have a code that will work, I hope.
*fingers crossed*
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
2013-09-25 19:37:24 +00:00
|
|
|
// HACK, send a fake event so Qt thinks we hit 'enter' on the line edit.
|
|
|
|
void ComboBoxDelegate::fakeActivation(){
|
|
|
|
/* this test is needed because as soon as I show the selector,
|
|
|
|
* the first item gots selected, this sending an activated signal,
|
|
|
|
* calling this fakeActivation code and setting as the current,
|
|
|
|
* thig that we don't want. so, let's just set the ignoreSelection
|
|
|
|
* to false and be happy, because the next activation ( by click
|
|
|
|
* or keypress) is real.
|
|
|
|
*/
|
|
|
|
if(currCombo.ignoreSelection){
|
|
|
|
currCombo.ignoreSelection = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
QKeyEvent ev(QEvent::KeyPress, Qt::Key_Return, Qt::NoModifier);
|
|
|
|
QStyledItemDelegate::eventFilter(currCombo.comboEditor, &ev);
|
|
|
|
}
|
|
|
|
|
2013-10-15 16:45:24 +00:00
|
|
|
// This 'reverts' the model data to what we actually choosed,
|
|
|
|
// becaus e a TAB is being understood by Qt as 'cancel' while
|
|
|
|
// we are on a QComboBox ( but not on a QLineEdit.
|
|
|
|
void ComboBoxDelegate::fixTabBehavior()
|
|
|
|
{
|
|
|
|
if(keyboardFinished){
|
|
|
|
setModelData(0,0,QModelIndex());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-16 18:31:44 +00:00
|
|
|
bool ComboBoxDelegate::eventFilter(QObject* object, QEvent* event)
|
|
|
|
{
|
|
|
|
// Reacts on Key_UP and Key_DOWN to show the QComboBox - list of choices.
|
2013-09-09 09:48:03 +00:00
|
|
|
if (event->type() == QEvent::KeyPress || event->type() == QEvent::ShortcutOverride){
|
2013-07-17 14:47:23 +00:00
|
|
|
if (object == currCombo.comboEditor){ // the 'LineEdit' part
|
|
|
|
QKeyEvent *ev = static_cast<QKeyEvent*>(event);
|
|
|
|
if(ev->key() == Qt::Key_Up || ev->key() == Qt::Key_Down){
|
Make the Qt ComboBox behave in a Better Way
So, the ComboBox is a beast, and when used on a Delegate
it's very hard to get things right, wich is a pitty, because
I overly like qt. So:
1 - Combobox needs to show the popup when user press ↓ and ↑ keys
2 - Combobox needs to select when user press enter, not twice.
3 - Combobox neesds to select when user selects from the mouse, not
pressing enter after.
4 - Combobox needs to not mess with stuff when moving around.
Everything that I listed there works on a non-delegate combobox,
but for some reason, a delegate missed those, so I reimplemented
all. not nice, but now we have a code that will work, I hope.
*fingers crossed*
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
2013-09-25 19:37:24 +00:00
|
|
|
currCombo.ignoreSelection = true;
|
2013-07-17 14:47:23 +00:00
|
|
|
currCombo.comboEditor->showPopup();
|
|
|
|
}
|
2013-10-15 16:45:24 +00:00
|
|
|
if(ev->key() == Qt::Key_Tab || ev->key() == Qt::Key_Enter || ev->key() == Qt::Key_Return){
|
|
|
|
currCombo.activeText = currCombo.comboEditor->currentText();
|
|
|
|
keyboardFinished = true;
|
|
|
|
}
|
2013-07-17 14:47:23 +00:00
|
|
|
}
|
|
|
|
else{ // the 'Drop Down Menu' part.
|
|
|
|
QKeyEvent *ev = static_cast<QKeyEvent*>(event);
|
|
|
|
if( ev->key() == Qt::Key_Enter || ev->key() == Qt::Key_Return
|
|
|
|
|| ev->key() == Qt::Key_Tab || ev->key() == Qt::Key_Backtab
|
|
|
|
|| ev->key() == Qt::Key_Escape){
|
|
|
|
// treat Qt as a silly little boy - pretending that the key_return nwas pressed on the combo,
|
|
|
|
// instead of the list of choices. this can be extended later for
|
|
|
|
// other imputs, like tab navigation and esc.
|
|
|
|
QStyledItemDelegate::eventFilter(currCombo.comboEditor, event);
|
|
|
|
}
|
2013-07-16 18:31:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return QStyledItemDelegate::eventFilter(object, event);
|
|
|
|
}
|
|
|
|
|
2013-06-16 15:33:27 +00:00
|
|
|
void ComboBoxDelegate::updateEditorGeometry(QWidget* editor, const QStyleOptionViewItem& option, const QModelIndex& index) const
|
|
|
|
{
|
|
|
|
QRect defaultRect = option.rect;
|
|
|
|
defaultRect.setX( defaultRect.x() -1);
|
|
|
|
defaultRect.setY( defaultRect.y() -1);
|
|
|
|
defaultRect.setWidth( defaultRect.width() + 2);
|
|
|
|
defaultRect.setHeight( defaultRect.height() + 2);
|
|
|
|
editor->setGeometry(defaultRect);
|
|
|
|
}
|
|
|
|
|
2013-07-18 13:24:02 +00:00
|
|
|
struct RevertCylinderData{
|
|
|
|
QString type;
|
|
|
|
int pressure;
|
|
|
|
int size;
|
|
|
|
} currCylinderData;
|
|
|
|
|
2013-05-24 05:56:12 +00:00
|
|
|
void TankInfoDelegate::setModelData(QWidget* editor, QAbstractItemModel* model, const QModelIndex& thisindex) const
|
2013-05-23 18:33:20 +00:00
|
|
|
{
|
2013-07-16 22:13:58 +00:00
|
|
|
CylindersModel *mymodel = qobject_cast<CylindersModel *>(currCombo.model);
|
2013-05-23 18:59:12 +00:00
|
|
|
TankInfoModel *tanks = TankInfoModel::instance();
|
2013-07-16 22:13:58 +00:00
|
|
|
QModelIndexList matches = tanks->match(tanks->index(0,0), Qt::DisplayRole, currCombo.activeText);
|
2013-05-24 05:56:12 +00:00
|
|
|
int row;
|
|
|
|
if (matches.isEmpty()) {
|
|
|
|
// we need to add this
|
|
|
|
tanks->insertRows(tanks->rowCount(), 1);
|
2013-07-16 22:13:58 +00:00
|
|
|
tanks->setData(tanks->index(tanks->rowCount() -1, 0), currCombo.activeText);
|
2013-05-24 05:56:12 +00:00
|
|
|
row = tanks->rowCount() - 1;
|
|
|
|
} else {
|
|
|
|
row = matches.first().row();
|
|
|
|
}
|
|
|
|
int tankSize = tanks->data(tanks->index(row, TankInfoModel::ML)).toInt();
|
|
|
|
int tankPressure = tanks->data(tanks->index(row, TankInfoModel::BAR)).toInt();
|
|
|
|
|
2013-07-18 13:24:02 +00:00
|
|
|
mymodel->setData(IDX(CylindersModel::TYPE), currCombo.activeText, Qt::EditRole);
|
|
|
|
mymodel->passInData(IDX(CylindersModel::WORKINGPRESS), tankPressure);
|
|
|
|
mymodel->passInData(IDX(CylindersModel::SIZE), tankSize);
|
2013-05-23 18:33:20 +00:00
|
|
|
}
|
|
|
|
|
2013-06-16 13:15:19 +00:00
|
|
|
TankInfoDelegate::TankInfoDelegate(QObject* parent): ComboBoxDelegate(TankInfoModel::instance(), parent)
|
2013-05-24 01:40:16 +00:00
|
|
|
{
|
2013-07-18 13:24:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TankInfoDelegate::revertModelData(QWidget* widget, QAbstractItemDelegate::EndEditHint hint)
|
|
|
|
{
|
|
|
|
if (hint == QAbstractItemDelegate::NoHint || hint == QAbstractItemDelegate::RevertModelCache){
|
|
|
|
CylindersModel *mymodel = qobject_cast<CylindersModel *>(currCombo.model);
|
|
|
|
mymodel->setData(IDX(CylindersModel::TYPE), currCylinderData.type, Qt::EditRole);
|
|
|
|
mymodel->passInData(IDX(CylindersModel::WORKINGPRESS), currCylinderData.pressure);
|
|
|
|
mymodel->passInData(IDX(CylindersModel::SIZE), currCylinderData.size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget* TankInfoDelegate::createEditor(QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const
|
|
|
|
{
|
|
|
|
// ncreate editor needs to be called before because it will populate a few
|
|
|
|
// things in the currCombo global var.
|
|
|
|
QWidget *delegate = ComboBoxDelegate::createEditor(parent, option, index);
|
|
|
|
CylindersModel *mymodel = qobject_cast<CylindersModel *>(currCombo.model);
|
|
|
|
cylinder_t *cyl = mymodel->cylinderAt(index);
|
|
|
|
currCylinderData.type = cyl->type.description;
|
|
|
|
currCylinderData.pressure = cyl->type.workingpressure.mbar;
|
|
|
|
currCylinderData.size = cyl->type.size.mliter;
|
|
|
|
return delegate;
|
2013-05-24 01:40:16 +00:00
|
|
|
}
|
|
|
|
|
2013-08-05 10:23:20 +00:00
|
|
|
struct RevertWeightData {
|
2013-07-18 14:53:47 +00:00
|
|
|
QString type;
|
2013-08-05 10:23:20 +00:00
|
|
|
int weight;
|
|
|
|
} currWeight;
|
2013-07-18 14:53:47 +00:00
|
|
|
|
|
|
|
void WSInfoDelegate::revertModelData(QWidget* widget, QAbstractItemDelegate::EndEditHint hint)
|
|
|
|
{
|
|
|
|
if (hint == QAbstractItemDelegate::NoHint || hint == QAbstractItemDelegate::RevertModelCache){
|
|
|
|
WeightModel *mymodel = qobject_cast<WeightModel *>(currCombo.model);
|
2013-08-05 10:23:20 +00:00
|
|
|
mymodel->setData(IDX(WeightModel::TYPE), currWeight.type, Qt::EditRole);
|
|
|
|
mymodel->passInData(IDX(WeightModel::WEIGHT), currWeight.weight);
|
2013-07-18 14:53:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-24 05:56:12 +00:00
|
|
|
void WSInfoDelegate::setModelData(QWidget* editor, QAbstractItemModel* model, const QModelIndex& thisindex) const
|
2013-05-24 01:40:16 +00:00
|
|
|
{
|
2013-07-16 22:13:58 +00:00
|
|
|
WeightModel *mymodel = qobject_cast<WeightModel *>(currCombo.model);
|
2013-05-24 05:56:12 +00:00
|
|
|
WSInfoModel *wsim = WSInfoModel::instance();
|
2013-07-16 22:13:58 +00:00
|
|
|
QModelIndexList matches = wsim->match(wsim->index(0,0), Qt::DisplayRole, currCombo.activeText);
|
2013-05-24 05:56:12 +00:00
|
|
|
int row;
|
|
|
|
if (matches.isEmpty()) {
|
|
|
|
// we need to add this puppy
|
|
|
|
wsim->insertRows(wsim->rowCount(), 1);
|
2013-07-16 22:13:58 +00:00
|
|
|
wsim->setData(wsim->index(wsim->rowCount() - 1, 0), currCombo.activeText);
|
2013-05-24 05:56:12 +00:00
|
|
|
row = wsim->rowCount() - 1;
|
|
|
|
} else {
|
|
|
|
row = matches.first().row();
|
|
|
|
}
|
|
|
|
int grams = wsim->data(wsim->index(row, WSInfoModel::GR)).toInt();
|
2013-07-16 22:13:58 +00:00
|
|
|
QVariant v = QString(currCombo.activeText);
|
2013-07-18 12:01:37 +00:00
|
|
|
|
2013-07-18 13:24:02 +00:00
|
|
|
mymodel->setData(IDX(WeightModel::TYPE), v, Qt::EditRole);
|
|
|
|
mymodel->passInData(IDX(WeightModel::WEIGHT), grams);
|
2013-05-24 01:40:16 +00:00
|
|
|
}
|
|
|
|
|
2013-06-16 13:15:19 +00:00
|
|
|
WSInfoDelegate::WSInfoDelegate(QObject* parent): ComboBoxDelegate(WSInfoModel::instance(), parent)
|
2013-05-24 01:40:16 +00:00
|
|
|
{
|
|
|
|
}
|
2013-07-18 13:24:02 +00:00
|
|
|
|
|
|
|
QWidget* WSInfoDelegate::createEditor(QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const
|
|
|
|
{
|
2013-07-18 14:53:47 +00:00
|
|
|
/* First, call the combobox-create editor, it will setup our globals. */
|
|
|
|
QWidget *editor = ComboBoxDelegate::createEditor(parent, option, index);
|
|
|
|
WeightModel *mymodel = qobject_cast<WeightModel *>(currCombo.model);
|
|
|
|
weightsystem_t *ws = mymodel->weightSystemAt(index);
|
2013-08-05 10:23:20 +00:00
|
|
|
currWeight.type = ws->description;
|
|
|
|
currWeight.weight = ws->weight.grams;
|
2013-07-18 14:53:47 +00:00
|
|
|
return editor;
|
2013-07-18 13:24:02 +00:00
|
|
|
}
|
2013-08-30 10:14:30 +00:00
|
|
|
|
|
|
|
void AirTypesDelegate::revertModelData(QWidget* widget, QAbstractItemDelegate::EndEditHint hint)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void AirTypesDelegate::setModelData(QWidget* editor, QAbstractItemModel* model, const QModelIndex& index) const
|
|
|
|
{
|
2013-08-30 18:06:26 +00:00
|
|
|
if (!index.isValid())
|
|
|
|
return;
|
|
|
|
QComboBox *combo = qobject_cast<QComboBox*>(editor);
|
|
|
|
model->setData(index, QVariant(combo->currentText()));
|
2013-08-30 10:14:30 +00:00
|
|
|
}
|
|
|
|
|
2013-11-14 19:39:35 +00:00
|
|
|
AirTypesDelegate::AirTypesDelegate(QObject* parent) : ComboBoxDelegate(GasSelectionModel::instance(), parent)
|
2013-08-30 10:14:30 +00:00
|
|
|
{
|
|
|
|
}
|
2013-10-03 14:50:40 +00:00
|
|
|
|
|
|
|
ProfilePrintDelegate::ProfilePrintDelegate(QObject *parent)
|
|
|
|
: QStyledItemDelegate(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/* this method overrides the default table drawing method and places grid lines only at certain rows and columns */
|
|
|
|
void ProfilePrintDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
const QRect rect(option.rect);
|
|
|
|
const int row = index.row();
|
|
|
|
const int col = index.column();
|
|
|
|
|
|
|
|
// grid color
|
|
|
|
painter->setPen(QPen(QColor(0xff999999)));
|
|
|
|
// top line
|
|
|
|
if (row == 2 || row == 3 || row == 10 || col == 3 || col == 4)
|
|
|
|
painter->drawLine(rect.topLeft(), rect.topRight());
|
|
|
|
if (row > 1 && row < 10) {
|
|
|
|
// left line - draw always for these rows
|
|
|
|
painter->drawLine(rect.topLeft(), rect.bottomLeft());
|
|
|
|
// "fix" for missing (?) right line after col 5
|
|
|
|
if (col > 5 || (col > 4 && row == 2))
|
|
|
|
painter->drawLine(rect.topRight(), rect.bottomRight());
|
|
|
|
}
|
|
|
|
QStyledItemDelegate::paint(painter, option, index);
|
|
|
|
}
|