mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
aef7f91aa1
--HG-- extra : rebase_source : e25a064995914ca4f7b1db16b5725eb440d3e531
55 lines
1.4 KiB
C++
55 lines
1.4 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/. */
|
|
#ifndef nsPagePrintTimer_h___
|
|
#define nsPagePrintTimer_h___
|
|
|
|
// Timer Includes
|
|
#include "nsITimer.h"
|
|
|
|
#include "nsIDocumentViewerPrint.h"
|
|
#include "nsPrintObject.h"
|
|
#include "mozilla/Attributes.h"
|
|
|
|
class nsPrintEngine;
|
|
|
|
//---------------------------------------------------
|
|
//-- Page Timer Class
|
|
//---------------------------------------------------
|
|
class nsPagePrintTimer MOZ_FINAL : public nsITimerCallback
|
|
{
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
nsPagePrintTimer();
|
|
~nsPagePrintTimer();
|
|
|
|
NS_DECL_NSITIMERCALLBACK
|
|
|
|
void Init(nsPrintEngine* aPrintEngine,
|
|
nsIDocumentViewerPrint* aDocViewerPrint,
|
|
PRUint32 aDelay);
|
|
|
|
nsresult Start(nsPrintObject* aPO);
|
|
|
|
void Stop();
|
|
|
|
private:
|
|
nsresult StartTimer(bool aUseDelay);
|
|
|
|
nsPrintEngine* mPrintEngine;
|
|
nsCOMPtr<nsIDocumentViewerPrint> mDocViewerPrint;
|
|
nsCOMPtr<nsITimer> mTimer;
|
|
PRUint32 mDelay;
|
|
PRUint32 mFiringCount;
|
|
nsPrintObject * mPrintObj;
|
|
};
|
|
|
|
|
|
nsresult
|
|
NS_NewPagePrintTimer(nsPagePrintTimer **aResult);
|
|
|
|
#endif /* nsPagePrintTimer_h___ */
|