michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- michael@0: * michael@0: * This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsISupports.idl" michael@0: michael@0: interface imgIRequest; michael@0: michael@0: %{C++ michael@0: #include "nsRect.h" michael@0: %} michael@0: michael@0: [ptr] native nsIntRect(nsIntRect); michael@0: michael@0: [scriptable, builtinclass, uuid(ac65c702-7771-4f6d-b18b-1c7d806ce3c1)] michael@0: interface imgINotificationObserver : nsISupports michael@0: { michael@0: const long SIZE_AVAILABLE = 1; michael@0: const long FRAME_UPDATE = 2; michael@0: const long FRAME_COMPLETE = 3; michael@0: const long LOAD_COMPLETE = 4; michael@0: const long DECODE_COMPLETE = 5; michael@0: const long DISCARD = 6; michael@0: const long UNLOCKED_DRAW = 7; michael@0: const long IS_ANIMATED = 8; michael@0: michael@0: [noscript] void notify(in imgIRequest aProxy, in long aType, [const] in nsIntRect aRect); michael@0: };