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 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
|
/***************************************************************************
kbuffercolumn.cpp - description
-------------------
begin : Mit Mai 14 2003
copyright : (C) 2003 by Friedrich W. H. Kossebau
email : Friedrich.W.H@Kossebau.de
***************************************************************************/
/***************************************************************************
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License version 2 as published by the Free Software Foundation. *
* *
***************************************************************************/
//#include <kdebug.h>
// qt specific
#include <qpainter.h>
// lib specific
#include "kcolumnsview.h"
#include "kbuffercursor.h"
#include "kbuffercolumn.h"
#include "kbufferlayout.h"
#include "kbufferranges.h"
#include "helper.h"
using namespace KHE;
static const unsigned int StartsBefore = 1;
static const unsigned int EndsLater = 2;
static const char EmptyByte = ' ';
static const int DefaultCursorWidth = 2;
static const int DefaultByteSpacingWidth = 3;
static const int DefaultGroupSpacingWidth = 9;
static const int DefaultNoOfGroupedBytes = 4;
KBufferColumn::KBufferColumn( KColumnsView *CV, KDataBuffer *B, KBufferLayout *L, KBufferRanges *R )
: KColumn( CV ),
Buffer( B ),
Layout( L ),
Ranges( R ),
DigitWidth( 0 ),
DigitBaseLine( 0 ),
VerticalGrid( false ),
ByteWidth( 0 ),
ByteSpacingWidth( DefaultByteSpacingWidth ),
GroupSpacingWidth( DefaultGroupSpacingWidth ),
NoOfGroupedBytes( DefaultNoOfGroupedBytes ),
PosX( 0L ),
PosRightX( 0L ),
LastPos( 0 )
{
}
KBufferColumn::~KBufferColumn()
{
delete [] PosX;
delete [] PosRightX;
}
void KBufferColumn::set( KDataBuffer *B )
{
Buffer= B;
}
void KBufferColumn::resetXBuffer()
{
delete [] PosX;
delete [] PosRightX;
LastPos = Layout->noOfBytesPerLine()-1;
PosX = new KPixelX[LastPos+1];
PosRightX = new KPixelX[LastPos+1];
if( PosX )
recalcX();
}
void KBufferColumn::setMetrics( KPixelX DW, KPixelY DBL )
{
DigitBaseLine = DBL;
setDigitWidth( DW );
}
bool KBufferColumn::setDigitWidth( KPixelX DW )
{
// no changes?
if( DigitWidth == DW )
return false;
DigitWidth = DW;
// recalculate depend sizes
recalcByteWidth();
if( PosX )
recalcX();
return true;
}
bool KBufferColumn::setSpacing( KPixelX BSW, int NoGB, KPixelX GSW )
{
// no changes?
if( ByteSpacingWidth == BSW && NoOfGroupedBytes == NoGB && GroupSpacingWidth == GSW )
return false;
ByteSpacingWidth = BSW;
NoOfGroupedBytes = NoGB;
GroupSpacingWidth = GSW;
// recalculate depend sizes
recalcVerticalGridX();
if( PosX )
recalcX();
return true;
}
bool KBufferColumn::setByteSpacingWidth( KPixelX BSW )
{
// no changes?
if( ByteSpacingWidth == BSW )
return false;
ByteSpacingWidth = BSW;
// recalculate depend sizes
recalcVerticalGridX();
if( PosX )
recalcX();
return true;
}
bool KBufferColumn::setNoOfGroupedBytes( int NoGB )
{
// no changes?
if( NoOfGroupedBytes == NoGB )
return false;
NoOfGroupedBytes = NoGB;
if( PosX )
recalcX();
return true;
}
bool KBufferColumn::setGroupSpacingWidth( KPixelX GSW )
{
// no changes?
if( GroupSpacingWidth == GSW )
return false;
GroupSpacingWidth = GSW;
// recalculate depend sizes
recalcVerticalGridX();
if( PosX )
recalcX();
return true;
}
void KBufferColumn::recalcByteWidth()
{
ByteWidth = DigitWidth;
recalcVerticalGridX();
}
void KBufferColumn::recalcVerticalGridX()
{
VerticalGridX = ByteWidth-1 + GroupSpacingWidth/2;
}
void KBufferColumn::recalcX()
{
SpacingTrigger = noOfGroupedBytes() > 0 ? noOfGroupedBytes()-1 : LastPos+1; // last ensures to never trigger the spacing
KPixelX NewWidth = 0;
int p = 0;
int gs = 0;
KPixelX *PX = PosX;
KPixelX *PRX = PosRightX;
for( ; PX<&PosX[LastPos+1]; ++PX, ++PRX, ++p, ++gs )
{
*PX = NewWidth;
NewWidth += ByteWidth;
*PRX = NewWidth-1;
// is there a space behind the actual byte (if it is not the last)?
if( gs == SpacingTrigger )
{
NewWidth += GroupSpacingWidth;
gs = -1;
}
else
NewWidth += ByteSpacingWidth;
}
setWidth( PosRightX[LastPos]+1 );
}
// TODO: why are inlined functions not available as symbols when defined before their use
//TODO: works not precisly for the byte rects but includes spacing and left and right
/*inline*/ int KBufferColumn::posOfX( KPixelX PX ) const
{
if( !PosX )
return NoByteFound;
// translate
PX -= x();
// search backwards for the first byte that is equalleft to x
for( int p=LastPos; p>=0; --p )
if( PosX[p] <= PX )
return p;
return 0; //NoByteFound;
}
int KBufferColumn::magPosOfX( KPixelX PX ) const
{
if( !PosX )
return NoByteFound;
// translate
PX -= x();
// search backwards for the first byte that is equalleft to x
for( int p=LastPos; p>=0; --p )
if( PosX[p] <= PX )
{
// are we close to the right?
if( PosRightX[p]-PX < DigitWidth/2 ) // TODO: perhaps cache also the middle xpos's
++p;
return p;
}
return 0; //NoByteFound;
}
KSection KBufferColumn::posOfX( KPixelX PX, KPixelX PW ) const
{
if( !PosX )
return KSection();
// translate
PX -= x();
int PRX = PX + PW - 1;
KSection P;
// search backwards for the first byte that is equalleft to x
for( int p=LastPos; p>=0; --p )
if( PosX[p] <= PRX )
{
P.setEnd( p );
for( ; p>=0; --p )
if( PosX[p] <= PX )
{
P.setStart( p );
break;
}
break;
}
return P;
}
KPixelX KBufferColumn::xOfPos( int Pos ) const { return x() + (PosX?PosX[Pos]:0); }
KPixelX KBufferColumn::rightXOfPos( int Pos ) const { return x() + (PosRightX?PosRightX[Pos]:0); }
int KBufferColumn::posOfRelX( KPixelX PX ) const
{
if( !PosX )
return NoByteFound;
// search backwards for the first byte that is equalleft to x
for( int p=LastPos; p>=0; --p )
if( PosX[p] <= PX )
return p;
return 0; //NoByteFound;
}
KSection KBufferColumn::posOfRelX( KPixelX PX, KPixelX PW ) const
{
if( !PosX )
return KSection();
int PRX = PX + PW - 1;
KSection P;
// search backwards for the first byte that is equalleft to x
for( int p=LastPos; p>=0; --p )
if( PosX[p] <= PRX )
{
P.setEnd( p );
for( ; p>=0; --p )
if( PosX[p] <= PX )
{
P.setStart( p );
break;
}
break;
}
return P;
}
KPixelX KBufferColumn::relXOfPos( int Pos ) const { return PosX ? PosX[Pos] : 0; }
KPixelX KBufferColumn::relRightXOfPos( int Pos ) const { return PosRightX ? PosRightX[Pos] : 0; }
KPixelXs KBufferColumn::wideXPixelsOfPos( KSection Positions ) const
{
return KPixelXs( Positions.start()>0?rightXOfPos(Positions.start()-1)+1:xOfPos(Positions.start()),
Positions.end()<LastPos?xOfPos(Positions.end()+1)-1:rightXOfPos(Positions.end()) );
}
KPixelXs KBufferColumn::relWideXPixelsOfPos( KSection Positions ) const
{
return KPixelXs( Positions.start()>0?relRightXOfPos(Positions.start()-1)+1:relXOfPos(Positions.start()),
Positions.end()<LastPos?relXOfPos(Positions.end()+1)-1:relRightXOfPos(Positions.end()) );
}
void KBufferColumn::preparePainting( KPixelX cx, KPixelX cw )
{
// translate
cx -= x();
// calculating the most right relative x to paint
KPixelX LastX = cx + cw - 1;
if( LastX >= width() )
LastX = width()-1;
// calculating the most left relative x to paint
PaintX = cx > 0 ? cx : 0;
// calculating the width
PaintW = LastX - PaintX + 1;
// get line positions to paint
PaintPositions = posOfRelX( PaintX, PaintW );
}
void KBufferColumn::paintFirstLine( QPainter *P, KPixelX cx, KPixelX cw, int FirstLine )
{
// translate
cx -= x();
// calculating the most right relative x to paint
KPixelX LastX = cx + cw - 1;
if( LastX >= width() )
LastX = width()-1;
// calculating the most left relative x to paint
PaintX = cx > 0 ? cx : 0;
// calculating the width
PaintW = LastX - PaintX + 1;
// get line positions to paint
PaintPositions = posOfRelX( PaintX, PaintW );
PaintLine = FirstLine;
// kdDebug(1501) << "paintFirstLine:"<<cx<<","<<cw<<"|" <<PaintX<<","<<PaintW << ")\n";
// paintPositions( P, PaintLine++, PaintPositions );
paintLine( P, PaintLine++ );
}
void KBufferColumn::paintNextLine( QPainter *P )
{
// paintPositions( P, PaintLine++, PaintPositions );
paintLine( P, PaintLine++ );
}
void KBufferColumn::paintLine( QPainter *P, int Line ) // TODO: could be removed???
{
// kdDebug(1501) << "paintLine line: "<<Line<<" Start: "<<PaintPositions.start()<<" End: "<<PaintPositions.end() << "\n";
// no bytes to paint?
// if( !Layout->hasContent(Line) )
// return;
paintPositions( P, Line, PaintPositions );
}
void KBufferColumn::paintPositions( QPainter *P, int Line, KSection Pos )
{
const QColorGroup &CG = View->colorGroup();
// clear background
unsigned int BlankFlag = (Pos.start()!=0?StartsBefore:0) | (Pos.end()!=LastPos?EndsLater:0);
paintRange( P, CG.base(), Pos, BlankFlag );
// Go through the lines TODO: handle first and last line more effeciently
// check for leading and trailing spaces
KSection Positions( Layout->firstPos(KBufferCoord( Pos.start(), Line )),
Layout->lastPos( KBufferCoord( Pos.end(), Line )) );
// no bytes to paint?
if( !Layout->hasContent(Line) )
return;
// check for leading and trailing spaces
KSection Indizes( Layout->indexAtCoord(KBufferCoord( Positions.start(), Line )), Positions.width(), false );
unsigned int SelectionFlag;
unsigned int MarkingFlag;
KSection Selection;
KSection Marking;
bool HasMarking = Ranges->hasMarking();
bool HasSelection = Ranges->hasSelection();
while( Positions.isValid() )
{
KSection PositionsPart( Positions ); // set of positions to paint next
KSection IndizesPart( Indizes ); // set of indizes to paint next
// falls Marking nicht mehr gebuffert und noch zu erwarten
if( HasMarking && Marking.endsBefore(IndizesPart.start()) )
{
// erhebe nchste Markierung im Bereich
HasMarking = isMarked( IndizesPart, &Marking, &MarkingFlag );
}
// falls Selection nicht mehr gebuffert und noch zu erwarten
if( HasSelection && Selection.endsBefore(IndizesPart.start()) )
{
// erhebe nchste Selection im Bereich
HasSelection = isSelected( IndizesPart, &Selection, &SelectionFlag );
}
if( Marking.start() == IndizesPart.start() )
{
IndizesPart.setEnd( Marking.end() );
PositionsPart.setEndByWidth( Marking.width() );
if( PositionsPart.end() == Layout->lastPos(Line) ) MarkingFlag &= ~EndsLater;
if( PositionsPart.start() == Layout->firstPos(Line)) MarkingFlag &= ~StartsBefore;
paintMarking( P, PositionsPart, IndizesPart.start(), MarkingFlag );
}
else if( Selection.includes(IndizesPart.start()) )
{
if( Selection.startsBehind(IndizesPart.start()) )
SelectionFlag |= StartsBefore;
bool MarkingBeforeEnd = HasMarking && Marking.start() <= Selection.end();
IndizesPart.setEnd( MarkingBeforeEnd ? Marking.start()-1 : Selection.end() );
PositionsPart.setEndByWidth( IndizesPart.width() );
if( MarkingBeforeEnd )
SelectionFlag |= EndsLater;
if( PositionsPart.end() == Layout->lastPos(Line) ) SelectionFlag &= ~EndsLater;
if( PositionsPart.start() == Layout->firstPos(Line) ) SelectionFlag &= ~StartsBefore;
paintSelection( P, PositionsPart, IndizesPart.start(), SelectionFlag );
}
else
{
// calc end of plain text
if( HasMarking )
IndizesPart.setEnd( Marking.start()-1 );
if( HasSelection )
IndizesPart.restrictEndTo( Selection.start()-1 );
PositionsPart.setEndByWidth( IndizesPart.width() );
paintPlain( P, PositionsPart, IndizesPart.start() );
}
Indizes.setStartBehind( IndizesPart );
Positions.setStartBehind( PositionsPart );
}
// we don't paint grids as default, perhaps we never will though it works
// paintGrid( P, Positions ); // TODO: get some unmodified Positions (see three lines before)
}
void KBufferColumn::paintPlain( QPainter *P, KSection Positions, int Index )
{
// paint all the bytes affected
for( int p=Positions.start(); p<=Positions.end(); ++p,++Index )
{
KPixelX x = relXOfPos( p );
// draw the byte
P->translate( x, 0 );
char Byte = Buffer->datum( Index );
drawByte( P, Byte, colorForByte(Byte) );
P->translate( -x, 0 );
}
}
void KBufferColumn::paintSelection( QPainter *P, KSection Positions, int Index, int Flag )
{
const QColorGroup &CG = View->colorGroup();
paintRange( P, CG.highlight(), Positions, Flag );
const QColor &HTC = CG.highlightedText();
// paint all the bytes affected:repa
for( int p=Positions.start(); p<=Positions.end(); ++p,++Index )
{
KPixelX x = relXOfPos( p );
// draw the byte
P->translate( x, 0 );
char Byte = Buffer->datum( Index );
drawByte( P, Byte, HTC );
P->translate( -x, 0 );
}
}
void KBufferColumn::paintMarking( QPainter *P, KSection Positions, int Index, int Flag )
{
const QColorGroup &CG = View->colorGroup();
paintRange( P, CG.text(), Positions, Flag );
const QColor &BC = CG.base();
// paint all the bytes affected
for( int p=Positions.start(); p<=Positions.end(); ++p,++Index )
{
KPixelX x = relXOfPos( p );
// draw the byte
P->translate( x, 0 );
char Byte = Buffer->datum( Index );
drawByte( P, Byte, BC );
P->translate( -x, 0 );
}
}
// TODO: smarter calculation
void KBufferColumn::paintGrid( QPainter *P, KSection Range )
{
int st = 0; // counter for spacing triggering
P->setPen( Qt::black );
// paint all the bytes affected
for( int p=Range.start(); p<=Range.end(); ++p,++st )
{
KPixelX x = relXOfPos( p );
// draw the byte
P->translate( x, 0 );
// spacing behind byte and vertical grid enabled?
if( st == SpacingTrigger && p != LastPos )
P->drawLine( VerticalGridX, 0, VerticalGridX, LineHeight-1 ) ;
P->translate( -x, 0 );
}
}
void KBufferColumn::paintRange( QPainter *P, const QColor &Color, KSection Positions, int Flag )
{
KPixelX RangeX = Flag & StartsBefore ? relRightXOfPos( Positions.start()-1 ) + 1 : relXOfPos( Positions.start() );
KPixelX RangeW = (Flag & EndsLater ? relXOfPos( Positions.end()+1 ): relRightXOfPos( Positions.end() ) + 1) - RangeX;
P->fillRect( RangeX,0,RangeW,LineHeight, QBrush(Color,Qt::SolidPattern) );
}
void KBufferColumn::paintByte( QPainter *P, int Index )
{
char Byte = ( Index > -1 ) ? Buffer->datum( Index ) : EmptyByte;
const QColorGroup &CG = View->colorGroup();
QColor Color = CG.text();
QBrush Brush( CG.base(), Qt::SolidPattern );
if( Index > -1 )
{
if( Ranges->markingIncludes(Index) )
{
Brush.setColor( CG.text() );
Color = CG.base();
}
else if( Ranges->selectionIncludes(Index) )
{
Brush.setColor( CG.highlight() );
Color = CG.highlightedText();
}
else
{
Brush.setColor( CG.base() );
Color = colorForByte( Byte );
}
}
P->fillRect( 0,0,ByteWidth,LineHeight, Brush );
if( Index > -1 )
drawByte( P, Byte, Color );
}
void KBufferColumn::paintFramedByte( QPainter *P, int Index, KFrameStyle FrameStyle )
{
paintByte( P, Index );
char Byte = ( Index > -1 ) ? Buffer->datum( Index ) : EmptyByte;
P->setPen( colorForByte(Byte) );
if( FrameStyle == Frame )
P->drawRect( 0, 0, ByteWidth, LineHeight );
else if( FrameStyle == Left )
P->drawLine( 0, 0, 0, LineHeight-1 );
else
P->drawLine( ByteWidth-1,0,ByteWidth-1,LineHeight-1 );
}
void KBufferColumn::paintCursor( QPainter *P, int Index )
{
char Byte = ( Index > -1 ) ? Buffer->datum( Index ) : EmptyByte;
P->fillRect( 0, 0, ByteWidth, LineHeight, QBrush(colorForByte(Byte),Qt::SolidPattern) );
}
void KBufferColumn::drawByte( QPainter *P, char Byte, const QColor &Color ) const
{
P->setPen( Color );
P->drawText( 0, DigitBaseLine, QString::fromAscii(&Byte,1) );
}
bool KBufferColumn::isSelected( KSection Range, KSection *Selection, unsigned int *Flag ) const
{
KSection S;
unsigned int F = 0;
const KSection *OS = Ranges->firstOverlappingSelection( Range );
if( !OS )
return false;
S = *OS;
// does selection start before asked range?
if( Range.start() > S.start() )
{
S.setStart( Range.start() );
F |= StartsBefore;
}
// does selection go on behind asked range?
if( Range.end() < S.end() )
{
S.setEnd( Range.end() );
F |= EndsLater;
}
*Selection = S;
*Flag = F;
return true;
}
bool KBufferColumn::isMarked( KSection Range, KSection *Marking, unsigned int *Flag ) const
{
KSection M;
unsigned int F = 0;
const KSection *OM = Ranges->overlappingMarking( Range );
if( !OM )
return false;
M = *OM;
// does selection start before asked range?
if( Range.start() > M.start() )
{
M.setStart( Range.start() );
F |= StartsBefore;
}
// does selection go on behind asked range?
if( Range.end() < M.end() )
{
M.setEnd( Range.end() );
F |= EndsLater;
}
*Marking = M;
*Flag = F;
return true;
}
|