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
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
David Hyatt & Eric D Vaughan.
|
|
|
|
|
|
|
|
An XBL-based progress meter.
|
|
|
|
|
|
|
|
Attributes:
|
|
|
|
|
|
|
|
value: A number between 0% and 100%
|
|
|
|
align: horizontal or vertical
|
|
|
|
mode: determined, undetermined (one shows progress other shows animated candy cane)
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsBoxFrame.h"
|
|
|
|
|
|
|
|
class nsProgressMeterFrame : public nsBoxFrame
|
|
|
|
{
|
|
|
|
public:
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
friend nsIFrame* NS_NewProgressMeterFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
|
2013-05-14 09:33:23 -07:00
|
|
|
NS_IMETHOD DoLayout(nsBoxLayoutState& aBoxLayoutState) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-02-17 23:47:48 -08:00
|
|
|
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
2014-02-18 00:36:33 -08:00
|
|
|
nsIAtom* aAttribute,
|
|
|
|
int32_t aModType) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-01-05 15:31:14 -08:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2014-02-17 23:47:48 -08:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsProgressMeterFrame(nsIPresShell* aPresShell, nsStyleContext* aContext) :
|
2011-10-17 07:59:28 -07:00
|
|
|
nsBoxFrame(aPresShell, aContext), mNeedsReflowCallback(true) {}
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual ~nsProgressMeterFrame();
|
2007-10-05 12:06:54 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mNeedsReflowCallback;
|
2007-03-22 10:30:00 -07:00
|
|
|
}; // class nsProgressMeterFrame
|