mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
843 B
42 lines
843 B
/*
|
|
* contmenu.h - Context menu implementations description for MSMosaic.
|
|
*/
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" { /* Assume C declarations for C++. */
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
/* Types
|
|
********/
|
|
|
|
typedef struct _eleminfo
|
|
{
|
|
PMWIN pmwin;
|
|
|
|
int iElem;
|
|
}
|
|
ELEMINFO;
|
|
DECLARE_STANDARD_TYPES(ELEMINFO);
|
|
|
|
|
|
/* Prototypes
|
|
*************/
|
|
|
|
/* contmenu.c */
|
|
|
|
extern BOOL HasHTMLSource(PCMWIN pcmwin);
|
|
|
|
#ifdef DEBUG
|
|
extern BOOL IsValidPCELEMINFO(PCELEMINFO pceleminfo);
|
|
#endif /* DEBUG */
|
|
extern void PageContextMenu(PMWIN pmwin, int xScreen, int yScreen);
|
|
extern void ElementContextMenu(PMWIN pmwin, int iElem, int xScreen, int yScreen);
|
|
extern void SelectionContextMenu(PMWIN pmwin, int xScreen, int yScreen);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
} /* End of extern "C" {. */
|
|
#endif /* __cplusplus */
|
|
|