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
|
/***************************************************************************
kvaluecoltextexport.cpp - description
-------------------
begin : Wed Sep 3 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. *
* *
***************************************************************************/
// lib specific
#include "kbufferlayout.h"
#include "kvaluecolumn.h"
#include "kvaluecoltextexport.h"
#include "helper.h"
using namespace KHE;
KValueColTextExport::KValueColTextExport( const KValueColumn* HC, const char *D, KCoordRange CR )
: KBufferColTextExport( HC, D, CR, HC->byteCodec()->encodingWidth() ),
ByteCodec( KByteCodec::createCodec(HC->coding()) )
{
}
KValueColTextExport::~KValueColTextExport()
{
delete ByteCodec;
}
void KValueColTextExport::print( QString &T ) const
{
int p = 0;
int pEnd = NoOfBytesPerLine;
// correct boundaries
if( PrintLine == CoordRange.start().line() )
p = CoordRange.start().pos();
if( PrintLine == CoordRange.end().line() )
pEnd = CoordRange.end().pos()+1;
QString E;
E.setLength( ByteCodec->encodingWidth() );
// draw individual chars
uint e = 0;
for( ; p<pEnd; ++p, ++PrintData )
{
// get next position
uint t = Pos[p];
// clear spacing
T.append( whiteSpace(t-e) );
ByteCodec->encode( E, 0, *PrintData );
T.append( E );
e = t + ByteCodec->encodingWidth();
}
T.append( whiteSpace(NoOfCharsPerLine-e) );
++PrintLine;
}
|