1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
|
#include "sqlqueryitemdelegate.h"
#include "sqlquerymodel.h"
#include "sqlqueryitem.h"
#include "common/unused.h"
#include "services/notifymanager.h"
#include "sqlqueryview.h"
#include "uiconfig.h"
#include "common/utils_sql.h"
#include "fkcombobox.h"
#include "schemaresolver.h"
#include "sqlqueryitemlineedit.h"
#include <QHeaderView>
#include <QPainter>
#include <QEvent>
#include <QLineEdit>
#include <QDebug>
#include <QComboBox>
#include <QApplication>
#include <QVBoxLayout>
#include <QResizeEvent>
#include <QScrollBar>
#include <limits>
#include <QToolTip>
#include <QTextLayout>
#include <QtMath>
#include <QScreen>
bool SqlQueryItemDelegate::warnedAboutHugeContents = false;
SqlQueryItemDelegate::SqlQueryItemDelegate(QObject *parent) :
QStyledItemDelegate(parent)
{
}
void SqlQueryItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
QStyledItemDelegate::paint(painter, option, index);
SqlQueryItem* item = getItem(index);
if (item->isUncommitted())
{
painter->setPen(item->isCommittingError() ? QColor(Qt::red) : QColor(Qt::blue));
painter->setBrush(Qt::NoBrush);
painter->drawRect(option.rect.x(), option.rect.y(), option.rect.width()-1, option.rect.height()-1);
}
}
QWidget* SqlQueryItemDelegate::createEditor(QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const
{
UNUSED(option);
if (!index.isValid())
return nullptr;
const SqlQueryModel* model = dynamic_cast<const SqlQueryModel*>(index.model());
SqlQueryItem* item = model->itemFromIndex(index);
if (item->isDeletedRow())
{
notifyWarn(tr("Cannot edit this cell. Details: %1").arg(tr("The row is marked for deletion.")));
return nullptr;
}
if (!item->getColumn()->canEdit())
{
notifyWarn(tr("Cannot edit this cell. Details: %1").arg(item->getColumn()->getEditionForbiddenReason()));
return nullptr;
}
if (model->isStructureOutOfDate())
{
notifyWarn(tr("Cannot edit this cell. Details: %1").arg(tr("Structure of this table has changed since last data was loaded. Reload the data to proceed.")));
return nullptr;
}
bool skipInitSelection = item->shoulSkipInitialFocusSelection();
if (!item->getColumn()->getFkConstraints().isEmpty())
return getFkEditor(item, skipInitSelection, parent, model);
return getEditor(item->getValue().userType(), skipInitSelection, parent);
}
void SqlQueryItemDelegate::destroyEditor(QWidget* editor, const QModelIndex& index) const
{
QStyledItemDelegate::destroyEditor(editor, index);
if (!index.isValid())
return;
const SqlQueryModel* model = dynamic_cast<const SqlQueryModel*>(index.model());
SqlQueryItem* item = model->itemFromIndex(index);
item->resetInitialFocusSelection();
}
QString SqlQueryItemDelegate::displayText(const QVariant& value, const QLocale& locale) const
{
UNUSED(locale);
if (value.type() == QVariant::Double)
return doubleToString(value, CFG_UI.General.UseSciFormatForDoubles.get());
if (value.type() == QVariant::String)
{
QString newStr = value.toString();
newStr.replace(QChar::ParagraphSeparator, '\n');
newStr.replace(QChar::LineSeparator, '\n');
return QStyledItemDelegate::displayText(newStr, locale);
}
return QStyledItemDelegate::displayText(value, locale);
}
void SqlQueryItemDelegate::setEditorData(QWidget* editor, const QModelIndex& index) const
{
// No need to check or load full data, it is already preloaded if necessary in createEditor().
QComboBox* cb = dynamic_cast<QComboBox*>(editor);
QLineEdit* le = dynamic_cast<QLineEdit*>(editor);
if (cb) {
setEditorDataForFk(cb, index);
} else if (le) {
setEditorDataForLineEdit(le, index);
} else {
QStyledItemDelegate::setEditorData(editor, index);
}
}
void SqlQueryItemDelegate::setEditorDataForFk(QComboBox* cb, const QModelIndex& index) const
{
UNUSED(cb);
UNUSED(index);
// There used to be code here, but it's empty now.
// All necessary data population happens in the fkDataReady().
// Keeping this method just for this comment and for consistency across different kind of cell editors
// (i.e. each editor has method to copy value from model to editor and another to copy from editor to model).
}
void SqlQueryItemDelegate::setModelData(QWidget* editor, QAbstractItemModel* model, const QModelIndex& index) const
{
FkComboBox* cb = dynamic_cast<FkComboBox*>(editor);
QLineEdit* le = dynamic_cast<QLineEdit*>(editor);
if (cb) {
setModelDataForFk(cb, model, index);
} else if (le) {
setModelDataForLineEdit(le, model, index);
} else {
QStyledItemDelegate::setModelData(editor, model, index);
}
SqlQueryModel* queryModel = const_cast<SqlQueryModel*>(dynamic_cast<const SqlQueryModel*>(index.model()));
queryModel->notifyItemEditionEnded(index);
}
void SqlQueryItemDelegate::setModelDataForFk(FkComboBox* cb, QAbstractItemModel* model, const QModelIndex& index) const
{
bool manualValue = false;
bool ok = false;
QVariant value = cb->getValue(&manualValue, &ok);
SqlQueryModel* dataModel = dynamic_cast<SqlQueryModel*>(model);
SqlQueryItem* theItem = dataModel->itemFromIndex(index);
// If the item of the main data model cannot be found, we use plain QStandardItem method to set item's value.
// It's a safety circuit breaker. Shouldn't happend and if does so, it prints Critical debug log.
if (!theItem)
{
qCritical() << "Confirmed FK edition, but there is no SqlQueryItem for which this was triggered!" << index;
model->setData(index, value, Qt::EditRole);
return;
}
// Out of index? So it's custom value. Set it and it's done.
// If we deal with custom value inserted as item, we also just set it and that's it.
if (manualValue)
{
theItem->setValue(value);
return;
}
theItem->setValue(value);
}
void SqlQueryItemDelegate::setModelDataForLineEdit(QLineEdit* editor, QAbstractItemModel* model, const QModelIndex& index) const
{
QString value = editor->text();
if (CFG_UI.General.KeepNullWhenEmptyValue.get() && model->data(index, Qt::EditRole).isNull() && value.isEmpty())
return;
const SqlQueryModel* queryModel = dynamic_cast<const SqlQueryModel*>(model);
SqlQueryItem* item = queryModel->itemFromIndex(index);
if (item->getColumn()->dataType.isNumeric())
{
bool ok;
QVariant variant = value.toLongLong(&ok);
if (ok)
{
model->setData(index, variant, Qt::EditRole);
return;
}
variant = value.toDouble(&ok);
if (ok)
{
model->setData(index, variant, Qt::EditRole);
return;
}
}
model->setData(index, value, Qt::EditRole);
}
void SqlQueryItemDelegate::setEditorDataForLineEdit(QLineEdit* le, const QModelIndex& index) const
{
QVariant value = index.data(Qt::EditRole);
if (value.userType() == QVariant::Double)
{
le->setText(doubleToString(value, !CFG_UI.General.UseSciFormatForDoubles.get()));
return;
}
QString str = value.toString();
if (str.size() > HUGE_CONTENTS_WARNING_LIMIT && !warnedAboutHugeContents)
{
NOTIFY_MANAGER->warn(tr("Editing a huge contents in an inline cell editor is not a good idea. It can become slow and inconvenient. It's better to edit such big contents in a Form View, or in popup editor (available under rick-click menu)."));
warnedAboutHugeContents = true;
}
le->setText(str);
}
SqlQueryItem* SqlQueryItemDelegate::getItem(const QModelIndex &index) const
{
const SqlQueryModel* queryModel = dynamic_cast<const SqlQueryModel*>(index.model());
return queryModel->itemFromIndex(index);
}
QWidget* SqlQueryItemDelegate::getEditor(int type, bool shouldSkipInitialSelection, QWidget* parent) const
{
UNUSED(type);
SqlQueryItemLineEdit *editor = new SqlQueryItemLineEdit(shouldSkipInitialSelection, parent);
editor->setMaxLength(std::numeric_limits<int>::max());
editor->setFrame(editor->style()->styleHint(QStyle::SH_ItemView_DrawDelegateFrame, 0, editor));
return editor;
}
QWidget* SqlQueryItemDelegate::getFkEditor(SqlQueryItem* item, bool shouldSkipInitialSelection, QWidget* parent, const SqlQueryModel* model) const
{
Db* db = model->getDb();
bool countingError = false;
QString sql = FkComboBox::getSqlForFkEditor(db, item->getColumn(), item->getValue());
qlonglong rowCount = FkComboBox::getRowCountForFkEditor(db, sql, &countingError);
if (rowCount > FkComboBox::MAX_ROWS_FOR_FK)
{
notifyWarn(tr("Foreign key for column %2 has more than %1 possible values. It's too much to display in drop down list. You need to edit value manually.")
.arg(FkComboBox::MAX_ROWS_FOR_FK).arg(item->getColumn()->column));
return getEditor(item->getValue().userType(), item->shoulSkipInitialFocusSelection(), parent);
}
if (rowCount == 0 && countingError && model->isStructureOutOfDate())
{
notifyWarn(tr("Cannot edit this cell. Details: %1").arg(tr("Structure of this table has changed since last data was loaded. Reload the data to proceed.")));
return nullptr;
}
int dropDownViewMinWidth = model->getView()->horizontalHeader()->sectionSize(item->index().column());
FkComboBox* cb = new FkComboBox(parent, dropDownViewMinWidth);
cb->init(db, item->getColumn());
cb->setValue(item->getValue());
if (!shouldSkipInitialSelection)
cb->lineEdit()->selectAll();
return cb;
}
|