1999-10-01 08:19:08 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-10-01 08:19:08 +00:00
|
|
|
|
2009-12-22 23:49:33 +00:00
|
|
|
#ifndef __nsIRollupListener_h__
|
|
|
|
#define __nsIRollupListener_h__
|
1999-10-01 08:19:08 +00:00
|
|
|
|
2011-11-08 19:59:07 +00:00
|
|
|
#include "nsTArray.h"
|
|
|
|
|
2009-12-22 23:49:33 +00:00
|
|
|
class nsIContent;
|
2011-11-08 19:59:07 +00:00
|
|
|
class nsIWidget;
|
2013-11-04 16:22:24 +00:00
|
|
|
class nsIntPoint;
|
2009-12-22 23:49:33 +00:00
|
|
|
|
|
|
|
class nsIRollupListener {
|
|
|
|
public:
|
2007-12-03 16:33:42 +00:00
|
|
|
|
1999-10-01 08:19:08 +00:00
|
|
|
/**
|
2007-12-03 16:33:42 +00:00
|
|
|
* Notifies the object to rollup, optionally returning the node that
|
|
|
|
* was just rolled up.
|
2009-06-12 18:23:16 +00:00
|
|
|
*
|
2013-11-04 16:22:24 +00:00
|
|
|
* aPoint is the mouse pointer position where the event that triggered the
|
2013-11-25 19:02:47 +00:00
|
|
|
* rollup occurred, which may be nullptr.
|
2013-11-04 16:22:24 +00:00
|
|
|
*
|
2009-06-12 18:23:16 +00:00
|
|
|
* aCount is the number of popups in a chain to close. If this is
|
2012-09-28 06:57:33 +00:00
|
|
|
* UINT32_MAX, then all popups are closed.
|
2012-10-26 13:15:22 +00:00
|
|
|
* If aLastRolledUp is non-null, it will be set to the last rolled up popup,
|
|
|
|
* if this is supported. aLastRolledUp is not addrefed.
|
|
|
|
*
|
|
|
|
* Returns true if the event that the caller is processing should be consumed.
|
1999-10-01 08:19:08 +00:00
|
|
|
*/
|
2013-11-04 16:22:24 +00:00
|
|
|
virtual bool Rollup(uint32_t aCount, const nsIntPoint* aPoint, nsIContent** aLastRolledUp) = 0;
|
2000-05-12 20:23:04 +00:00
|
|
|
|
|
|
|
/**
|
2013-03-08 19:48:48 +00:00
|
|
|
* Asks the RollupListener if it should rollup on mouse wheel events
|
2000-05-12 20:23:04 +00:00
|
|
|
*/
|
2011-11-08 19:59:07 +00:00
|
|
|
virtual bool ShouldRollupOnMouseWheelEvent() = 0;
|
2000-05-12 20:23:04 +00:00
|
|
|
|
2013-03-08 19:48:48 +00:00
|
|
|
/**
|
|
|
|
* Asks the RollupListener if it should consume mouse wheel events
|
|
|
|
*/
|
|
|
|
virtual bool ShouldConsumeOnMouseWheelEvent() = 0;
|
|
|
|
|
2001-12-11 06:16:07 +00:00
|
|
|
/**
|
|
|
|
* Asks the RollupListener if it should rollup on mouse activate, eg. X-Mouse
|
|
|
|
*/
|
2011-11-08 19:59:07 +00:00
|
|
|
virtual bool ShouldRollupOnMouseActivate() = 0;
|
2001-12-11 06:16:07 +00:00
|
|
|
|
2011-11-08 19:59:07 +00:00
|
|
|
/*
|
|
|
|
* Retrieve the widgets for open menus and store them in the array
|
|
|
|
* aWidgetChain. The number of menus of the same type should be returned,
|
|
|
|
* for example, if a context menu is open, return only the number of menus
|
|
|
|
* that are part of the context menu chain. This allows closing up only
|
|
|
|
* those menus in different situations. The returned value should be exactly
|
|
|
|
* the same number of widgets added to aWidgetChain.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual uint32_t GetSubmenuWidgetChain(nsTArray<nsIWidget*> *aWidgetChain) = 0;
|
2012-06-23 01:13:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Notify the RollupListener that the widget did a Move or Resize.
|
|
|
|
*/
|
|
|
|
virtual void NotifyGeometryChange() = 0;
|
2012-10-26 13:15:22 +00:00
|
|
|
|
|
|
|
virtual nsIWidget* GetRollupWidget() = 0;
|
1999-10-01 08:19:08 +00:00
|
|
|
};
|
2009-12-22 23:49:33 +00:00
|
|
|
|
|
|
|
#endif /* __nsIRollupListener_h__ */
|