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.
238 lines
6.6 KiB
238 lines
6.6 KiB
/***************************************************************************
|
|
kbufferdrag.cpp - description
|
|
-------------------
|
|
begin : Mon Jul 07 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 <tqcstring.h>
|
|
#include <tqtextcodec.h>
|
|
// kde specific
|
|
#include <tdeglobal.h>
|
|
#include <tdelocale.h>
|
|
// lib specific
|
|
#include "kbordercoltextexport.h"
|
|
#include "koffsetcoltextexport.h"
|
|
#include "kvaluecoltextexport.h"
|
|
#include "kcharcoltextexport.h"
|
|
#include "kcharcodec.h"
|
|
#include "kbufferdrag.h"
|
|
|
|
|
|
using namespace std;
|
|
using namespace KHE;
|
|
|
|
static const char OctetStream[] = "application/octet-stream";
|
|
static const char TextPlainUTF8[] = "text/plain;charset=UTF-8";
|
|
static const char TextPlain[] = "text/plain";
|
|
static const char TextPlainLocalStub[] = "text/plain;charset=";
|
|
|
|
//static const char *BaseTypes[3] = { OctetStream, TextPlainUTF8, TextPlain };
|
|
|
|
// creates the name for the local text/plain
|
|
static const char *localTextPlain()
|
|
{
|
|
static TQCString TextPlainLocal;
|
|
|
|
if( TextPlainLocal.isNull() )
|
|
{
|
|
TextPlainLocal = TQCString(TDEGlobal::locale()->encoding()).lower();
|
|
// remove the whitespaces
|
|
int s;
|
|
while( (s=TextPlainLocal.find(' ')) >= 0 )
|
|
TextPlainLocal.remove( s, 1 );
|
|
|
|
TextPlainLocal.prepend( TextPlainLocalStub );
|
|
}
|
|
|
|
return TextPlainLocal;
|
|
}
|
|
|
|
// tries to create a codec by the given charset description
|
|
static TQTextCodec* codecForCharset( const TQCString& Desc )
|
|
{
|
|
int i = Desc.find( "charset=" );
|
|
if( i >= 0 )
|
|
{
|
|
TQCString CharSetName = Desc.mid( i+8 );
|
|
// remove any further attributes
|
|
if( (i=CharSetName.find( ';' )) >= 0 )
|
|
CharSetName = CharSetName.left( i );
|
|
|
|
// try to find codec
|
|
return TQTextCodec::codecForName( CharSetName );
|
|
}
|
|
// no charset=, use locale
|
|
return TDEGlobal::locale()->codecForEncoding();
|
|
}
|
|
|
|
|
|
|
|
TDEBufferDrag::TDEBufferDrag( const TQByteArray &D, KCoordRange Range,
|
|
const KOffsetColumn *OC, const KValueColumn *HC, const KCharColumn *TC,
|
|
TQChar SC, TQChar UC, const TQString &CN,
|
|
TQWidget *Source, const char *Name )
|
|
:TQDragObject( Source, Name ),
|
|
CoordRange( Range ),
|
|
NoOfCol( 0 ),
|
|
SubstituteChar( SC ),
|
|
UndefinedChar( UC ),
|
|
CodecName( CN )
|
|
{
|
|
setData( D );
|
|
|
|
// print column wise?
|
|
if( HC || TC )
|
|
{
|
|
if( OC )
|
|
{
|
|
Columns[NoOfCol++] = new KOffsetColTextExport( OC );
|
|
Columns[NoOfCol++] = new KBorderColTextExport();
|
|
}
|
|
if( HC )
|
|
Columns[NoOfCol++] = new KValueColTextExport( HC, Data.data(), CoordRange );
|
|
if( TC )
|
|
{
|
|
if( HC ) Columns[NoOfCol++] = new KBorderColTextExport();
|
|
Columns[NoOfCol++] = new KCharColTextExport( TC, Data.data(), CoordRange, CodecName );
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
TDEBufferDrag::~TDEBufferDrag()
|
|
{
|
|
for( uint i=0; i<NoOfCol; ++i )
|
|
delete Columns[i];
|
|
}
|
|
|
|
|
|
|
|
void TDEBufferDrag::setData( const TQByteArray &D )
|
|
{
|
|
Data = D;
|
|
}
|
|
|
|
|
|
const char *TDEBufferDrag::format( int i ) const
|
|
{
|
|
return( i == 0 ? OctetStream :
|
|
i == 1 ? TextPlainUTF8 :
|
|
i == 2 ? TextPlain :
|
|
i == 3 ? localTextPlain() :
|
|
0 );
|
|
}
|
|
|
|
|
|
TQByteArray TDEBufferDrag::encodedData( const char *Format ) const
|
|
{
|
|
if( Format != 0 )
|
|
{
|
|
// octet stream wanted?
|
|
if( qstrcmp(Format,OctetStream) == 0 )
|
|
return( Data );
|
|
|
|
// plain text wanted?
|
|
if( tqstrncmp(Format,TextPlain,10) == 0 )
|
|
{
|
|
TQCString Output;
|
|
TQTextCodec *TextCodec = codecForCharset( TQCString(Format).lower() );
|
|
if( TextCodec == 0 )
|
|
return Output;
|
|
|
|
TQString Text;
|
|
// plain copy?
|
|
if( NoOfCol == 0 )
|
|
{
|
|
// duplicate the data and substitute all non-printable items with a space
|
|
KCharCodec *CharCodec = KCharCodec::createCodec( CodecName );
|
|
static const TQChar Tab('\t');
|
|
static const TQChar Return('\n');
|
|
uint Size = Data.size();
|
|
Text.setLength( Size );
|
|
|
|
for( uint i=0; i<Size; ++i )
|
|
{
|
|
KHEChar B = CharCodec->decode( Data[i] );
|
|
|
|
Text.at(i) = B.isUndefined() ? KHEChar(UndefinedChar) :
|
|
(!B.isPrint() && B != Tab && B != Return ) ? KHEChar(SubstituteChar) : B;
|
|
}
|
|
// clean up
|
|
delete CharCodec;
|
|
}
|
|
// formatted copy
|
|
else
|
|
{
|
|
// initialize: one for the line's newline \n
|
|
uint NeededChars = 1;
|
|
for( uint i=0; i<NoOfCol; ++i )
|
|
NeededChars += Columns[i]->charsPerLine();
|
|
// scale with the number of lines
|
|
NeededChars *= CoordRange.lines();
|
|
// find out needed size
|
|
Text.reserve( NeededChars );
|
|
|
|
// now fill
|
|
int l = CoordRange.start().line();
|
|
for( uint i=0; i<NoOfCol; ++i )
|
|
Columns[i]->printFirstLine( Text, l );
|
|
Text.append('\n');
|
|
for( ++l; l<=CoordRange.end().line(); ++l )
|
|
{
|
|
for( uint i=0; i<NoOfCol; ++i )
|
|
Columns[i]->printNextLine( Text );
|
|
Text.append('\n');
|
|
}
|
|
}
|
|
// generate the ouput
|
|
Output = TextCodec->fromUnicode( Text );
|
|
// fix end
|
|
//if( TextCodec->mibEnum() != 1000 )
|
|
//{
|
|
// Don't include NUL in size (TQCString::resize() adds NUL)
|
|
// ((TQByteArray&)Output).resize( Output.length() );
|
|
//}
|
|
return Output;
|
|
}
|
|
}
|
|
|
|
// return empty dummy
|
|
return TQByteArray();
|
|
}
|
|
|
|
|
|
|
|
bool TDEBufferDrag::canDecode( const TQMimeSource* Source )
|
|
{
|
|
bool c =( Source->provides(OctetStream) /*|| Source->provides(TextPlain)*/ );
|
|
return c;
|
|
// return( Source->provides(OctetStream) /*|| Source->provides(TextPlain)*/ );
|
|
}
|
|
|
|
|
|
bool TDEBufferDrag::decode( const TQMimeSource* Source, TQByteArray &Dest )
|
|
{
|
|
// Dest = Source->encodedData( MediaString );
|
|
// return Dest.size() != 0;
|
|
|
|
bool CanDecode = Source->provides( OctetStream );
|
|
if( CanDecode )
|
|
Dest = Source->encodedData( OctetStream );
|
|
|
|
return CanDecode;
|
|
}
|
|
|
|
#include "kbufferdrag.moc"
|