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.
134 lines
3.0 KiB
134 lines
3.0 KiB
//
|
|
// Class: documentRenderer
|
|
//
|
|
// Abstract Widget for displaying document types
|
|
// Needs to be implemented from the actual parts
|
|
// using kviewshell
|
|
// Part of KViewshell - A generic interface for document viewers.
|
|
//
|
|
// (C) 2004-2005 Wilfried Huss, Stefan Kebekus. Distributed under the GPL.
|
|
|
|
#include <config.h>
|
|
|
|
#include <kdebug.h>
|
|
|
|
#include "documentRenderer.h"
|
|
#include "renderedDocumentPage.h"
|
|
|
|
|
|
DocumentRenderer::DocumentRenderer(TQWidget* par)
|
|
: mutex(true), parentWidget(par), accessibilityBackground(false),
|
|
accessibilityBackgroundColor(TQColor(255,255,255))
|
|
{
|
|
numPages = 0;
|
|
_isModified = false;
|
|
}
|
|
|
|
|
|
DocumentRenderer::~DocumentRenderer()
|
|
{
|
|
// Wait for all access to this DocumentRenderer to finish
|
|
TQMutexLocker lock(&mutex);
|
|
|
|
clear();
|
|
}
|
|
|
|
|
|
void DocumentRenderer::clear()
|
|
{
|
|
// Wait for all access to this DocumentRenderer to finish
|
|
TQMutexLocker lock(&mutex);
|
|
|
|
numPages = 0;
|
|
pageSizes.clear();
|
|
anchorList.clear();
|
|
bookmarks.clear();
|
|
_isModified = false;
|
|
}
|
|
|
|
void DocumentRenderer::setAccessibleBackground(bool accessibleMode, const TQColor& background)
|
|
{
|
|
// Wait for all access to this DocumentRenderer to finish
|
|
TQMutexLocker lock(&mutex);
|
|
|
|
accessibilityBackground = accessibleMode;
|
|
accessibilityBackgroundColor = background;
|
|
}
|
|
|
|
SimplePageSize DocumentRenderer::sizeOfPage(const PageNumber& page)
|
|
{
|
|
// Wait for all access to this DocumentRenderer to finish
|
|
TQMutexLocker locker(&mutex);
|
|
|
|
if (!page.isValid())
|
|
return SimplePageSize();
|
|
if (page > totalPages())
|
|
return SimplePageSize();
|
|
if (page > pageSizes.size())
|
|
return SimplePageSize();
|
|
|
|
return pageSizes[page-1];
|
|
}
|
|
|
|
|
|
void DocumentRenderer::drawThumbnail(double resolution, RenderedDocumentPage* page)
|
|
{
|
|
// Wait for all access to this DocumentRenderer to finish
|
|
TQMutexLocker locker(&mutex);
|
|
|
|
drawPage(resolution, page);
|
|
}
|
|
|
|
void DocumentRenderer::getText(RenderedDocumentPage* page)
|
|
{
|
|
// We are only interrested in the textual data, so we can use a dummy value for the resolution.
|
|
drawPage(100.0, page);
|
|
}
|
|
|
|
bool DocumentRenderer::isValidFile(const TQString&) const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
Anchor DocumentRenderer::parseReference(const TQString &reference)
|
|
{
|
|
// Wait for all access to this documentRenderer to finish
|
|
TQMutexLocker locker(&mutex);
|
|
|
|
if (isEmpty())
|
|
return Anchor();
|
|
|
|
// If the reference is a number, which we'll interpret as a
|
|
// page number.
|
|
bool ok;
|
|
int page = reference.toInt(&ok);
|
|
if (ok == true)
|
|
{
|
|
if (page < 1)
|
|
page = 1;
|
|
if (page > totalPages())
|
|
page = totalPages();
|
|
|
|
return Anchor(page, Length());
|
|
}
|
|
|
|
// If the reference is not a number, return an empty anchor.
|
|
return Anchor();
|
|
}
|
|
|
|
Anchor DocumentRenderer::findAnchor(const TQString &locallink)
|
|
{
|
|
// Wait for all access to this DocumentRenderer to finish
|
|
TQMutexLocker locker(&mutex);
|
|
|
|
TQMap<TQString,Anchor>::Iterator it = anchorList.find(locallink);
|
|
if (it != anchorList.end())
|
|
return *it;
|
|
else
|
|
return Anchor();
|
|
}
|
|
|
|
|
|
#include "documentRenderer.moc"
|