gecko-dev/network/module/nsIRelatedLinks.h

57 строки
1.3 KiB
C++

#ifndef __nsIRelatedLinks_h
#define __nsIRelatedLinks_h
#include "nscore.h"
#include "nsISupports.h"
#include "nspr.h"
typedef struct _RL_Window* RL_Window;
typedef struct _RL_Item* RL_Item;
typedef uint8 RL_ItemType;
#define RL_CONTAINER 1
#define RL_SEPARATOR 2
#define RL_LINK 3
#define RL_LINK_NEW_WINDOW 4
typedef void (*RLCallBackProc)(void* pdata, RL_Window win);
/* 1A0B6FA1-EA25-11d1-BEAE-00805F8A66DC */
#define NS_IRELATEDLINKS_IID \
{ 0x2ae42530, 0x1b90, 0x11d2, \
{ 0x84, 0xb6, 0x00, 0x80, 0x5f, 0x8a, 0x1d, 0xb7 } }
class nsIRelatedLinks : public nsISupports
{
public:
virtual void DestroyRLWindow(RL_Window win) = 0;
virtual void SetRLWindowURL(RL_Window win, char* url) = 0;
virtual RL_Item WindowItems (RL_Window win) = 0;
virtual RL_Item NextItem(RL_Item item) = 0;
virtual RL_Item ItemChild(RL_Item item) = 0;
virtual uint8 ItemCount(RL_Window win) = 0;
virtual RL_ItemType GetItemType(RL_Item item) = 0;
virtual char* ItemName(RL_Item item) = 0;
virtual char* ItemUrl(RL_Item item) = 0;
virtual RL_Window MakeRLWindowWithCallback(RLCallBackProc callBack, void*fedata) = 0;
};
extern "C" nsIRelatedLinks * NS_NewRelatedLinks();
#endif