2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-05-21 15:12:37 +04:00
|
|
|
* 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-03-23 21:07:51 +03:00
|
|
|
|
|
|
|
#ifndef nsPrintPreviewListener_h__
|
|
|
|
#define nsPrintPreviewListener_h__
|
|
|
|
|
|
|
|
// Interfaces needed to be included
|
2004-06-05 02:06:05 +04:00
|
|
|
#include "nsIDOMEventListener.h"
|
2002-03-23 21:07:51 +03:00
|
|
|
// Helper Classes
|
|
|
|
#include "nsCOMPtr.h"
|
2012-06-19 06:30:09 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2002-03-23 21:07:51 +03:00
|
|
|
|
2013-08-19 14:15:55 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class EventTarget;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2013-08-19 14:15:55 +04:00
|
|
|
|
2002-03-23 21:07:51 +03:00
|
|
|
//
|
|
|
|
// class nsPrintPreviewListener
|
|
|
|
//
|
|
|
|
// The class that listens to the chrome events and tells the embedding
|
|
|
|
// chrome to show context menus, as appropriate. Handles registering itself
|
|
|
|
// with the DOM with AddChromeListeners() and removing itself with
|
|
|
|
// RemoveChromeListeners().
|
|
|
|
//
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsPrintPreviewListener final : public nsIDOMEventListener
|
2002-03-23 21:07:51 +03:00
|
|
|
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
2004-06-05 02:06:05 +04:00
|
|
|
NS_DECL_NSIDOMEVENTLISTENER
|
2013-04-20 02:18:32 +04:00
|
|
|
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit nsPrintPreviewListener(mozilla::dom::EventTarget* aTarget);
|
2002-03-23 21:07:51 +03:00
|
|
|
|
|
|
|
// Add/remove the relevant listeners, based on what interfaces
|
|
|
|
// the embedding chrome implements.
|
|
|
|
nsresult AddListeners();
|
|
|
|
nsresult RemoveListeners();
|
|
|
|
|
|
|
|
private:
|
2014-06-24 02:40:01 +04:00
|
|
|
~nsPrintPreviewListener();
|
2002-03-23 21:07:51 +03:00
|
|
|
|
2013-04-20 02:18:32 +04:00
|
|
|
nsCOMPtr<mozilla::dom::EventTarget> mEventTarget;
|
2002-03-23 21:07:51 +03:00
|
|
|
|
|
|
|
}; // class nsPrintPreviewListener
|
|
|
|
|
|
|
|
#endif /* nsPrintPreviewListener_h__ */
|