2006-01-13 20:58:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-01-13 20:58:37 +00:00
|
|
|
|
|
|
|
#ifndef GFX_PDFSURFACE_H
|
|
|
|
#define GFX_PDFSURFACE_H
|
|
|
|
|
|
|
|
#include "gfxASurface.h"
|
2008-01-07 01:14:34 +00:00
|
|
|
#include "gfxContext.h"
|
2006-01-13 20:58:37 +00:00
|
|
|
|
2007-03-01 00:02:27 +00:00
|
|
|
/* for the output stream */
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIOutputStream.h"
|
|
|
|
|
2013-05-29 21:59:24 +00:00
|
|
|
class gfxPDFSurface : public gfxASurface {
|
2006-01-13 20:58:37 +00:00
|
|
|
public:
|
2008-03-19 20:51:42 +00:00
|
|
|
gfxPDFSurface(nsIOutputStream *aStream, const gfxSize& aSizeInPoints);
|
2006-01-13 20:58:37 +00:00
|
|
|
virtual ~gfxPDFSurface();
|
|
|
|
|
2007-03-01 00:02:27 +00:00
|
|
|
virtual nsresult BeginPrinting(const nsAString& aTitle, const nsAString& aPrintToFileName);
|
|
|
|
virtual nsresult EndPrinting();
|
|
|
|
virtual nsresult AbortPrinting();
|
|
|
|
virtual nsresult BeginPage();
|
|
|
|
virtual nsresult EndPage();
|
|
|
|
virtual void Finish();
|
2007-02-08 20:47:48 +00:00
|
|
|
|
2006-02-02 21:09:06 +00:00
|
|
|
void SetDPI(double x, double y);
|
|
|
|
void GetDPI(double *xDPI, double *yDPI);
|
2006-01-13 20:58:37 +00:00
|
|
|
|
2007-01-27 04:06:59 +00:00
|
|
|
// this is in points!
|
2010-09-08 00:36:57 +00:00
|
|
|
virtual const gfxIntSize GetSize() const
|
|
|
|
{
|
|
|
|
return gfxIntSize(mSize.width, mSize.height);
|
|
|
|
}
|
2007-01-27 04:06:59 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual int32_t GetDefaultContextFlags() const
|
2009-12-15 22:04:22 +00:00
|
|
|
{
|
|
|
|
return gfxContext::FLAG_SIMPLIFY_OPERATORS |
|
2011-01-15 09:40:33 +00:00
|
|
|
gfxContext::FLAG_DISABLE_SNAPPING |
|
|
|
|
gfxContext::FLAG_DISABLE_COPY_BACKGROUND;
|
2009-12-15 22:04:22 +00:00
|
|
|
}
|
2008-01-07 00:50:18 +00:00
|
|
|
|
2006-01-13 20:58:37 +00:00
|
|
|
private:
|
2007-03-01 00:02:27 +00:00
|
|
|
nsCOMPtr<nsIOutputStream> mStream;
|
2006-02-02 21:09:06 +00:00
|
|
|
double mXDPI;
|
|
|
|
double mYDPI;
|
2006-02-13 22:37:13 +00:00
|
|
|
gfxSize mSize;
|
2006-01-13 20:58:37 +00:00
|
|
|
};
|
|
|
|
|
2006-02-13 22:37:13 +00:00
|
|
|
#endif /* GFX_PDFSURFACE_H */
|