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
|
//
// C++ Implementation: trackdelegate
//
// Description:
//
//
// Author: Thibaut GRIDEL <tgridel@free.fr>
//
// Copyright (c) 2009 Thibaut GRIDEL
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
//
#include <iostream>
#include "trackdelegate.h"
#include "colorpickerwidget.h"
#include "commontypes.h"
#include "boats.h"
extern int debugLevel;
void TrackDelegate::paint(QPainter *painter,
const QStyleOptionViewItem &option,
const QModelIndex &index) const {
painter->save();
drawBackground(painter, option, index);
switch (index.column()) {
case TRACK_COLOR: {
QColor trackColor = qVariantValue<QColor>(index.data());
painter->setPen(Qt::NoPen);
painter->setBrush(trackColor);
qreal height = option.rect.height() / 8.0;
qreal width = option.rect.width() / 8.0;
QRectF rect(option.rect);
rect.adjust(width, height, -width, -height);
painter->drawRoundedRect(rect, width, height);
}
break;
case TRACK_SERIES: {
int series = qVariantValue<int>(index.data());
drawDisplay(painter, option, option.rect, Boats::seriesList().at(series));
}
break;
default:
QItemDelegate::paint(painter, option, index);
break;
}
drawFocus(painter, option, option.rect);
painter->restore();
}
QSize TrackDelegate::sizeHint(const QStyleOptionViewItem &option,
const QModelIndex &index) const {
return QItemDelegate::sizeHint(option, index);
}
QWidget * TrackDelegate::createEditor(QWidget *parent,
const QStyleOptionViewItem &option,
const QModelIndex &index) const {
if (debugLevel & 1 << DELEGATE) std::cout << "createEditor " << index.column() << std::endl;
switch (index.column()) {
case TRACK_COLOR: {
ColorPickerWidget *editor = new ColorPickerWidget(parent);
connect(editor, SIGNAL(editingFinished()),
this, SLOT(commitAndCloseColor()), Qt::QueuedConnection);
return editor;
}
break;
case TRACK_SERIES: {
QComboBox *editor = new QComboBox(parent);
editor->addItems(Boats::seriesList());
connect(editor, SIGNAL(activated(int)),
this, SLOT(commitAndCloseCombo()));
return editor;
}
break;
default:
return 0;
break;
}
}
void TrackDelegate::setEditorData(QWidget *editor,
const QModelIndex &index) const {
if (debugLevel & 1 << DELEGATE) std::cout << "setEditorData " << index.column() << std::endl;
switch (index.column()) {
case TRACK_COLOR: {
ColorPickerWidget *colorEditor = getColorEditor(editor);
QColor color = qVariantValue<QColor>(index.data());
colorEditor->setColor(color);
}
break;
case TRACK_SERIES: {
QComboBox *seriesEditor = getComboEditor(editor);
int series = qVariantValue<int>(index.data());
seriesEditor->setCurrentIndex(series);
}
break;
default:
QItemDelegate::setEditorData(editor, index);
break;
}
}
void TrackDelegate::setModelData(QWidget *editor,
QAbstractItemModel *model,
const QModelIndex &index) const {
if (debugLevel & 1 << DELEGATE) std::cout << "setModelData " << index.column() << std::endl;
switch (index.column()) {
case TRACK_COLOR: {
ColorPickerWidget *colorEditor = getColorEditor(editor);
QColor color = colorEditor->color();
model->setData(index, qVariantFromValue(color));
}
break;
case TRACK_SERIES: {
QComboBox *seriesEditor = getComboEditor(editor);
int series = seriesEditor->currentIndex();
model->setData(index, qVariantFromValue(series));
}
break;
default:
QItemDelegate::setModelData(editor, model, index);
break;
}
}
void TrackDelegate::commitAndCloseColor() {
if (debugLevel & 1 << DELEGATE) std::cout << "commitAndCloseColor" << std::endl;
ColorPickerWidget *colorEditor = getColorEditor(sender());
emit commitData(colorEditor);
emit closeEditor(colorEditor);
}
void TrackDelegate::commitAndCloseCombo() {
if (debugLevel & 1 << DELEGATE) std::cout << "commitAndCloseCombo" << std::endl;
QComboBox *pathEditor = getComboEditor(sender());
emit commitData(pathEditor);
emit closeEditor(pathEditor);
}
ColorPickerWidget * TrackDelegate::getColorEditor(QObject *editor) const {
return qobject_cast<ColorPickerWidget *>(editor);
}
QComboBox * TrackDelegate::getComboEditor(QObject *editor) const {
return qobject_cast<QComboBox *>(editor);
}
|