2001-09-28 20:14:13 +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/. */
|
2000-03-31 07:02:06 +00:00
|
|
|
#ifndef nsButtonBoxFrame_h___
|
|
|
|
#define nsButtonBoxFrame_h___
|
2000-03-11 10:39:21 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2000-03-11 10:39:21 +00:00
|
|
|
#include "nsBoxFrame.h"
|
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
class nsButtonBoxFrame : public nsBoxFrame
|
2000-03-11 10:39:21 +00:00
|
|
|
{
|
|
|
|
public:
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2005-10-26 21:46:39 +00:00
|
|
|
friend nsIFrame* NS_NewButtonBoxFrame(nsIPresShell* aPresShell);
|
2000-03-11 10:39:21 +00:00
|
|
|
|
2006-03-26 21:30:36 +00:00
|
|
|
nsButtonBoxFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
2011-10-17 14:59:28 +00:00
|
|
|
:nsBoxFrame(aPresShell, aContext, false) {
|
2010-11-30 14:59:46 +00:00
|
|
|
UpdateMouseThrough();
|
|
|
|
}
|
2000-03-11 10:39:21 +00:00
|
|
|
|
2013-02-14 11:12:27 +00:00
|
|
|
virtual void BuildDisplayListForChildren(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
2000-03-11 10:39:21 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD HandleEvent(nsPresContext* aPresContext,
|
2013-10-02 03:46:03 +00:00
|
|
|
mozilla::WidgetGUIEvent* aEvent,
|
|
|
|
nsEventStatus* aEventStatus) MOZ_OVERRIDE;
|
2000-03-14 11:09:46 +00:00
|
|
|
|
2013-10-02 03:46:03 +00:00
|
|
|
virtual void MouseClicked(nsPresContext* aPresContext,
|
|
|
|
mozilla::WidgetGUIEvent* aEvent)
|
2011-10-17 14:59:28 +00:00
|
|
|
{ DoMouseClick(aEvent, false); }
|
2000-03-11 10:39:21 +00:00
|
|
|
|
2014-01-05 23:31:14 +00:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2012-09-14 16:10:08 +00:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const MOZ_OVERRIDE {
|
2006-03-09 18:43:23 +00:00
|
|
|
return MakeFrameName(NS_LITERAL_STRING("ButtonBoxFrame"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-05-05 00:07:59 +00:00
|
|
|
/**
|
|
|
|
* Our implementation of MouseClicked.
|
2011-10-17 14:59:28 +00:00
|
|
|
* @param aTrustEvent if true and aEvent as null, then assume the event was trusted
|
2005-05-05 00:07:59 +00:00
|
|
|
*/
|
2013-10-02 03:46:03 +00:00
|
|
|
void DoMouseClick(mozilla::WidgetGUIEvent* aEvent, bool aTrustEvent);
|
2012-09-14 16:10:08 +00:00
|
|
|
void UpdateMouseThrough() MOZ_OVERRIDE { AddStateBits(NS_FRAME_MOUSE_THROUGH_NEVER); }
|
2000-03-31 07:02:06 +00:00
|
|
|
}; // class nsButtonBoxFrame
|
2000-03-11 10:39:21 +00:00
|
|
|
|
2000-03-31 07:02:06 +00:00
|
|
|
#endif /* nsButtonBoxFrame_h___ */
|