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
|
|
|
|
|
|
|
#include "nsBoxFrame.h"
|
|
|
|
#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
|
2006-01-26 02:29:17 +00:00
|
|
|
NS_IMETHOD BuildDisplayListForChildren(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
2002-03-29 02:46:01 +00:00
|
|
|
|
2002-01-12 01:18:10 +00:00
|
|
|
// nsIBox
|
2007-01-08 02:57:59 +00:00
|
|
|
virtual nsSize GetPrefSize(nsBoxLayoutState& aState);
|
2002-01-12 01:18:10 +00:00
|
|
|
|
|
|
|
protected:
|
2006-03-26 21:30:36 +00:00
|
|
|
nsListItemFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext *aContext,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aIsRoot = nsnull,
|
2011-07-11 14:05:10 +00:00
|
|
|
nsBoxLayout* aLayoutManager = nsnull);
|
2002-01-12 01:18:10 +00:00
|
|
|
virtual ~nsListItemFrame();
|
|
|
|
|
|
|
|
}; // class nsListItemFrame
|