2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifndef nsPagePrintTimer_h___
|
|
|
|
#define nsPagePrintTimer_h___
|
|
|
|
|
|
|
|
// Timer Includes
|
|
|
|
#include "nsITimer.h"
|
|
|
|
|
|
|
|
#include "nsIDocumentViewerPrint.h"
|
|
|
|
#include "nsPrintObject.h"
|
2012-06-18 19:30:09 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-08-30 17:24:35 -07:00
|
|
|
#include "nsThreadUtils.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
class nsPrintEngine;
|
|
|
|
|
|
|
|
//---------------------------------------------------
|
|
|
|
//-- Page Timer Class
|
|
|
|
//---------------------------------------------------
|
2012-09-16 22:07:32 -07:00
|
|
|
class nsPagePrintTimer MOZ_FINAL : public nsRunnable,
|
|
|
|
public nsITimerCallback
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2012-09-06 00:14:49 -07:00
|
|
|
nsPagePrintTimer(nsPrintEngine* aPrintEngine,
|
|
|
|
nsIDocumentViewerPrint* aDocViewerPrint,
|
|
|
|
uint32_t aDelay)
|
|
|
|
: mPrintEngine(aPrintEngine)
|
|
|
|
, mDocViewerPrint(aDocViewerPrint)
|
|
|
|
, mDelay(aDelay)
|
|
|
|
, mFiringCount(0)
|
|
|
|
, mPrintObj(nullptr)
|
2012-10-02 10:42:21 -07:00
|
|
|
, mWatchDogCount(0)
|
|
|
|
, mDone(false)
|
2012-09-06 00:14:49 -07:00
|
|
|
{
|
|
|
|
mDocViewerPrint->IncrementDestroyRefCount();
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
~nsPagePrintTimer();
|
|
|
|
|
|
|
|
NS_DECL_NSITIMERCALLBACK
|
|
|
|
|
|
|
|
nsresult Start(nsPrintObject* aPO);
|
|
|
|
|
2013-05-29 12:37:49 -07:00
|
|
|
NS_IMETHOD Run() MOZ_OVERRIDE;
|
2012-08-30 17:24:35 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
void Stop();
|
|
|
|
|
|
|
|
private:
|
2011-09-28 23:19:26 -07:00
|
|
|
nsresult StartTimer(bool aUseDelay);
|
2012-10-02 10:42:21 -07:00
|
|
|
nsresult StartWatchDogTimer();
|
|
|
|
void StopWatchDogTimer();
|
|
|
|
void Fail();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsPrintEngine* mPrintEngine;
|
|
|
|
nsCOMPtr<nsIDocumentViewerPrint> mDocViewerPrint;
|
|
|
|
nsCOMPtr<nsITimer> mTimer;
|
2012-10-02 10:42:21 -07:00
|
|
|
nsCOMPtr<nsITimer> mWatchDogTimer;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mDelay;
|
|
|
|
uint32_t mFiringCount;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsPrintObject * mPrintObj;
|
2012-10-02 10:42:21 -07:00
|
|
|
uint32_t mWatchDogCount;
|
|
|
|
bool mDone;
|
|
|
|
|
|
|
|
static const uint32_t WATCH_DOG_INTERVAL = 1000;
|
|
|
|
static const uint32_t WATCH_DOG_MAX_COUNT = 10;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
NS_NewPagePrintTimer(nsPagePrintTimer **aResult);
|
|
|
|
|
|
|
|
#endif /* nsPagePrintTimer_h___ */
|