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