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 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
|
/*
* Copyright (C) 1999-2002 Bernd Gehrmann
* bernd@mail.berlios.de
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "diffview.h"
#include <qapplication.h>
#include <qevent.h>
#include <qpainter.h>
#include <qpixmap.h>
#include <qscrollbar.h>
#include <qstyle.h>
#include <qstyleoption.h>
#include <KLocalizedString>
#include <kcolorscheme.h>
#include <kconfig.h>
#include <kconfiggroup.h>
#include "cervisiasettings.h"
#include "debug.h"
class DiffViewItem
{
public:
QString line;
DiffView::DiffType type;
bool inverted;
int no;
};
const int DiffView::BORDER = 7;
DiffView::DiffView(KConfig &cfg, bool withlinenos, bool withmarker, QWidget *parent, const char *name)
: QtTableView(parent, name)
, linenos(withlinenos)
, marker(withmarker)
, textwidth(0)
, partner(0)
, partConfig(cfg)
{
setNumRows(0);
setNumCols(1 + (withlinenos ? 1 : 0) + (withmarker ? 1 : 0));
setTableFlags(Tbl_autoVScrollBar | Tbl_autoHScrollBar | Tbl_smoothVScrolling);
setFrameStyle(QFrame::WinPanel | QFrame::Sunken);
setBackgroundRole(QPalette::Base);
configChanged();
QFontMetrics fm(font());
setCellHeight(fm.lineSpacing());
setCellWidth(0);
const KConfigGroup group(&partConfig, "General");
m_tabWidth = group.readEntry("TabWidth", 8);
connect(CervisiaSettings::self(), SIGNAL(configChanged()), this, SLOT(configChanged()));
}
DiffView::~DiffView()
{
qDeleteAll(items);
}
void DiffView::setFont(const QFont &font)
{
QtTableView::setFont(font);
QFontMetrics fm(font);
setCellHeight(fm.lineSpacing());
}
void DiffView::setPartner(DiffView *other)
{
partner = other;
if (partner) {
connect(verticalScrollBar(), SIGNAL(valueChanged(int)), SLOT(vertPositionChanged(int)));
connect(verticalScrollBar(), SIGNAL(sliderMoved(int)), SLOT(vertPositionChanged(int)));
connect(horizontalScrollBar(), SIGNAL(valueChanged(int)), SLOT(horzPositionChanged(int)));
connect(horizontalScrollBar(), SIGNAL(sliderMoved(int)), SLOT(horzPositionChanged(int)));
}
}
void DiffView::vertPositionChanged(int val)
{
if (partner)
partner->setYOffset(qMin(val, partner->maxYOffset()));
}
void DiffView::horzPositionChanged(int val)
{
if (partner)
partner->setXOffset(qMin(val, partner->maxXOffset()));
}
void DiffView::configChanged()
{
diffChangeColor = CervisiaSettings::diffChangeColor();
diffInsertColor = CervisiaSettings::diffInsertColor();
diffDeleteColor = CervisiaSettings::diffDeleteColor();
setFont(CervisiaSettings::diffFont());
}
// *offset methods are only for views withlineno
void DiffView::removeAtOffset(int offset)
{
delete items.takeAt(offset);
setNumRows(numRows() - 1);
}
void DiffView::insertAtOffset(const QString &line, DiffType type, int offset)
{
auto item = new DiffViewItem;
item->line = line;
item->type = type;
item->no = -1;
item->inverted = false;
items.insert(offset, item);
setNumRows(numRows() + 1);
}
void DiffView::setCenterOffset(int offset)
{
if (!rowIsVisible(offset)) {
int visiblerows = viewHeight() / cellHeight(0);
setTopCell(qMax(0, offset - visiblerows / 2));
}
}
void DiffView::addLine(const QString &line, DiffType type, int no)
{
QFont f(font());
f.setBold(true);
QFontMetrics fmbold(f);
QFontMetrics fm(font());
// calculate textwidth based on 'line' where tabs are expanded
//
// *Please note*
// For some fonts, e.g. "Clean", is fm.maxWidth() greater than
// fmbold.maxWidth().
QString copy(line);
const int numTabs = copy.count(QLatin1Char('\t'));
copy.remove(QLatin1Char('\t'));
const int tabSize = m_tabWidth * qMax(fm.maxWidth(), fmbold.maxWidth());
const int copyWidth = qMax(fm.width(copy), fmbold.width(copy));
textwidth = qMax(textwidth, copyWidth + numTabs * tabSize);
auto item = new DiffViewItem;
item->line = line;
item->type = type;
item->no = no;
item->inverted = false;
items.append(item);
setNumRows(numRows() + 1);
}
QString DiffView::stringAtOffset(int offset)
{
if (offset >= items.count()) {
qCDebug(log_cervisia) << "Internal error: lineAtOffset";
}
return items.at(offset)->line;
}
int DiffView::count()
{
return items.count();
}
int DiffView::findLine(int lineno)
{
for (int i = 0; i < items.count(); i++)
if (items[i]->no == lineno)
return i;
qCDebug(log_cervisia) << "Internal Error: Line" << lineno << "not found";
return -1;
}
void DiffView::setInverted(int lineno, bool inverted)
{
int offset;
if ((offset = findLine(lineno)) != -1)
items.at(offset)->inverted = inverted;
}
void DiffView::setCenterLine(int lineno)
{
int offset;
if ((offset = findLine(lineno)) != -1)
setCenterOffset(offset);
}
QString DiffView::stringAtLine(int lineno)
{
int pos;
if ((pos = findLine(lineno)) != -1)
return items.at(pos)->line;
else
return {};
}
QByteArray DiffView::compressedContent()
{
QByteArray res(items.count(), '\0');
for (int i = 0; i < items.count(); i++) {
switch (items[i]->type) {
case Change:
res[i] = 'C';
break;
case Insert:
res[i] = 'I';
break;
case Delete:
res[i] = 'D';
break;
case Neutral:
res[i] = 'N';
break;
case Unchanged:
res[i] = 'U';
break;
default:
res[i] = ' ';
}
}
return res;
}
int DiffView::cellWidth(int col)
{
if (col == 0 && linenos) {
QFontMetrics fm(font());
return fm.width("10000");
} else if (marker && (col == 0 || col == 1)) {
QFontMetrics fm(fontMetrics());
return qMax(qMax(fm.width(i18n("Delete")), fm.width(i18n("Insert"))), fm.width(i18n("Change"))) + 2 * BORDER;
} else {
int rest = (linenos || marker) ? cellWidth(0) : 0;
if (linenos && marker)
rest += cellWidth(1);
return qMax(textwidth, viewWidth() - rest);
}
}
QSize DiffView::sizeHint() const
{
QFontMetrics fm(font());
return {4 * fm.width("0123456789"), fm.lineSpacing() * 8};
}
void DiffView::paintCell(QPainter *p, int row, int col)
{
QFontMetrics fm(font());
DiffViewItem *item = items.at(row);
int width = cellWidth(col);
int height = cellHeight();
QColor backgroundColor;
bool inverted;
Qt::Alignment align;
int innerborder;
QString str;
QFont oldFont(p->font());
if (item->type == Separator) {
backgroundColor = KColorScheme(QPalette::Active, KColorScheme::Selection).background().color();
p->setPen(KColorScheme(QPalette::Active, KColorScheme::Selection).foreground().color());
inverted = false;
align = Qt::AlignLeft;
innerborder = 0;
if (col == (linenos ? 1 : 0) + (marker ? 1 : 0))
str = item->line;
QFont f(oldFont);
f.setBold(true);
p->setFont(f);
} else if (col == 0 && linenos) {
backgroundColor = KColorScheme(QPalette::Active, KColorScheme::Selection).background().color();
p->setPen(KColorScheme(QPalette::Active, KColorScheme::Selection).foreground().color());
inverted = false;
align = Qt::AlignLeft;
innerborder = 0;
if (item->no == -1)
str = "+++++";
else
str.setNum(item->no);
} else if (marker && (col == 0 || col == 1)) {
backgroundColor = KColorScheme(QPalette::Active, KColorScheme::View).background(KColorScheme::AlternateBackground).color();
p->setPen(KColorScheme(QPalette::Active, KColorScheme::View).foreground().color());
inverted = false;
align = Qt::AlignRight;
innerborder = BORDER;
str = (item->type == Change) ? i18n("Change") : (item->type == Insert) ? i18n("Insert") : (item->type == Delete) ? i18n("Delete") : QString();
} else {
backgroundColor = (item->type == Change) ? diffChangeColor
: (item->type == Insert) ? diffInsertColor
: (item->type == Delete) ? diffDeleteColor
: (item->type == Neutral) ? KColorScheme(QPalette::Active, KColorScheme::View).background(KColorScheme::AlternateBackground).color()
: KColorScheme(QPalette::Active, KColorScheme::View).background().color();
p->setPen(KColorScheme(QPalette::Active, KColorScheme::View).foreground().color());
inverted = item->inverted;
align = Qt::AlignLeft;
innerborder = 0;
str = item->line;
}
if (inverted) {
p->setPen(backgroundColor);
backgroundColor = KColorScheme(QPalette::Active, KColorScheme::View).foreground().color();
QFont f(oldFont);
f.setBold(true);
p->setFont(f);
}
p->fillRect(0, 0, width, height, backgroundColor);
QTextOption textOption(align);
textOption.setTabStop(m_tabWidth * fm.width(' '));
p->drawText(QRectF(innerborder, 0, width - 2 * innerborder, height), str, textOption);
p->setFont(oldFont);
}
DiffZoomWidget::DiffZoomWidget(QWidget *parent)
: QFrame(parent)
{
setSizePolicy(QSizePolicy(QSizePolicy::Fixed, QSizePolicy::Minimum));
}
DiffZoomWidget::~DiffZoomWidget() = default;
void DiffZoomWidget::setDiffView(DiffView *view)
{
diffview = view;
auto sb = const_cast<QScrollBar *>(diffview->scrollBar());
sb->installEventFilter(this);
}
QSize DiffZoomWidget::sizeHint() const
{
return {25, style()->pixelMetric(QStyle::PM_ScrollBarExtent, 0, this)};
}
bool DiffZoomWidget::eventFilter(QObject *o, QEvent *e)
{
if (e->type() == QEvent::Show || e->type() == QEvent::Hide || e->type() == QEvent::Resize)
update();
return QFrame::eventFilter(o, e);
}
void DiffZoomWidget::paintEvent(QPaintEvent *)
{
const QScrollBar *scrollBar = diffview->scrollBar();
if (!scrollBar)
return;
const QColor diffChangeColor(CervisiaSettings::diffChangeColor());
const QColor diffInsertColor(CervisiaSettings::diffInsertColor());
const QColor diffDeleteColor(CervisiaSettings::diffDeleteColor());
// only y and height are important
QStyleOptionSlider option;
option.init(scrollBar);
const QRect scrollBarGroove(scrollBar->isVisible() ? style()->subControlRect(QStyle::CC_ScrollBar, &option, QStyle::SC_ScrollBarGroove, scrollBar)
: rect());
// draw rectangles at the positions of the differences
const QByteArray &lineTypes(diffview->compressedContent());
QPainter p(this);
p.fillRect(0, scrollBarGroove.y(), width(), scrollBarGroove.height(), KColorScheme(QPalette::Active, KColorScheme::View).background().color());
if (const unsigned int numberOfLines = lineTypes.size()) {
const double scale(((double)scrollBarGroove.height()) / numberOfLines);
for (unsigned int index(0); index < numberOfLines;) {
const char lineType(lineTypes[index]);
// don't use qRound() to avoid painting outside of the pixmap
// (yPos1 must be lesser than scrollBarGroove.height())
const int yPos1(static_cast<int>(index * scale));
// search next line with different lineType
for (++index; index < numberOfLines && lineType == lineTypes[index]; ++index)
;
QColor color;
switch (lineType) {
case 'C':
color = diffChangeColor;
break;
case 'I':
color = diffInsertColor;
break;
case 'D':
color = diffDeleteColor;
break;
case ' ':
case 'N':
color = KColorScheme(QPalette::Active, KColorScheme::View).background(KColorScheme::AlternateBackground).color();
break;
}
if (color.isValid()) {
const int yPos2(qRound(index * scale));
const int areaHeight((yPos2 != yPos1) ? yPos2 - yPos1 : 1);
p.fillRect(0, yPos1 + scrollBarGroove.y(), width(), areaHeight, QBrush(color));
}
}
}
}
// Local Variables:
// c-basic-offset: 4
// End:
|