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