okular/kpdf/QOutputDev.h
Albert Astals Cid be2c109b13 I broke printing -> fix it
Better selection of the text found at searching
m_currentPage in kpdf_part now 1 -> first page instead 0 -> first_page, is what PDFDoc uses
Some code has been commented out, it is not used by now
Search works on all pages, not only current one

svn path=/trunk/kdegraphics/kpdf/; revision=342068
2004-08-28 09:27:38 +00:00

66 lines
2.2 KiB
C++

/***************************************************************************
* Copyright (C) 2003-2004 by Christophe Devriese *
* <Christophe.Devriese@student.kuleuven.ac.be> *
* Copyright (C) 2003 by Helio Chissini de Castro *
* <helio@conectiva.com.br> *
* Copyright (C) 2004 by Dominique Devriese <devriese@kde.org> *
* Copyright (C) 2004 by Albert Astals Cid <tsdgeos@terra.es> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef QOUTPUTDEV_H
#define QOUTPUTDEV_H
#ifdef __GNUC__
#pragma interface
#endif
#include "XRef.h"
#include "SplashOutputDev.h"
class TextPage;
class QPainter;
//------------------------------------------------------------------------
// QOutputDev
//------------------------------------------------------------------------
class QOutputDev : public SplashOutputDev
{
public:
// Constructor
QOutputDev(SplashColor paperColor);
// Destructor.
virtual ~QOutputDev();
// Start a page.
virtual void startPage(int pageNum, GfxState *state);
// End a page.
virtual void endPage();
//----- update text state
virtual void updateFont(GfxState *state);
//----- text drawing
virtual void drawChar(GfxState *state, double x, double y, double dx, double dy, double originX, double originY, CharCode code, Unicode *u, int uLen);
virtual GBool beginType3Char(GfxState *state, double x, double y, double dx, double dy, CharCode code, Unicode *u, int uLen);
// Clear out the document (used when displaying an empty window).
void clear();
bool find(Unicode *u, int len, double *xMin, double *yMin, double *xMax, double *yMax);
private:
TextPage *m_text; // text from the current page
};
#endif