You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
2.8 KiB
111 lines
2.8 KiB
/***************************************************************************
|
|
koffsetcolumn.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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
// qt specific
|
|
#include "tqpainter.h"
|
|
// lib specific
|
|
#include "kcolumnsview.h"
|
|
#include "koffsetcolumn.h"
|
|
|
|
using namespace KHE;
|
|
|
|
KOffsetColumn::KOffsetColumn( KColumnsView *V, int FLO, int D, KOffsetFormat::KFormat F )
|
|
: KColumn( V ),
|
|
FirstLineOffset( FLO ),
|
|
Delta( D ),
|
|
Margin( 0 ),
|
|
DigitWidth( 0 ),
|
|
DigitBaseLine( 0 ),
|
|
Format( KOffsetFormat::None )
|
|
{
|
|
setFormat( F );
|
|
}
|
|
|
|
|
|
KOffsetColumn::~KOffsetColumn()
|
|
{
|
|
}
|
|
|
|
|
|
void KOffsetColumn::paintLine( TQPainter *P, int Line )
|
|
{
|
|
const TQColor &ButtonColor = View->colorGroup().button();
|
|
P->fillRect( 0,0,width(),LineHeight, TQBrush(ButtonColor,TQt::SolidPattern) );
|
|
|
|
printFunction()( CodedOffset,FirstLineOffset+Delta*Line );
|
|
P->drawText( 0, DigitBaseLine, TQString().append(CodedOffset) );
|
|
}
|
|
|
|
|
|
void KOffsetColumn::paintFirstLine( TQPainter *P, KPixelXs, int FirstLine )
|
|
{
|
|
PaintLine = FirstLine;
|
|
paintLine( P, PaintLine++ );
|
|
}
|
|
|
|
|
|
void KOffsetColumn::paintNextLine( TQPainter *P )
|
|
{
|
|
paintLine( P, PaintLine++ );
|
|
}
|
|
|
|
|
|
|
|
void KOffsetColumn::paintEmptyColumn( TQPainter *P, KPixelXs Xs, KPixelYs Ys )
|
|
{
|
|
Xs.restrictTo( XSpan );
|
|
|
|
const TQColor &ButtonColor = View->colorGroup().button();
|
|
P->fillRect( Xs.start(), Ys.start(), Xs.width(), Ys.width(), TQBrush(ButtonColor,TQt::SolidPattern) );
|
|
}
|
|
|
|
void KOffsetColumn::setFormat( KOffsetFormat::KFormat F )
|
|
{
|
|
// no changes?
|
|
if( Format == F )
|
|
return;
|
|
|
|
Format = F;
|
|
|
|
CodingWidth = KOffsetFormat::codingWidth( Format );
|
|
PrintFunction = KOffsetFormat::printFunction( Format );
|
|
|
|
recalcX();
|
|
}
|
|
|
|
void KOffsetColumn::setMetrics( KPixelX DW, KPixelY DBL )
|
|
{
|
|
DigitBaseLine = DBL;
|
|
setDigitWidth( DW );
|
|
}
|
|
|
|
void KOffsetColumn::setDigitWidth( KPixelX DW )
|
|
{
|
|
// no changes?
|
|
if( DigitWidth == DW )
|
|
return;
|
|
|
|
DigitWidth = DW;
|
|
|
|
recalcX();
|
|
}
|
|
|
|
void KOffsetColumn::recalcX()
|
|
{
|
|
// recalculate depend sizes
|
|
setWidth( CodingWidth * DigitWidth );
|
|
}
|