skia2/include/pdf/SkPDFDocument.h
vandebo@chromium.org a518086928 Several cleanups:
Fix the spelling of resource in several places
Make getResouce(resourceList) part of SkPDFObject
make SkDynamicMemoryWStream::getOffset and SkPDFPage::getMediaBox const
Add a temporary NOT_IMPLEMENTED macro instead of using SkASSERT

Review URL: http://codereview.appspot.com/2721041

git-svn-id: http://skia.googlecode.com/svn/trunk@619 2bbb7eff-a529-9590-31e7-b0007b416f81
2010-10-26 19:48:49 +00:00

81 lines
2.3 KiB
C++

/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef SkPDFDocument_DEFINED
#define SkPDFDocument_DEFINED
#include "SkPDFCatalog.h"
#include "SkPDFTypes.h"
#include "SkRefCnt.h"
#include "SkTDArray.h"
class SkPDFDevice;
class SkPDFPage;
class SkWSteam;
/** \class SkPDFDocument
A SkPDFDocument assembles pages together and generates the final PDF file.
*/
class SkPDFDocument {
public:
/** Create a PDF document.
*/
SkPDFDocument();
~SkPDFDocument();
/** Output the PDF to the passed stream.
* @param stream The writable output stream to send the PDF to.
*/
bool emitPDF(SkWStream* stream);
/** Append the passed pdf device to the document as a new page. Returns
* true if successful. Will fail if the document has already been emitted.
*
* @param pdfDevice The page to add to this document.
*/
bool appendPage(const SkRefPtr<SkPDFDevice>& pdfDevice);
private:
SkPDFCatalog fCatalog;
int64_t fXRefFileOffset;
SkTDArray<SkPDFPage*> fPages;
SkTDArray<SkPDFDict*> fPageTree;
SkRefPtr<SkPDFDict> fDocCatalog;
SkTDArray<SkPDFObject*> fPageResources;
int fSecondPageFirstResourceIndex;
SkRefPtr<SkPDFDict> fTrailerDict;
/** Output the PDF header to the passed stream.
* @param stream The writable output stream to send the header to.
*/
void emitHeader(SkWStream* stream);
/** Get the size of the header.
*/
size_t headerSize();
/** Output the PDF footer to the passed stream.
* @param stream The writable output stream to send the footer to.
* @param objCount The number of objects in the PDF.
*/
void emitFooter(SkWStream* stream, int64_t objCount);
};
#endif