2006-02-10 21:31:04 +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-02-10 21:31:04 +00:00
|
|
|
|
|
|
|
#ifndef GFX_PSSURFACE_H
|
|
|
|
#define GFX_PSSURFACE_H
|
|
|
|
|
|
|
|
#include "gfxASurface.h"
|
|
|
|
|
2007-03-01 00:02:27 +00:00
|
|
|
/* for the output stream */
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIOutputStream.h"
|
2008-01-07 01:32:23 +00:00
|
|
|
#include "gfxContext.h"
|
2007-03-01 00:02:27 +00:00
|
|
|
|
2013-05-29 21:59:24 +00:00
|
|
|
class gfxPSSurface : public gfxASurface {
|
2006-02-10 21:31:04 +00:00
|
|
|
public:
|
2011-07-14 17:02:20 +00:00
|
|
|
enum PageOrientation {
|
|
|
|
PORTRAIT,
|
|
|
|
LANDSCAPE
|
|
|
|
};
|
|
|
|
|
|
|
|
gfxPSSurface(nsIOutputStream *aStream, const gfxSize& aSizeInPoints, PageOrientation aOrientation);
|
2006-02-10 21:31:04 +00:00
|
|
|
virtual ~gfxPSSurface();
|
|
|
|
|
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-10 21:31:04 +00:00
|
|
|
void SetDPI(double x, double y);
|
|
|
|
void GetDPI(double *xDPI, double *yDPI);
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool GetRotateForLandscape() { return (mOrientation == LANDSCAPE); }
|
2011-07-14 17:02:20 +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
|
|
|
|
{
|
2011-07-14 17:02:20 +00:00
|
|
|
return mSize;
|
2010-09-08 00:36:57 +00:00
|
|
|
}
|
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 |
|
|
|
|
gfxContext::FLAG_DISABLE_SNAPPING;
|
|
|
|
}
|
2008-01-07 00:50:18 +00:00
|
|
|
|
2006-02-10 21:31:04 +00:00
|
|
|
private:
|
2007-03-01 00:02:27 +00:00
|
|
|
nsCOMPtr<nsIOutputStream> mStream;
|
2006-02-10 21:31:04 +00:00
|
|
|
double mXDPI;
|
|
|
|
double mYDPI;
|
2011-07-14 17:02:20 +00:00
|
|
|
gfxIntSize mSize;
|
|
|
|
PageOrientation mOrientation;
|
2006-02-10 21:31:04 +00:00
|
|
|
};
|
|
|
|
|
2006-02-13 22:37:13 +00:00
|
|
|
#endif /* GFX_PSSURFACE_H */
|