2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsGridRowLeafFrame.h"
|
|
|
|
|
|
|
|
nsIFrame* NS_NewListItemFrame(nsIPresShell* aPresShell,
|
2009-01-19 10:31:33 -08:00
|
|
|
nsStyleContext *aContext);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
class nsListItemFrame : public nsGridRowLeafFrame
|
|
|
|
{
|
|
|
|
public:
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
friend nsIFrame* NS_NewListItemFrame(nsIPresShell* aPresShell,
|
2009-01-19 10:31:33 -08:00
|
|
|
nsStyleContext *aContext);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// overridden so that children of listitems don't handle mouse events,
|
|
|
|
// unless allowevents="true" is specified on the listitem
|
2013-02-14 03:12:27 -08:00
|
|
|
virtual void BuildDisplayListForChildren(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual nsSize GetPrefSize(nsBoxLayoutState& aState) MOZ_OVERRIDE;
|
2012-08-05 20:00:57 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
|
|
|
nsListItemFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext *aContext,
|
2012-10-09 16:14:42 -07:00
|
|
|
bool aIsRoot = false,
|
2012-07-30 07:20:58 -07:00
|
|
|
nsBoxLayout* aLayoutManager = nullptr);
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual ~nsListItemFrame();
|
|
|
|
|
|
|
|
}; // class nsListItemFrame
|