2007-05-25 03:14:55 -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-05-25 03:14:55 -07:00
|
|
|
|
|
|
|
#ifndef nsTreeBoxObject_h___
|
|
|
|
#define nsTreeBoxObject_h___
|
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2007-05-25 03:14:55 -07:00
|
|
|
#include "nsBoxObject.h"
|
|
|
|
#include "nsITreeView.h"
|
|
|
|
#include "nsITreeBoxObject.h"
|
|
|
|
|
2008-10-27 21:47:19 -07:00
|
|
|
class nsTreeBodyFrame;
|
|
|
|
|
2007-05-25 03:14:55 -07:00
|
|
|
class nsTreeBoxObject : public nsITreeBoxObject, public nsBoxObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2009-08-21 05:50:15 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(nsTreeBoxObject, nsBoxObject)
|
2007-05-25 03:14:55 -07:00
|
|
|
NS_DECL_NSITREEBOXOBJECT
|
|
|
|
|
|
|
|
nsTreeBoxObject();
|
|
|
|
~nsTreeBoxObject();
|
|
|
|
|
2010-08-05 11:39:39 -07:00
|
|
|
nsTreeBodyFrame* GetTreeBody(bool aFlushLayout = false);
|
2008-10-27 21:47:19 -07:00
|
|
|
nsTreeBodyFrame* GetCachedTreeBody() { return mTreeBody; }
|
2007-05-25 03:14:55 -07:00
|
|
|
|
|
|
|
//NS_PIBOXOBJECT interfaces
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual void Clear() MOZ_OVERRIDE;
|
|
|
|
virtual void ClearCachedValues() MOZ_OVERRIDE;
|
2007-05-25 03:14:55 -07:00
|
|
|
|
|
|
|
protected:
|
2008-10-27 21:47:19 -07:00
|
|
|
nsTreeBodyFrame* mTreeBody;
|
2007-05-25 03:14:55 -07:00
|
|
|
nsCOMPtr<nsITreeView> mView;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|