1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
/*
* Copyright (C) 2004 Stefan Kleine Stegemann
*
* 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.
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#import "PopplerPage.h"
#import "PopplerDocument.h"
#import "PopplerTextHit.h"
#import "NSObject+PopplerObject.h"
#import "NSString+PopplerKitAdditions.h"
#import "PopplerKitFunctions.h"
#include "bindings/poppler_page.h"
#include "bindings/poppler_text.h"
@interface PopplerPage (Private)
@end
@implementation PopplerPage
- (id) initWithDocument: (PopplerDocument*)aDocument index: (unsigned)anIndex
{
NSAssert(aDocument, @"no document");
NSAssert(anIndex > 0 && anIndex <= [aDocument countPages], @"invalid page index");
if (![super init])
return nil;
index = anIndex;
document = aDocument;
poppler_page = poppler_page_create([aDocument poppler_object], anIndex);
NSAssert(poppler_page, @"poppler_page_create returned NULL");
return self;
}
- (void) dealloc
{
poppler_page_destroy(poppler_page);
[super dealloc];
}
- (unsigned) index
{
return index;
}
- (NSSize) size
{
double width;
double height;
switch ([self orientation])
{
case POPPLER_PAGE_ORIENTATION_PORTRAIT:
case POPPLER_PAGE_ORIENTATION_UPSIDEDOWN: {
width = poppler_page_get_width(poppler_page);
height = poppler_page_get_height(poppler_page);
break;
}
case POPPLER_PAGE_ORIENTATION_LANDSCAPE:
case POPPLER_PAGE_ORIENTATION_SEASCAPE: {
width = poppler_page_get_height(poppler_page);
height = poppler_page_get_width(poppler_page);
break;
}
default: {
width = height = 0;
NSAssert(NO, @"unreachable code");
}
}
return NSMakeSize((float)width, (float)height);
}
- (int) rotate
{
return poppler_page_get_rotate(poppler_page);
}
- (PopplerPageOrientation) orientation
{
int rotate = poppler_page_get_rotate(poppler_page);
NSAssert(rotate >= 0, @"got negative rotation factor");
PopplerPageOrientation orientation = POPPLER_PAGE_ORIENTATION_UNSET;
switch (rotate)
{
case 90:
orientation = POPPLER_PAGE_ORIENTATION_LANDSCAPE; break;
case 180:
orientation = POPPLER_PAGE_ORIENTATION_UPSIDEDOWN; break;
case 270:
orientation = POPPLER_PAGE_ORIENTATION_SEASCAPE; break;
default:
orientation = POPPLER_PAGE_ORIENTATION_PORTRAIT;
}
return orientation;
}
- (NSArray*) findText: (NSString*)aTextString;
{
NSMutableArray* hits = [NSMutableArray array];
if (!aTextString || [aTextString length] == 0)
return hits;
void* textDevice = poppler_text_device_create(YES, NO, NO);
poppler_text_display_page(textDevice, poppler_page, [[self document] poppler_object],
PopplerKitDPI().width, PopplerKitDPI().height, [self rotate],
YES);
unsigned utf32Length = 0;
unsigned int* utf32String = [aTextString getUTF32String: &utf32Length];
double height = poppler_page_get_height(poppler_page);
double xMin, yMin, xMax, yMax = 0;
while(poppler_text_find(textDevice, utf32String, utf32Length,
NO, YES, // startAtTop, stopAtBottom
YES, NO, // startAtLast, stopAtLast
&xMin, &yMin, &xMax, &yMax)) {
// coordinates as returned by poppler are upside down!
NSRect hitArea = NSMakeRect(xMin, (height - yMax), (xMax - xMin), (yMax - yMin));
PopplerTextHit* hit = [[PopplerTextHit alloc] initWithPage: self hitArea: hitArea context: nil];
[hits addObject: hit];
[hit release];
}
poppler_text_device_destroy(textDevice);
NSZoneFree(NSDefaultMallocZone(), utf32String);
return hits;
}
- (PopplerDocument*) document
{
return document;
}
- (void*) poppler_object
{
return poppler_page;
}
@end
/* ----------------------------------------------------- */
/* Category Private */
/* ----------------------------------------------------- */
@implementation PopplerPage (Private)
@end
|