2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 18:30:37 +04:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-09-23 21:44:33 +04:00
|
|
|
*
|
2004-04-18 18:30:37 +04:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
1998-09-23 21:44:33 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1998-09-23 21:44:33 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 18:30:37 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-29 00:14:13 +04:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 06:40:37 +03:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 18:30:37 +04:00
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2001-09-29 00:14:13 +04:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-18 18:30:37 +04:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-29 00:14:13 +04:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-18 18:30:37 +04:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-29 00:14:13 +04:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1998-09-23 21:44:33 +04:00
|
|
|
|
|
|
|
#ifndef nsFileControlFrame_h___
|
|
|
|
#define nsFileControlFrame_h___
|
|
|
|
|
2008-12-29 18:07:38 +03:00
|
|
|
#include "nsBlockFrame.h"
|
1998-09-23 21:44:33 +04:00
|
|
|
#include "nsIFormControlFrame.h"
|
2011-06-29 22:07:57 +04:00
|
|
|
#include "nsIDOMEventListener.h"
|
1999-07-01 02:17:43 +04:00
|
|
|
#include "nsIAnonymousContentCreator.h"
|
2010-07-24 01:35:51 +04:00
|
|
|
#include "nsICapturePicker.h"
|
2000-08-04 03:39:33 +04:00
|
|
|
#include "nsCOMPtr.h"
|
1999-07-01 02:17:43 +04:00
|
|
|
|
2011-11-18 07:51:41 +04:00
|
|
|
class nsTextControlFrame;
|
2011-06-01 10:06:38 +04:00
|
|
|
class nsIDOMDragEvent;
|
|
|
|
|
2008-12-29 18:07:38 +03:00
|
|
|
class nsFileControlFrame : public nsBlockFrame,
|
1999-07-01 02:17:43 +04:00
|
|
|
public nsIFormControlFrame,
|
2002-03-31 14:14:01 +04:00
|
|
|
public nsIAnonymousContentCreator
|
1998-09-23 21:44:33 +04:00
|
|
|
{
|
|
|
|
public:
|
2006-03-27 01:30:36 +04:00
|
|
|
nsFileControlFrame(nsStyleContext* aContext);
|
1998-09-23 21:44:33 +04:00
|
|
|
|
2006-11-14 01:05:25 +03:00
|
|
|
NS_IMETHOD Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow);
|
|
|
|
|
2006-01-26 05:29:17 +03:00
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2005-12-13 02:53:06 +03:00
|
|
|
// nsIFormControlFrame
|
|
|
|
virtual nsresult SetFormProperty(nsIAtom* aName, const nsAString& aValue);
|
|
|
|
virtual nsresult GetFormProperty(nsIAtom* aName, nsAString& aValue) const;
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual void SetFocus(bool aOn, bool aRepaint);
|
1998-09-23 21:44:33 +04:00
|
|
|
|
2011-04-08 05:04:40 +04:00
|
|
|
virtual nscoord GetMinWidth(nsRenderingContext *aRenderingContext);
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
|
2009-12-24 08:21:15 +03:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot);
|
1998-09-23 21:44:33 +04:00
|
|
|
|
1999-11-02 01:12:45 +03:00
|
|
|
#ifdef NS_DEBUG
|
2001-11-14 04:33:42 +03:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
1999-11-02 01:12:45 +03:00
|
|
|
#endif
|
2005-12-13 02:53:06 +03:00
|
|
|
|
2005-09-07 20:49:21 +04:00
|
|
|
NS_IMETHOD AttributeChanged(PRInt32 aNameSpaceID,
|
1999-08-19 18:03:53 +04:00
|
|
|
nsIAtom* aAttribute,
|
2003-07-12 01:16:12 +04:00
|
|
|
PRInt32 aModType);
|
2010-12-14 21:00:57 +03:00
|
|
|
virtual void ContentStatesChanged(nsEventStates aStates);
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool IsLeaf() const;
|
1998-11-19 20:22:29 +03:00
|
|
|
|
2005-12-13 02:53:06 +03:00
|
|
|
|
1999-01-22 18:32:57 +03:00
|
|
|
|
2007-02-18 20:34:09 +03:00
|
|
|
// nsIAnonymousContentCreator
|
2011-05-07 00:04:44 +04:00
|
|
|
virtual nsresult CreateAnonymousContent(nsTArray<ContentInfo>& aElements);
|
2010-10-15 19:34:35 +04:00
|
|
|
virtual void AppendAnonymousContentTo(nsBaseContentList& aElements,
|
|
|
|
PRUint32 aFilter);
|
1999-07-01 02:17:43 +04:00
|
|
|
|
2007-09-28 05:09:14 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
2010-06-28 16:02:03 +04:00
|
|
|
virtual already_AddRefed<nsAccessible> CreateAccessible();
|
2012-03-12 14:36:02 +04:00
|
|
|
#endif
|
2007-09-28 05:09:14 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
typedef bool (*AcceptAttrCallback)(const nsAString&, void*);
|
2010-07-21 20:07:55 +04:00
|
|
|
|
1998-09-23 21:44:33 +04:00
|
|
|
protected:
|
2012-03-12 14:36:02 +04:00
|
|
|
|
|
|
|
struct CaptureCallbackData {
|
|
|
|
nsICapturePicker* picker;
|
|
|
|
PRUint32 mode;
|
|
|
|
};
|
|
|
|
|
|
|
|
PRUint32 GetCaptureMode(const CaptureCallbackData& aData);
|
|
|
|
|
2006-11-14 01:05:25 +03:00
|
|
|
class MouseListener;
|
|
|
|
friend class MouseListener;
|
2011-06-29 22:07:57 +04:00
|
|
|
class MouseListener : public nsIDOMEventListener {
|
2006-11-14 01:05:25 +03:00
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2012-05-07 20:27:24 +04:00
|
|
|
MouseListener(nsFileControlFrame* aFrame)
|
|
|
|
: mFrame(aFrame)
|
2006-11-14 01:05:25 +03:00
|
|
|
{}
|
|
|
|
|
|
|
|
void ForgetFrame() {
|
|
|
|
mFrame = nsnull;
|
|
|
|
}
|
|
|
|
|
2010-07-24 01:35:51 +04:00
|
|
|
protected:
|
2006-11-14 01:05:25 +03:00
|
|
|
nsFileControlFrame* mFrame;
|
|
|
|
};
|
2010-12-14 21:00:57 +03:00
|
|
|
|
|
|
|
class SyncDisabledStateEvent;
|
|
|
|
friend class SyncDisabledStateEvent;
|
|
|
|
class SyncDisabledStateEvent : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SyncDisabledStateEvent(nsFileControlFrame* aFrame)
|
|
|
|
: mFrame(aFrame)
|
|
|
|
{}
|
|
|
|
|
|
|
|
NS_IMETHOD Run() {
|
|
|
|
nsFileControlFrame* frame = static_cast<nsFileControlFrame*>(mFrame.GetFrame());
|
|
|
|
NS_ENSURE_STATE(frame);
|
|
|
|
|
|
|
|
frame->SyncDisabledState();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsWeakFrame mFrame;
|
|
|
|
};
|
|
|
|
|
2010-07-24 01:35:51 +04:00
|
|
|
class CaptureMouseListener: public MouseListener {
|
|
|
|
public:
|
2012-05-07 20:27:24 +04:00
|
|
|
CaptureMouseListener(nsFileControlFrame* aFrame)
|
|
|
|
: MouseListener(aFrame)
|
|
|
|
, mMode(0)
|
|
|
|
{}
|
|
|
|
|
2011-06-29 22:07:57 +04:00
|
|
|
NS_DECL_NSIDOMEVENTLISTENER
|
2010-07-24 01:35:51 +04:00
|
|
|
PRUint32 mMode;
|
|
|
|
};
|
|
|
|
|
|
|
|
class BrowseMouseListener: public MouseListener {
|
|
|
|
public:
|
2012-05-07 20:27:24 +04:00
|
|
|
BrowseMouseListener(nsFileControlFrame* aFrame)
|
|
|
|
: MouseListener(aFrame)
|
|
|
|
{}
|
|
|
|
|
2011-06-29 22:07:57 +04:00
|
|
|
NS_DECL_NSIDOMEVENTLISTENER
|
2011-06-01 10:06:38 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
static bool IsValidDropData(nsIDOMDragEvent* aEvent);
|
2010-07-24 01:35:51 +04:00
|
|
|
};
|
2010-08-27 19:49:06 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool IsFrameOfType(PRUint32 aFlags) const
|
2007-02-24 21:33:33 +03:00
|
|
|
{
|
2008-12-29 18:07:38 +03:00
|
|
|
return nsBlockFrame::IsFrameOfType(aFlags &
|
2007-02-24 21:33:33 +03:00
|
|
|
~(nsIFrame::eReplaced | nsIFrame::eReplacedContainsBlock));
|
|
|
|
}
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
|
1998-09-23 21:44:33 +04:00
|
|
|
virtual PRIntn GetSkipSides() const;
|
|
|
|
|
2002-06-12 11:58:26 +04:00
|
|
|
/**
|
|
|
|
* The text box input.
|
|
|
|
* @see nsFileControlFrame::CreateAnonymousContent
|
|
|
|
*/
|
|
|
|
nsCOMPtr<nsIContent> mTextContent;
|
|
|
|
/**
|
|
|
|
* The browse button input.
|
|
|
|
* @see nsFileControlFrame::CreateAnonymousContent
|
|
|
|
*/
|
|
|
|
nsCOMPtr<nsIContent> mBrowse;
|
1998-09-23 21:44:33 +04:00
|
|
|
|
2010-07-24 01:35:51 +04:00
|
|
|
/**
|
|
|
|
* The capture button input.
|
|
|
|
* @see nsFileControlFrame::CreateAnonymousContent
|
|
|
|
*/
|
|
|
|
nsCOMPtr<nsIContent> mCapture;
|
|
|
|
|
2006-11-14 01:05:25 +03:00
|
|
|
/**
|
|
|
|
* Our mouse listener. This makes sure we don't get used after destruction.
|
|
|
|
*/
|
2010-07-24 01:35:51 +04:00
|
|
|
nsRefPtr<BrowseMouseListener> mMouseListener;
|
|
|
|
nsRefPtr<CaptureMouseListener> mCaptureMouseListener;
|
2006-11-14 01:05:25 +03:00
|
|
|
|
2011-11-18 07:51:41 +04:00
|
|
|
protected:
|
2002-06-12 11:58:26 +04:00
|
|
|
/**
|
|
|
|
* @return the text control frame, or null if not found
|
|
|
|
*/
|
2011-11-18 07:51:41 +04:00
|
|
|
nsTextControlFrame* GetTextControlFrame();
|
2002-06-12 11:58:26 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Copy an attribute from file content to text and button content.
|
|
|
|
* @param aNameSpaceID namespace of attr
|
|
|
|
* @param aAttribute attribute atom
|
2010-12-14 21:00:57 +03:00
|
|
|
* @param aWhichControls which controls to apply to (SYNC_TEXT or SYNC_FILE)
|
2002-06-12 11:58:26 +04:00
|
|
|
*/
|
|
|
|
void SyncAttr(PRInt32 aNameSpaceID, nsIAtom* aAttribute,
|
2008-09-09 21:07:26 +04:00
|
|
|
PRInt32 aWhichControls);
|
2010-12-14 21:00:57 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sync the disabled state of the content with anonymous children.
|
|
|
|
*/
|
|
|
|
void SyncDisabledState();
|
1998-09-23 21:44:33 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|