comparison dwt/internal/mozilla/imgIContainerObserver.d @ 272:dd63eb078d7a

xpcom interfaces necessary for browser code -- source adapted from dxpcom project; these modules still need to be tested and then integrated into dwt browser.
author John Reimer<terminal.node@gmail.com>
date Fri, 18 Jul 2008 05:32:53 -0700
parents
children 942da4b6558a
comparison
equal deleted inserted replaced
271:d472fae79005 272:dd63eb078d7a
1 module dwt.internal.mozilla.imgIContainerObserver;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5 import dwt.internal.mozilla.nsISupports;
6
7 import dwt.internal.mozilla.imgIContainer;
8 import dwt.internal.mozilla.gfxIImageFrame;
9
10 const char[] IMGICONTAINEROBSERVER_IID_STR = "53102f15-0f53-4939-957e-aea353ad2700";
11
12 const nsIID IMGICONTAINEROBSERVER_IID=
13 {0x53102f15, 0x0f53, 0x4939,
14 [ 0x95, 0x7e, 0xae, 0xa3, 0x53, 0xad, 0x27, 0x00 ]};
15
16 extern(System)
17
18 interface imgIContainerObserver : nsISupports {
19
20 static const char[] IID_STR = IMGICONTAINEROBSERVER_IID_STR;
21 static const nsIID IID = IMGICONTAINEROBSERVER_IID;
22
23 nsresult FrameChanged(imgIContainer aContainer, gfxIImageFrame aFrame, nsIntRect * aDirtyRect);
24
25 }
26