mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
158 lines
4.2 KiB
C++
158 lines
4.2 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/. */
|
|
|
|
#ifndef nsFileControlFrame_h___
|
|
#define nsFileControlFrame_h___
|
|
|
|
#include "mozilla/Attributes.h"
|
|
#include "nsBlockFrame.h"
|
|
#include "nsIFormControlFrame.h"
|
|
#include "nsIDOMEventListener.h"
|
|
#include "nsIAnonymousContentCreator.h"
|
|
#include "nsCOMPtr.h"
|
|
|
|
class nsTextControlFrame;
|
|
class nsIDOMDragEvent;
|
|
|
|
class nsFileControlFrame : public nsBlockFrame,
|
|
public nsIFormControlFrame,
|
|
public nsIAnonymousContentCreator
|
|
{
|
|
public:
|
|
nsFileControlFrame(nsStyleContext* aContext);
|
|
|
|
virtual void Init(nsIContent* aContent,
|
|
nsIFrame* aParent,
|
|
nsIFrame* aPrevInFlow) MOZ_OVERRIDE;
|
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
const nsRect& aDirtyRect,
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
|
|
|
NS_DECL_QUERYFRAME
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
// nsIFormControlFrame
|
|
virtual nsresult SetFormProperty(nsIAtom* aName, const nsAString& aValue) MOZ_OVERRIDE;
|
|
virtual void SetFocus(bool aOn, bool aRepaint) MOZ_OVERRIDE;
|
|
|
|
virtual nscoord GetMinWidth(nsRenderingContext *aRenderingContext) MOZ_OVERRIDE;
|
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) MOZ_OVERRIDE;
|
|
|
|
#ifdef DEBUG
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const MOZ_OVERRIDE;
|
|
#endif
|
|
|
|
NS_IMETHOD AttributeChanged(int32_t aNameSpaceID,
|
|
nsIAtom* aAttribute,
|
|
int32_t aModType) MOZ_OVERRIDE;
|
|
virtual void ContentStatesChanged(nsEventStates aStates);
|
|
virtual bool IsLeaf() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
// nsIAnonymousContentCreator
|
|
virtual nsresult CreateAnonymousContent(nsTArray<ContentInfo>& aElements) MOZ_OVERRIDE;
|
|
virtual void AppendAnonymousContentTo(nsBaseContentList& aElements,
|
|
uint32_t aFilter) MOZ_OVERRIDE;
|
|
|
|
#ifdef ACCESSIBILITY
|
|
virtual mozilla::a11y::AccType AccessibleType() MOZ_OVERRIDE;
|
|
#endif
|
|
|
|
typedef bool (*AcceptAttrCallback)(const nsAString&, void*);
|
|
|
|
protected:
|
|
|
|
class MouseListener;
|
|
friend class MouseListener;
|
|
class MouseListener : public nsIDOMEventListener {
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
|
|
MouseListener(nsFileControlFrame* aFrame)
|
|
: mFrame(aFrame)
|
|
{}
|
|
virtual ~MouseListener() {}
|
|
|
|
void ForgetFrame() {
|
|
mFrame = nullptr;
|
|
}
|
|
|
|
protected:
|
|
nsFileControlFrame* mFrame;
|
|
};
|
|
|
|
class SyncDisabledStateEvent;
|
|
friend class SyncDisabledStateEvent;
|
|
class SyncDisabledStateEvent : public nsRunnable
|
|
{
|
|
public:
|
|
SyncDisabledStateEvent(nsFileControlFrame* aFrame)
|
|
: mFrame(aFrame)
|
|
{}
|
|
|
|
NS_IMETHOD Run() MOZ_OVERRIDE {
|
|
nsFileControlFrame* frame = static_cast<nsFileControlFrame*>(mFrame.GetFrame());
|
|
NS_ENSURE_STATE(frame);
|
|
|
|
frame->SyncDisabledState();
|
|
return NS_OK;
|
|
}
|
|
|
|
private:
|
|
nsWeakFrame mFrame;
|
|
};
|
|
|
|
class DnDListener: public MouseListener {
|
|
public:
|
|
DnDListener(nsFileControlFrame* aFrame)
|
|
: MouseListener(aFrame)
|
|
{}
|
|
|
|
NS_DECL_NSIDOMEVENTLISTENER
|
|
|
|
static bool IsValidDropData(nsIDOMDragEvent* aEvent);
|
|
};
|
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const MOZ_OVERRIDE
|
|
{
|
|
return nsBlockFrame::IsFrameOfType(aFlags &
|
|
~(nsIFrame::eReplaced | nsIFrame::eReplacedContainsBlock));
|
|
}
|
|
|
|
/**
|
|
* The text box input.
|
|
* @see nsFileControlFrame::CreateAnonymousContent
|
|
*/
|
|
nsCOMPtr<nsIContent> mTextContent;
|
|
/**
|
|
* The browse button input.
|
|
* @see nsFileControlFrame::CreateAnonymousContent
|
|
*/
|
|
nsCOMPtr<nsIContent> mBrowse;
|
|
|
|
/**
|
|
* Drag and drop mouse listener.
|
|
* This makes sure we don't get used after destruction.
|
|
*/
|
|
nsRefPtr<DnDListener> mMouseListener;
|
|
|
|
protected:
|
|
/**
|
|
* Sync the disabled state of the content with anonymous children.
|
|
*/
|
|
void SyncDisabledState();
|
|
|
|
/**
|
|
* Updates the displayed value by using aValue.
|
|
*/
|
|
void UpdateDisplayedValue(const nsAString& aValue, bool aNotify);
|
|
};
|
|
|
|
#endif // nsFileControlFrame_h___
|