2002-08-21 12:01:05 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 12:12:37 +01: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/. */
|
2002-08-21 12:01:05 +00:00
|
|
|
#ifndef nsPrintObject_h___
|
|
|
|
#define nsPrintObject_h___
|
|
|
|
|
2011-12-16 14:42:07 -05:00
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
|
2002-08-21 12:01:05 +00:00
|
|
|
// Interfaces
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIPresShell.h"
|
2004-01-07 22:30:53 +00:00
|
|
|
#include "nsStyleSet.h"
|
2013-01-05 16:12:24 +13:00
|
|
|
#include "nsViewManager.h"
|
2002-08-21 12:01:05 +00:00
|
|
|
#include "nsIDocShell.h"
|
2010-11-10 23:15:21 +02:00
|
|
|
#include "nsIDocShellTreeOwner.h"
|
2002-08-21 12:01:05 +00:00
|
|
|
|
2013-03-21 20:05:20 -04:00
|
|
|
class nsIContent;
|
2013-03-21 20:05:19 -04:00
|
|
|
class nsIDocument;
|
2010-04-10 16:10:12 -04:00
|
|
|
class nsPresContext;
|
|
|
|
|
2002-08-21 12:01:05 +00:00
|
|
|
// nsPrintObject Document Type
|
|
|
|
enum PrintObjectType {eDoc = 0, eFrame = 1, eIFrame = 2, eFrameSet = 3};
|
|
|
|
|
|
|
|
//---------------------------------------------------
|
|
|
|
//-- nsPrintObject Class
|
|
|
|
//---------------------------------------------------
|
|
|
|
class nsPrintObject
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
nsPrintObject();
|
|
|
|
~nsPrintObject(); // non-virtual
|
|
|
|
|
|
|
|
// Methods
|
2009-12-10 20:02:13 -08:00
|
|
|
nsresult Init(nsIDocShell* aDocShell, nsIDOMDocument* aDoc,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aPrintPreview);
|
2002-08-21 12:01:05 +00:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsPrintable() { return !mDontPrint; }
|
2002-08-21 12:01:05 +00:00
|
|
|
void DestroyPresentation();
|
|
|
|
|
|
|
|
// Data Members
|
|
|
|
nsCOMPtr<nsIDocShell> mDocShell;
|
2010-11-10 23:15:21 +02:00
|
|
|
nsCOMPtr<nsIDocShellTreeOwner> mTreeOwner;
|
2002-08-21 12:01:05 +00:00
|
|
|
nsCOMPtr<nsIDocument> mDocument;
|
|
|
|
|
2010-03-25 14:17:11 +01:00
|
|
|
nsRefPtr<nsPresContext> mPresContext;
|
2002-08-21 12:01:05 +00:00
|
|
|
nsCOMPtr<nsIPresShell> mPresShell;
|
2013-01-05 16:12:42 +13:00
|
|
|
nsRefPtr<nsViewManager> mViewManager;
|
2002-08-21 12:01:05 +00:00
|
|
|
|
2009-12-10 20:02:13 -08:00
|
|
|
nsCOMPtr<nsIContent> mContent;
|
2006-03-30 00:27:42 +00:00
|
|
|
PrintObjectType mFrameType;
|
|
|
|
|
2009-02-03 15:42:18 +01:00
|
|
|
nsTArray<nsPrintObject*> mKids;
|
2006-03-30 00:27:42 +00:00
|
|
|
nsPrintObject* mParent;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mHasBeenPrinted;
|
|
|
|
bool mDontPrint;
|
|
|
|
bool mPrintAsIs;
|
|
|
|
bool mInvisible; // Indicates PO is set to not visible by CSS
|
|
|
|
bool mPrintPreview;
|
|
|
|
bool mDidCreateDocShell;
|
2002-08-21 12:01:05 +00:00
|
|
|
float mShrinkRatio;
|
2007-02-07 07:46:44 +00:00
|
|
|
float mZoomRatio;
|
2002-08-21 12:01:05 +00:00
|
|
|
|
|
|
|
private:
|
2015-01-06 18:35:02 -05:00
|
|
|
nsPrintObject& operator=(const nsPrintObject& aOther) = delete;
|
2002-08-21 12:01:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* nsPrintObject_h___ */
|
|
|
|
|