[REVIEW REQUEST] RT-24088 Add API to JavaFX to allow vetoing the closing of a Tab in a TabPane

Scott Palmer swpalmer at gmail.com
Fri Dec 14 04:38:02 PST 2012


On 2012-12-14, at 5:51 AM, Lubomir Nerad <lubomir.nerad at oracle.com> wrote:

> On 6.12.2012 23:09, Jonathan Giles wrote:
>> Richard and I were just chatting about this patch, and the general feeling is that it feels weird to consume an event and make that indicate the event has been vetoed (despite that being how it is already done in the Window case).
> 
> In the case of Window the WINDOW_CLOSE_REQUEST indicates that user wants to close the corresponding Window. As with any other event, the application can install its own handler to this event and respond to this request in its own way. If it does so, it should indicate that the event has been handled by "consuming" the corresponding event (as should be done with any other user handled event). If the event is not handled by the application code, the default handler simply closes the corresponding window. This API was approved by Richard and I am surprised he finds it weird now.
> 
> Lubo
>> It just feels like a bit of a side effect, rather than the actual intent of consume() (which is to prevent event propagation, not to pass on additional information such as the state of a veto command).
>> 

I think consuming the event is the most natural way to do this.  Preventing event propagation to the code that would otherwise act on it is exactly what we want.  There is no need to introduce a new concept here.


Scott


More information about the openjfx-dev mailing list