dd3b512daf
* NEW: Update copyrights. git-svn-id: svn://localhost/gambas/trunk@4384 867c0c6c-44f3-4631-809d-bfa615b0a4ec
102 lines
2.2 KiB
C
102 lines
2.2 KiB
C
/***************************************************************************
|
|
|
|
CPdfDocument.h
|
|
|
|
(C) 2005-2007 Daniel Campos Fernández <dcamposf@gmail.com>
|
|
|
|
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, 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
MA 02110-1301, USA.
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef __CPDFDOCUMENT_H
|
|
#define __CPDFDOCUMENT_H
|
|
|
|
#include "gambas.h"
|
|
|
|
#include <PDFDoc.h>
|
|
#include <SplashOutputDev.h>
|
|
#include <Page.h>
|
|
#include <goo/GooList.h>
|
|
#include <stdint.h>
|
|
|
|
#ifndef __CPDFDOCUMENT_C
|
|
|
|
extern GB_DESC PdfRectDesc[];
|
|
extern GB_DESC PdfDocumentDesc[];
|
|
extern GB_DESC PdfPageDesc[];
|
|
extern GB_DESC PdfResultDesc[];
|
|
extern GB_DESC PdfLinkDesc[];
|
|
extern GB_DESC PdfLinkDataDesc[];
|
|
extern GB_DESC PdfIndexDesc[];
|
|
extern GB_DESC PdfDocumentInfo[];
|
|
extern GB_DESC PdfLayoutDesc[];
|
|
extern GB_DESC PdfModeDesc[];
|
|
|
|
#else
|
|
|
|
#define THIS ((CPDFDOCUMENT *)_object)
|
|
#define THIS_RECT ((CPDFRECT *)_object)
|
|
|
|
#endif
|
|
|
|
typedef
|
|
struct {
|
|
GB_BASE ob;
|
|
double x, y, w, h;
|
|
}
|
|
CPDFRECT;
|
|
|
|
typedef
|
|
struct {
|
|
double x0;
|
|
double y0;
|
|
double x1;
|
|
double y1;
|
|
}
|
|
CPDFFIND;
|
|
|
|
typedef
|
|
struct {
|
|
GB_BASE ob;
|
|
|
|
char *buf;
|
|
int len;
|
|
|
|
PDFDoc *doc;
|
|
SplashOutputDev *dev;
|
|
Page *page;
|
|
uint currpage;
|
|
|
|
void **pindex; // Parent of current index entries
|
|
GooList *index; // Current entries
|
|
uint currindex; // Current entry
|
|
uint *oldindex; // Parent entry
|
|
|
|
Links *links; // Page bookmarks
|
|
uint lcurrent; // Current bookmark
|
|
|
|
CPDFFIND *Found; // Found text elements
|
|
|
|
LinkAction *action; // Current link action
|
|
|
|
double scale;
|
|
int rotation;
|
|
}
|
|
CPDFDOCUMENT;
|
|
|
|
|
|
|
|
#endif
|