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.
libkipi/libkipi/libkipi/imageinfo.cpp

170 lines
3.8 KiB

/* ============================================================
* File : imageinfo.h
* Author: KIPI team developers (see AUTHORS files for details)
* Date : 2004-07-22
* Description :
*
* Copyright 2004 by the KIPI team
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU Library General
* Public License as published by the Free Software Foundation;
* either version 2, 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 Library General Public License for more details.
*
* ============================================================ */
#include "imageinfo.h"
#include "KDStream.h"
#include "imageinfoshared.h"
/** @file imageinfo.cpp
*/
TQString KIPI::ImageInfo::toString( const TQVariant& data ) const
{
TQString string;
KDStream stream( &string );
stream << data
<< flush ;
return string;
}
/**
PENDING(blackie) document
*/
TQString KIPI::ImageInfo::title() const
{
return _data->title();
}
/**
PENDING(blackie) document
*/
KURL KIPI::ImageInfo::path() const
{
return _data->path();
}
/**
PENDING(blackie) document
*/
TQString KIPI::ImageInfo::description() const
{
return _data->description();
}
/**
Returns the time of the image.
In case the host application supports time range, the spec argument
specifies if it is the start or end time that should be returned.
*/
TQDateTime KIPI::ImageInfo::time( TimeSpec spec ) const
{
return _data->time( spec );
}
/**
Returns a Map of attributes of the image
In case the host application supports some special attributes of the image
this function can be used to return them.
Tags are supported by this feature: "tags" key contains TQStringList()
encapsulated in a TQVariant
*/
TQStringVariantMap KIPI::ImageInfo::attributes() const
{
return _data->attributes();
}
/**
PENDING(blackie) document
*/
int KIPI::ImageInfo::size() const
{
return _data->size();
}
KIPI::ImageInfo::ImageInfo( ImageInfoShared* shared )
: _data( shared )
{
}
KIPI::ImageInfo::ImageInfo( const KIPI::ImageInfo& rhs )
{
_data = rhs._data;
_data->addRef();
}
KIPI::ImageInfo::~ImageInfo()
{
_data->removeRef();
}
void KIPI::ImageInfo::setTitle( const TQString& name )
{
_data->setTitle( name );
}
void KIPI::ImageInfo::setDescription( const TQString& description )
{
_data->setDescription( description );
}
void KIPI::ImageInfo::clearAttributes()
{
_data->clearAttributes();
}
void KIPI::ImageInfo::addAttributes( const TQStringVariantMap& attributes )
{
_data->addAttributes( attributes );
}
/**
Returns the angle the application rotates the image with when displaying it.
Certain host applications may choose to rotate the image on disk, and will always return 0,
while other host application will rotate the image when displaying it, and will thus not rotate
the image on disk.
*/
int KIPI::ImageInfo::angle() const
{
return _data->angle();
}
/**
See \ref angle
*/
void KIPI::ImageInfo::setAngle( int angle )
{
_data->setAngle( angle );
}
/**
In the case the application supports time ranges (like this image is
from 1998-2000), this method will return true if the time is an exact
specification, and thus not a range.
*/
bool KIPI::ImageInfo::isTimeExact() const
{
return _data->isTimeExact();
}
void KIPI::ImageInfo::setTime( const TQDateTime& time, TimeSpec spec )
{
_data->setTime( time, spec );
}
/**
Copies all the attibutes, description etc from the other imageinfo
*/
void KIPI::ImageInfo::cloneData( const ImageInfo& other )
{
_data->cloneData( other._data );
}