2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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/. */
|
2006-03-29 22:29:03 +04:00
|
|
|
|
2008-12-29 18:07:38 +03:00
|
|
|
/* derived class of nsBlockFrame used for xul:label elements */
|
2006-03-29 22:29:03 +04:00
|
|
|
|
2008-12-29 18:07:38 +03:00
|
|
|
#ifndef nsXULLabelFrame_h_
|
|
|
|
#define nsXULLabelFrame_h_
|
1998-12-18 20:54:54 +03:00
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
1998-12-18 20:54:54 +03:00
|
|
|
#include "nsBlockFrame.h"
|
|
|
|
|
2008-12-29 18:07:38 +03:00
|
|
|
#ifndef MOZ_XUL
|
2008-12-30 02:33:46 +03:00
|
|
|
#error "This file should not be included"
|
2008-12-29 18:07:38 +03:00
|
|
|
#endif
|
1998-12-18 20:54:54 +03:00
|
|
|
|
2008-12-29 18:07:38 +03:00
|
|
|
class nsXULLabelFrame : public nsBlockFrame
|
1998-12-18 20:54:54 +03:00
|
|
|
{
|
|
|
|
public:
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2009-01-19 21:31:33 +03:00
|
|
|
friend nsIFrame* NS_NewXULLabelFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext *aContext);
|
1998-12-18 20:54:54 +03:00
|
|
|
|
|
|
|
// nsIFrame
|
2014-05-25 02:20:40 +04:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIFrame* aPrevInFlow) override;
|
2002-02-21 16:39:39 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) override;
|
2002-02-21 16:39:39 +03:00
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
2014-02-18 12:36:33 +04:00
|
|
|
nsIAtom* aAttribute,
|
2015-03-21 19:28:04 +03:00
|
|
|
int32_t aModType) override;
|
2002-02-21 16:39:39 +03:00
|
|
|
|
1999-02-14 06:47:33 +03:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
2008-12-29 18:07:38 +03:00
|
|
|
* @see nsGkAtoms::XULLabelFrame
|
1999-02-14 06:47:33 +03:00
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIAtom* GetType() const override;
|
1999-02-14 06:47:33 +03:00
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override;
|
1999-09-01 05:02:16 +04:00
|
|
|
#endif
|
1999-08-31 07:09:40 +04:00
|
|
|
|
1998-12-18 20:54:54 +03:00
|
|
|
protected:
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit nsXULLabelFrame(nsStyleContext *aContext) : nsBlockFrame(aContext) {}
|
1998-12-18 20:54:54 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
nsresult RegUnregAccessKey(bool aDoReg);
|
1998-12-18 20:54:54 +03:00
|
|
|
};
|
|
|
|
|
2008-12-29 18:07:38 +03:00
|
|
|
nsIFrame*
|
2009-01-19 21:31:33 +03:00
|
|
|
NS_NewXULLabelFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
2008-12-29 18:07:38 +03:00
|
|
|
|
|
|
|
#endif /* !defined(nsXULLabelFrame_h_) */
|