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 Vaughan
|
|
|
|
// Netscape Communications
|
|
|
|
//
|
|
|
|
// See documentation in associated header file
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "nsProgressMeterFrame.h"
|
|
|
|
#include "nsCSSRendering.h"
|
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsBoxLayoutState.h"
|
2007-10-05 12:06:54 -07:00
|
|
|
#include "nsIReflowCallback.h"
|
2009-01-19 01:29:48 -08:00
|
|
|
#include "nsContentUtils.h"
|
2012-07-10 21:03:55 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-09-30 14:26:04 -07:00
|
|
|
|
|
|
|
class nsReflowFrameRunnable : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsReflowFrameRunnable(nsIFrame* aFrame,
|
|
|
|
nsIPresShell::IntrinsicDirty aIntrinsicDirty,
|
|
|
|
nsFrameState aBitToAdd);
|
|
|
|
|
|
|
|
NS_DECL_NSIRUNNABLE
|
|
|
|
|
|
|
|
nsWeakFrame mWeakFrame;
|
|
|
|
nsIPresShell::IntrinsicDirty mIntrinsicDirty;
|
|
|
|
nsFrameState mBitToAdd;
|
|
|
|
};
|
|
|
|
|
|
|
|
nsReflowFrameRunnable::nsReflowFrameRunnable(nsIFrame* aFrame,
|
|
|
|
nsIPresShell::IntrinsicDirty aIntrinsicDirty,
|
|
|
|
nsFrameState aBitToAdd)
|
|
|
|
: mWeakFrame(aFrame),
|
|
|
|
mIntrinsicDirty(aIntrinsicDirty),
|
|
|
|
mBitToAdd(aBitToAdd)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsReflowFrameRunnable::Run()
|
|
|
|
{
|
|
|
|
if (mWeakFrame.IsAlive()) {
|
|
|
|
mWeakFrame->PresContext()->PresShell()->
|
|
|
|
FrameNeedsReflow(mWeakFrame, mIntrinsicDirty, mBitToAdd);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//
|
|
|
|
// NS_NewToolbarFrame
|
|
|
|
//
|
|
|
|
// Creates a new Toolbar frame and returns it
|
|
|
|
//
|
|
|
|
nsIFrame*
|
|
|
|
NS_NewProgressMeterFrame (nsIPresShell* aPresShell, nsStyleContext* aContext)
|
|
|
|
{
|
|
|
|
return new (aPresShell) nsProgressMeterFrame(aPresShell, aContext);
|
2009-09-12 09:49:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsProgressMeterFrame)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
//
|
|
|
|
// nsProgressMeterFrame dstr
|
|
|
|
//
|
|
|
|
// Cleanup, if necessary
|
|
|
|
//
|
|
|
|
nsProgressMeterFrame :: ~nsProgressMeterFrame ( )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-07-10 21:03:55 -07:00
|
|
|
class nsAsyncProgressMeterInit MOZ_FINAL : public nsIReflowCallback
|
2007-10-05 12:06:54 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsAsyncProgressMeterInit(nsIFrame* aFrame) : mWeakFrame(aFrame) {}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool ReflowFinished()
|
2007-10-05 12:06:54 -07:00
|
|
|
{
|
2011-09-28 23:19:26 -07:00
|
|
|
bool shouldFlush = false;
|
2007-10-05 12:06:54 -07:00
|
|
|
nsIFrame* frame = mWeakFrame.GetFrame();
|
|
|
|
if (frame) {
|
2009-02-23 06:15:31 -08:00
|
|
|
nsAutoScriptBlocker scriptBlocker;
|
2012-04-27 00:42:10 -07:00
|
|
|
frame->AttributeChanged(kNameSpaceID_None, nsGkAtoms::mode, 0);
|
2011-10-17 07:59:28 -07:00
|
|
|
shouldFlush = true;
|
2007-10-05 12:06:54 -07:00
|
|
|
}
|
|
|
|
delete this;
|
|
|
|
return shouldFlush;
|
|
|
|
}
|
|
|
|
|
2007-11-30 23:22:44 -08:00
|
|
|
virtual void ReflowCallbackCanceled()
|
|
|
|
{
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
2007-10-05 12:06:54 -07:00
|
|
|
nsWeakFrame mWeakFrame;
|
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
2007-10-05 12:06:54 -07:00
|
|
|
nsProgressMeterFrame::DoLayout(nsBoxLayoutState& aState)
|
|
|
|
{
|
|
|
|
if (mNeedsReflowCallback) {
|
|
|
|
nsIReflowCallback* cb = new nsAsyncProgressMeterInit(this);
|
|
|
|
if (cb) {
|
|
|
|
PresContext()->PresShell()->PostReflowCallback(cb);
|
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
mNeedsReflowCallback = false;
|
2007-10-05 12:06:54 -07:00
|
|
|
}
|
|
|
|
return nsBoxFrame::DoLayout(aState);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 08:56:38 -07:00
|
|
|
nsProgressMeterFrame::AttributeChanged(int32_t aNameSpaceID,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aModType)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-02-23 06:15:31 -08:00
|
|
|
NS_ASSERTION(!nsContentUtils::IsSafeToRunScript(),
|
|
|
|
"Scripts not blocked in nsProgressMeterFrame::AttributeChanged!");
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult rv = nsBoxFrame::AttributeChanged(aNameSpaceID, aAttribute,
|
|
|
|
aModType);
|
|
|
|
if (NS_OK != rv) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// did the progress change?
|
2012-04-27 00:42:10 -07:00
|
|
|
bool undetermined = mContent->AttrValueIs(kNameSpaceID_None, nsGkAtoms::mode,
|
|
|
|
nsGkAtoms::undetermined, eCaseMatters);
|
|
|
|
if (nsGkAtoms::mode == aAttribute ||
|
|
|
|
(!undetermined &&
|
|
|
|
(nsGkAtoms::value == aAttribute || nsGkAtoms::max == aAttribute))) {
|
2011-08-24 13:54:30 -07:00
|
|
|
nsIFrame* barChild = GetFirstPrincipalChild();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!barChild) return NS_OK;
|
|
|
|
nsIFrame* remainderChild = barChild->GetNextSibling();
|
|
|
|
if (!remainderChild) return NS_OK;
|
|
|
|
nsCOMPtr<nsIContent> remainderContent = remainderChild->GetContent();
|
|
|
|
if (!remainderContent) return NS_OK;
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t flex = 1, maxFlex = 1;
|
2012-04-27 00:42:10 -07:00
|
|
|
if (!undetermined) {
|
|
|
|
nsAutoString value, maxValue;
|
|
|
|
mContent->GetAttr(kNameSpaceID_None, nsGkAtoms::value, value);
|
|
|
|
mContent->GetAttr(kNameSpaceID_None, nsGkAtoms::max, maxValue);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-04-27 00:42:10 -07:00
|
|
|
nsresult error;
|
|
|
|
flex = value.ToInteger(&error);
|
|
|
|
maxFlex = maxValue.ToInteger(&error);
|
|
|
|
if (NS_FAILED(error) || maxValue.IsEmpty()) {
|
|
|
|
maxFlex = 100;
|
|
|
|
}
|
|
|
|
if (maxFlex < 1) {
|
|
|
|
maxFlex = 1;
|
|
|
|
}
|
|
|
|
if (flex < 0) {
|
|
|
|
flex = 0;
|
|
|
|
}
|
|
|
|
if (flex > maxFlex) {
|
|
|
|
flex = maxFlex;
|
|
|
|
}
|
2008-10-30 02:34:23 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-01-19 01:29:48 -08:00
|
|
|
nsContentUtils::AddScriptRunner(new nsSetAttrRunnable(
|
2010-05-03 06:23:36 -07:00
|
|
|
barChild->GetContent(), nsGkAtoms::flex, flex));
|
2009-01-19 01:29:48 -08:00
|
|
|
nsContentUtils::AddScriptRunner(new nsSetAttrRunnable(
|
2010-05-03 06:23:36 -07:00
|
|
|
remainderContent, nsGkAtoms::flex, maxFlex - flex));
|
2009-01-19 01:29:48 -08:00
|
|
|
nsContentUtils::AddScriptRunner(new nsReflowFrameRunnable(
|
|
|
|
this, nsIPresShell::eTreeChange, NS_FRAME_IS_DIRTY));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-06-25 12:59:42 -07:00
|
|
|
#ifdef DEBUG
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsProgressMeterFrame::GetFrameName(nsAString& aResult) const
|
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("ProgressMeter"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|