This commit is contained in:
pinkerton%netscape.com 1999-08-19 19:48:58 +00:00
Родитель 277d3d704c
Коммит d1206fe5a3
2 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -65,6 +65,13 @@ public:
* @returns whether the event was consumed or ignored. @see nsresult
*/
virtual nsresult DragDrop(nsIDOMEvent* aMouseEvent) = 0;
/**
* Processes a drag gesture event
* @param aMouseEvent @see nsIDOMEvent.h
* @returns whether the event was consumed or ignored. @see nsresult
*/
virtual nsresult DragGesture(nsIDOMEvent* aMouseEvent) = 0;
};

Просмотреть файл

@ -313,6 +313,7 @@ enum nsDragDropEventStatus {
#define NS_DRAGDROP_OVER (NS_DRAGDROP_EVENT_START + 1)
#define NS_DRAGDROP_EXIT (NS_DRAGDROP_EVENT_START + 2)
#define NS_DRAGDROP_DROP (NS_DRAGDROP_EVENT_START + 3)
#define NS_DRAGDROP_GESTURE (NS_DRAGDROP_EVENT_START + 4)
// Events for popups
#define NS_MENU_EVENT_START 1500