1998-09-23 17:16:51 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1998-09-23 17:16:51 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00: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 17:16:51 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1998-09-23 17:16:51 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:40:37 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1998-09-23 17:16:51 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsFileControlFrame.h"
|
1998-10-13 21:31:26 +00:00
|
|
|
#include "nsFormFrame.h"
|
2000-05-02 03:40:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
1998-09-23 17:16:51 +00:00
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "prtypes.h"
|
|
|
|
#include "nsIAtom.h"
|
|
|
|
#include "nsIPresContext.h"
|
|
|
|
#include "nsIHTMLContent.h"
|
|
|
|
#include "nsHTMLIIDs.h"
|
|
|
|
#include "nsHTMLAtoms.h"
|
2000-01-14 09:28:54 +00:00
|
|
|
#include "nsIPresState.h"
|
1998-09-23 17:16:51 +00:00
|
|
|
#include "nsWidgetsCID.h"
|
1999-03-09 09:44:27 +00:00
|
|
|
#include "nsIComponentManager.h"
|
1998-09-23 17:16:51 +00:00
|
|
|
#include "nsIView.h"
|
|
|
|
#include "nsHTMLParts.h"
|
|
|
|
#include "nsIDOMHTMLInputElement.h"
|
|
|
|
#include "nsIFormControl.h"
|
1998-12-20 01:21:23 +00:00
|
|
|
#include "nsINameSpaceManager.h"
|
1999-02-18 00:13:39 +00:00
|
|
|
#include "nsCOMPtr.h"
|
1999-06-30 22:17:43 +00:00
|
|
|
#include "nsISupportsArray.h"
|
|
|
|
#include "nsIDOMElement.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
2000-12-30 19:22:22 +00:00
|
|
|
#include "nsIDocument.h"
|
1999-06-30 22:17:43 +00:00
|
|
|
#include "nsIDOMMouseListener.h"
|
1999-08-21 00:09:24 +00:00
|
|
|
#include "nsIPresShell.h"
|
1999-09-07 23:20:32 +00:00
|
|
|
#include "nsIDOMHTMLInputElement.h"
|
1999-09-15 05:31:31 +00:00
|
|
|
#include "nsIStatefulFrame.h"
|
|
|
|
#include "nsISupportsPrimitives.h"
|
|
|
|
#include "nsIComponentManager.h"
|
2000-09-01 01:54:35 +00:00
|
|
|
#include "nsIDOMWindowInternal.h"
|
2000-08-18 18:16:12 +00:00
|
|
|
#include "nsIFilePicker.h"
|
2000-08-25 13:25:50 +00:00
|
|
|
#include "nsIDOMMouseEvent.h"
|
2000-12-30 19:22:22 +00:00
|
|
|
#include "nsINodeInfo.h"
|
|
|
|
#include "nsIDOMEventReceiver.h"
|
|
|
|
#include "nsIScriptGlobalObject.h"
|
1998-09-23 17:16:51 +00:00
|
|
|
|
2000-05-16 23:29:35 +00:00
|
|
|
|
1998-09-23 17:16:51 +00:00
|
|
|
|
|
|
|
nsresult
|
1999-12-04 23:49:50 +00:00
|
|
|
NS_NewFileControlFrame(nsIPresShell* aPresShell, nsIFrame** aNewFrame)
|
1998-09-23 17:16:51 +00:00
|
|
|
{
|
1999-05-11 22:03:29 +00:00
|
|
|
NS_PRECONDITION(aNewFrame, "null OUT ptr");
|
|
|
|
if (nsnull == aNewFrame) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
1999-12-04 23:49:50 +00:00
|
|
|
nsFileControlFrame* it = new (aPresShell) nsFileControlFrame();
|
1999-05-11 22:03:29 +00:00
|
|
|
if (!it) {
|
1998-09-23 17:16:51 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
1999-05-11 22:03:29 +00:00
|
|
|
*aNewFrame = it;
|
1998-09-23 17:16:51 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-08-19 14:03:53 +00:00
|
|
|
nsFileControlFrame::nsFileControlFrame():
|
|
|
|
mTextFrame(nsnull),
|
|
|
|
mFormFrame(nsnull),
|
1999-09-19 07:25:12 +00:00
|
|
|
mTextContent(nsnull),
|
|
|
|
mCachedState(nsnull)
|
1998-09-23 17:16:51 +00:00
|
|
|
{
|
fixed bugs #6303, #6753, #6756, #6759
Re-wrote nsComboboxFrame.
removed the obsolete nsHTMLAtoms: comboText,comoTextSelected,comTextSelectedFocus,dropDownVisible,
dropdownHidden, dropDownBtnOut, dropDownBtnPressed,
Added nsHTMLAtoms::combobox, nsLayoutAtoms::popupList
Renamed dropDownList to dropDownListPseudo
Added "arrow.gif" as to be used the background-image for the combobox button
ua.css - added rules for select to differentiate between comboboxes and listboxes.
Added style rules to more closely match the XPTOOLKIT XPWidgets look.
removed the following :-moz-combobox-text, -moz-combobox-textselected
nsIFormControlFrame.h - Added SetSuggestedSize method.
nsButtonControlFrame - Implemented SetSuggestedSize.
nsCSSFrameConstructor.cpp - Rewrote ConstructSelectFrame.
nsIWidget.h -Added GetAbsoluteBounds method.
nsWindow.cpp - Implemented GetAbsoluteBounds.
1999-07-14 22:00:24 +00:00
|
|
|
//Shrink the area around it's contents
|
|
|
|
SetFlags(NS_BLOCK_SHRINK_WRAP);
|
1999-06-30 22:17:43 +00:00
|
|
|
}
|
|
|
|
|
1999-08-19 14:03:53 +00:00
|
|
|
nsFileControlFrame::~nsFileControlFrame()
|
|
|
|
{
|
|
|
|
NS_IF_RELEASE(mTextContent);
|
2000-08-03 23:39:33 +00:00
|
|
|
|
|
|
|
// remove ourself as a listener of the button (bug 40533)
|
|
|
|
if (mBrowse) {
|
|
|
|
nsCOMPtr<nsIDOMEventReceiver> reciever(do_QueryInterface(mBrowse));
|
2001-01-04 20:44:42 +00:00
|
|
|
reciever->RemoveEventListenerByIID(this, NS_GET_IID(nsIDOMMouseListener));
|
2000-08-03 23:39:33 +00:00
|
|
|
}
|
|
|
|
|
1999-09-15 05:31:31 +00:00
|
|
|
if (mCachedState) {
|
|
|
|
delete mCachedState;
|
|
|
|
mCachedState = nsnull;
|
|
|
|
}
|
1999-11-04 23:16:47 +00:00
|
|
|
if (mFormFrame) {
|
|
|
|
mFormFrame->RemoveFormControlFrame(*this);
|
|
|
|
mFormFrame = nsnull;
|
|
|
|
}
|
1999-08-19 14:03:53 +00:00
|
|
|
}
|
|
|
|
|
1999-06-30 22:17:43 +00:00
|
|
|
NS_IMETHODIMP
|
2000-01-22 01:16:50 +00:00
|
|
|
nsFileControlFrame::CreateAnonymousContent(nsIPresContext* aPresContext,
|
|
|
|
nsISupportsArray& aChildList)
|
1999-06-30 22:17:43 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
// create text field
|
2000-05-10 13:13:39 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIDocument> doc;
|
|
|
|
mContent->GetDocument(*getter_AddRefs(doc));
|
|
|
|
nsCOMPtr<nsINodeInfoManager> nimgr;
|
|
|
|
nsresult rv = doc->GetNodeInfoManager(*getter_AddRefs(nimgr));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsINodeInfo> nodeInfo;
|
|
|
|
nimgr->GetNodeInfo(nsHTMLAtoms::input, nsnull, kNameSpaceID_None,
|
|
|
|
*getter_AddRefs(nodeInfo));
|
|
|
|
|
|
|
|
if (NS_OK == NS_NewHTMLInputElement(&mTextContent, nodeInfo)) {
|
2000-04-15 21:18:29 +00:00
|
|
|
mTextContent->SetAttribute(kNameSpaceID_None, nsHTMLAtoms::type, NS_ConvertASCIItoUCS2("text"), PR_FALSE);
|
1999-08-19 14:03:53 +00:00
|
|
|
if (nsFormFrame::GetDisabled(this)) {
|
1999-09-07 23:20:32 +00:00
|
|
|
nsCOMPtr<nsIDOMHTMLInputElement> textControl = do_QueryInterface(mTextContent);
|
|
|
|
if (textControl) {
|
|
|
|
textControl->SetDisabled(nsFormFrame::GetDisabled(this));
|
|
|
|
}
|
1999-08-19 14:03:53 +00:00
|
|
|
}
|
|
|
|
aChildList.AppendElement(mTextContent);
|
|
|
|
}
|
1999-06-30 22:17:43 +00:00
|
|
|
|
|
|
|
// create browse button
|
2000-08-03 23:39:33 +00:00
|
|
|
if (NS_OK == NS_NewHTMLInputElement(getter_AddRefs(mBrowse), nodeInfo)) {
|
|
|
|
mBrowse->SetAttribute(kNameSpaceID_None, nsHTMLAtoms::type, NS_ConvertASCIItoUCS2("button"), PR_FALSE);
|
1999-08-19 14:03:53 +00:00
|
|
|
//browse->SetAttribute(kNameSpaceID_None, nsHTMLAtoms::value, nsAutoString("browse..."), PR_FALSE);
|
1999-06-30 22:17:43 +00:00
|
|
|
|
2000-08-03 23:39:33 +00:00
|
|
|
aChildList.AppendElement(mBrowse);
|
1999-08-19 14:03:53 +00:00
|
|
|
|
2000-08-03 23:39:33 +00:00
|
|
|
// register as an event listener of the button to open file dialog on mouse click
|
|
|
|
nsCOMPtr<nsIDOMEventReceiver> reciever(do_QueryInterface(mBrowse));
|
2001-01-04 20:44:42 +00:00
|
|
|
reciever->AddEventListenerByIID(this, NS_GET_IID(nsIDOMMouseListener));
|
1999-08-19 14:03:53 +00:00
|
|
|
}
|
1999-06-30 22:17:43 +00:00
|
|
|
|
2000-01-13 23:34:01 +00:00
|
|
|
nsString value;
|
|
|
|
if (NS_CONTENT_ATTR_HAS_VALUE == mContent->GetAttribute(kNameSpaceID_None, nsHTMLAtoms::size, value)) {
|
|
|
|
mTextContent->SetAttribute(kNameSpaceID_None, nsHTMLAtoms::size, value, PR_FALSE);
|
|
|
|
}
|
|
|
|
|
1999-06-30 22:17:43 +00:00
|
|
|
return NS_OK;
|
1998-09-23 17:16:51 +00:00
|
|
|
}
|
|
|
|
|
1999-11-02 01:50:15 +00:00
|
|
|
// Frames are not refcounted, no need to AddRef
|
1999-09-15 05:31:31 +00:00
|
|
|
NS_IMETHODIMP
|
1998-09-23 17:16:51 +00:00
|
|
|
nsFileControlFrame::QueryInterface(const nsIID& aIID, void** aInstancePtr)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(0 != aInstancePtr, "null ptr");
|
|
|
|
if (NULL == aInstancePtr) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
2001-01-04 20:44:42 +00:00
|
|
|
} else if (aIID.Equals(NS_GET_IID(nsIAnonymousContentCreator))) {
|
1999-09-15 05:31:31 +00:00
|
|
|
*aInstancePtr = (void*)(nsIAnonymousContentCreator*) this;
|
|
|
|
return NS_OK;
|
2001-01-04 20:44:42 +00:00
|
|
|
} else if (aIID.Equals(NS_GET_IID(nsIFormControlFrame))) {
|
1998-09-23 17:16:51 +00:00
|
|
|
*aInstancePtr = (void*) ((nsIFormControlFrame*) this);
|
|
|
|
return NS_OK;
|
2001-01-04 20:44:42 +00:00
|
|
|
} else if (aIID.Equals(NS_GET_IID(nsIDOMMouseListener))) {
|
1999-09-15 05:31:31 +00:00
|
|
|
*aInstancePtr = (void*)(nsIDOMMouseListener*) this;
|
|
|
|
return NS_OK;
|
|
|
|
} else if (aIID.Equals(NS_GET_IID(nsIStatefulFrame))) {
|
|
|
|
*aInstancePtr = (void*)(nsIStatefulFrame*) this;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1998-09-23 17:16:51 +00:00
|
|
|
return nsHTMLContainerFrame::QueryInterface(aIID, aInstancePtr);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
1998-10-30 18:05:29 +00:00
|
|
|
nsFileControlFrame::IsSuccessful(nsIFormControlFrame* aSubmitter)
|
1998-09-23 17:16:51 +00:00
|
|
|
{
|
|
|
|
nsAutoString name;
|
2000-08-03 23:32:02 +00:00
|
|
|
PRBool disabled = PR_FALSE;
|
|
|
|
nsFormControlHelper::GetDisabled(mContent, &disabled);
|
|
|
|
return !disabled && (NS_CONTENT_ATTR_HAS_VALUE == GetName(&name));
|
1998-09-23 17:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-10-26 04:44:41 +00:00
|
|
|
nsFileControlFrame::Reset(nsIPresContext* aPresContext)
|
1998-09-23 17:16:51 +00:00
|
|
|
{
|
|
|
|
if (mTextFrame) {
|
1999-11-03 00:01:13 +00:00
|
|
|
mTextFrame->Reset(aPresContext);
|
1998-09-23 17:16:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFileControlFrame::GetType(PRInt32* aType) const
|
|
|
|
{
|
|
|
|
*aType = NS_FORM_INPUT_FILE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-10-22 23:00:37 +00:00
|
|
|
void
|
|
|
|
nsFileControlFrame::SetFocus(PRBool aOn, PRBool aRepaint)
|
|
|
|
{
|
2000-11-30 21:39:28 +00:00
|
|
|
// Fix for Bug 6133
|
1998-10-22 23:00:37 +00:00
|
|
|
if (mTextFrame) {
|
2000-11-30 21:39:28 +00:00
|
|
|
nsCOMPtr<nsIContent> content;
|
|
|
|
mTextFrame->GetContent(getter_AddRefs(content));
|
|
|
|
if (content) {
|
|
|
|
content->SetFocus(mPresContext);
|
|
|
|
}
|
1998-10-22 23:00:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-08-21 00:09:24 +00:00
|
|
|
void
|
|
|
|
nsFileControlFrame::ScrollIntoView(nsIPresContext* aPresContext)
|
|
|
|
{
|
|
|
|
if (aPresContext) {
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
aPresContext->GetShell(getter_AddRefs(presShell));
|
2000-09-08 05:53:28 +00:00
|
|
|
if (presShell) {
|
|
|
|
presShell->ScrollFrameIntoView(this,
|
2000-01-25 15:24:48 +00:00
|
|
|
NS_PRESSHELL_SCROLL_IF_NOT_VISIBLE,NS_PRESSHELL_SCROLL_IF_NOT_VISIBLE);
|
2000-09-08 05:53:28 +00:00
|
|
|
}
|
1999-08-21 00:09:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-06-30 22:17:43 +00:00
|
|
|
/**
|
|
|
|
* This is called when our browse button is clicked
|
|
|
|
*/
|
|
|
|
nsresult
|
|
|
|
nsFileControlFrame::MouseClick(nsIDOMEvent* aMouseEvent)
|
1998-09-23 17:16:51 +00:00
|
|
|
{
|
2000-08-25 13:25:50 +00:00
|
|
|
// only allow the left button
|
|
|
|
nsCOMPtr<nsIDOMMouseEvent> mouseEvent = do_QueryInterface(aMouseEvent);
|
|
|
|
if (mouseEvent) {
|
|
|
|
PRUint16 whichButton;
|
|
|
|
if (NS_SUCCEEDED(mouseEvent->GetButton(&whichButton))) {
|
|
|
|
if (whichButton != 1) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-18 18:16:12 +00:00
|
|
|
nsresult result;
|
2000-06-07 01:21:20 +00:00
|
|
|
|
2000-09-01 01:54:35 +00:00
|
|
|
// Get parent nsIDOMWindowInternal object.
|
2000-08-18 18:16:12 +00:00
|
|
|
nsCOMPtr<nsIContent> content;
|
|
|
|
result = GetContent(getter_AddRefs(content));
|
|
|
|
if (!content)
|
|
|
|
return NS_FAILED(result) ? result : NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocument> doc;
|
|
|
|
result = content->GetDocument(*getter_AddRefs(doc));
|
|
|
|
if (!doc)
|
|
|
|
return NS_FAILED(result) ? result : NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIScriptGlobalObject> scriptGlobalObject;
|
|
|
|
result = doc->GetScriptGlobalObject(getter_AddRefs(scriptGlobalObject));
|
|
|
|
if (!scriptGlobalObject)
|
|
|
|
return NS_FAILED(result) ? result : NS_ERROR_FAILURE;
|
|
|
|
|
2000-09-01 01:54:35 +00:00
|
|
|
nsCOMPtr<nsIDOMWindowInternal> parentWindow = do_QueryInterface(scriptGlobalObject);
|
2000-08-18 18:16:12 +00:00
|
|
|
if (!parentWindow)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// Get Loc title
|
|
|
|
nsString title;
|
2001-01-27 14:09:34 +00:00
|
|
|
nsFormControlHelper::GetLocalizedString(nsFormControlHelper::GetHTMLPropertiesFileName(),
|
|
|
|
"FileUpload", title);
|
2000-05-27 13:03:18 +00:00
|
|
|
|
2000-09-13 23:57:52 +00:00
|
|
|
nsCOMPtr<nsIFilePicker> filePicker = do_CreateInstance("@mozilla.org/filepicker;1");
|
2000-08-18 18:16:12 +00:00
|
|
|
if (!filePicker)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
result = filePicker->Init(parentWindow, title.GetUnicode(), nsIFilePicker::modeOpen);
|
|
|
|
if (NS_FAILED(result))
|
|
|
|
return result;
|
|
|
|
|
|
|
|
// Set filter "All Files"
|
|
|
|
filePicker->AppendFilters(nsIFilePicker::filterAll);
|
|
|
|
|
|
|
|
// Set default directry and filename
|
|
|
|
nsAutoString defaultName;
|
|
|
|
GetProperty(nsHTMLAtoms::value, defaultName);
|
|
|
|
|
2000-09-13 23:57:52 +00:00
|
|
|
nsCOMPtr<nsILocalFile> currentFile = do_CreateInstance("@mozilla.org/file/local;1");
|
2000-08-18 18:16:12 +00:00
|
|
|
if (currentFile && !defaultName.IsEmpty()) {
|
|
|
|
result = currentFile->InitWithUnicodePath(defaultName.GetUnicode());
|
|
|
|
if (NS_SUCCEEDED(result)) {
|
|
|
|
PRUnichar *leafName = nsnull;
|
|
|
|
currentFile->GetUnicodeLeafName(&leafName);
|
|
|
|
if (leafName) {
|
|
|
|
filePicker->SetDefaultString(leafName);
|
2000-11-30 21:39:28 +00:00
|
|
|
nsMemory::Free(leafName);
|
2000-08-18 18:16:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// set directory
|
|
|
|
nsCOMPtr<nsIFile> parentFile;
|
|
|
|
currentFile->GetParent(getter_AddRefs(parentFile));
|
|
|
|
if (parentFile) {
|
|
|
|
nsCOMPtr<nsILocalFile> parentLocalFile = do_QueryInterface(parentFile, &result);
|
|
|
|
if (parentLocalFile)
|
|
|
|
filePicker->SetDisplayDirectory(parentLocalFile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open dialog
|
|
|
|
PRInt16 mode;
|
|
|
|
result = filePicker->Show(&mode);
|
|
|
|
if (NS_FAILED(result))
|
|
|
|
return result;
|
|
|
|
if (mode == nsIFilePicker::returnCancel)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
// Set property
|
|
|
|
nsCOMPtr<nsILocalFile> localFile;
|
|
|
|
result = filePicker->GetFile(getter_AddRefs(localFile));
|
|
|
|
if (localFile) {
|
2000-11-30 21:39:28 +00:00
|
|
|
PRUnichar *nativePath = nsnull;
|
2000-08-18 18:16:12 +00:00
|
|
|
result = localFile->GetUnicodePath(&nativePath);
|
|
|
|
if (nativePath) {
|
|
|
|
nsAutoString pathName(nativePath);
|
2000-02-11 01:08:56 +00:00
|
|
|
mTextFrame->SetProperty(mPresContext, nsHTMLAtoms::value, pathName);
|
2000-11-30 21:39:28 +00:00
|
|
|
nsMemory::Free(nativePath);
|
2000-08-18 18:16:12 +00:00
|
|
|
return NS_OK;
|
1999-09-19 07:25:12 +00:00
|
|
|
}
|
1998-09-23 17:16:51 +00:00
|
|
|
}
|
2000-08-18 18:16:12 +00:00
|
|
|
|
|
|
|
return NS_FAILED(result) ? result : NS_ERROR_FAILURE;
|
1998-09-23 17:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-24 06:03:41 +00:00
|
|
|
NS_IMETHODIMP nsFileControlFrame::Reflow(nsIPresContext* aPresContext,
|
1998-10-02 04:10:00 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus)
|
1998-09-23 17:16:51 +00:00
|
|
|
{
|
2000-04-21 21:51:35 +00:00
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsFileControlFrame", aReflowState.reason);
|
|
|
|
|
2000-09-09 22:13:12 +00:00
|
|
|
aStatus = NS_FRAME_COMPLETE;
|
|
|
|
|
1999-06-30 22:17:43 +00:00
|
|
|
if (mFormFrame == nsnull && eReflowReason_Initial == aReflowState.reason) {
|
|
|
|
// add ourself as an nsIFormControlFrame
|
1999-11-24 06:03:41 +00:00
|
|
|
nsFormFrame::AddFormControlFrame(aPresContext, *NS_STATIC_CAST(nsIFrame*, this));
|
2000-01-22 01:16:50 +00:00
|
|
|
mTextFrame = GetTextControlFrame(aPresContext, this);
|
1999-09-15 05:31:31 +00:00
|
|
|
if (!mTextFrame) return NS_ERROR_UNEXPECTED;
|
|
|
|
if (mCachedState) {
|
1999-11-24 06:03:41 +00:00
|
|
|
mTextFrame->SetProperty(aPresContext, nsHTMLAtoms::value, *mCachedState);
|
1999-09-15 05:31:31 +00:00
|
|
|
delete mCachedState;
|
|
|
|
mCachedState = nsnull;
|
|
|
|
}
|
1999-05-07 20:30:16 +00:00
|
|
|
}
|
|
|
|
|
2000-03-27 22:20:06 +00:00
|
|
|
// The Areaframe takes care of all our reflow
|
|
|
|
// except for when style is used to change its size.
|
|
|
|
nsresult rv = nsAreaFrame::Reflow(aPresContext, aDesiredSize, aReflowState, aStatus);
|
2000-08-18 18:16:12 +00:00
|
|
|
if (NS_SUCCEEDED(rv) && mTextFrame != nsnull) {
|
2000-03-27 22:20:06 +00:00
|
|
|
nsIFrame * child;
|
|
|
|
FirstChild(aPresContext, nsnull, &child);
|
|
|
|
while (child == mTextFrame) {
|
|
|
|
child->GetNextSibling(&child);
|
|
|
|
}
|
|
|
|
if (child != nsnull) {
|
|
|
|
nsRect buttonRect;
|
|
|
|
nsRect txtRect;
|
|
|
|
mTextFrame->GetRect(txtRect);
|
|
|
|
child->GetRect(buttonRect);
|
|
|
|
|
|
|
|
// check to see if we must reflow just the texField
|
|
|
|
// because style width or height was set.
|
|
|
|
if (txtRect.width + buttonRect.width != aDesiredSize.width ||
|
|
|
|
txtRect.height != aDesiredSize.height) {
|
|
|
|
|
|
|
|
nsSize txtAvailSize(aDesiredSize.width - buttonRect.width, aDesiredSize.height);
|
|
|
|
nsHTMLReflowMetrics txtKidSize(&txtAvailSize);
|
|
|
|
nsHTMLReflowState txtKidReflowState(aPresContext, aReflowState, mTextFrame, txtAvailSize);
|
2000-06-07 01:21:20 +00:00
|
|
|
txtKidReflowState.reason = eReflowReason_Resize;
|
2000-03-27 22:20:06 +00:00
|
|
|
txtKidReflowState.mComputedWidth = txtAvailSize.width;
|
|
|
|
txtKidReflowState.mComputedHeight = txtAvailSize.height;
|
|
|
|
mTextFrame->WillReflow(aPresContext);
|
|
|
|
nsReflowStatus status;
|
|
|
|
rv = mTextFrame->Reflow(aPresContext, txtKidSize, txtKidReflowState, status);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
rv = mTextFrame->DidReflow(aPresContext, aStatus);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
// now adjust the frame positions
|
|
|
|
buttonRect.x = aDesiredSize.width - buttonRect.width + aReflowState.mComputedBorderPadding.left;
|
|
|
|
child->SetRect(aPresContext, buttonRect);
|
|
|
|
txtRect.y = aReflowState.mComputedBorderPadding.top;
|
|
|
|
txtRect.height = aDesiredSize.height;
|
|
|
|
txtRect.width = aDesiredSize.width - buttonRect.width;
|
|
|
|
mTextFrame->SetRect(aPresContext, txtRect);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rv;
|
1999-06-30 22:17:43 +00:00
|
|
|
}
|
1998-09-23 17:16:51 +00:00
|
|
|
|
1999-06-30 22:17:43 +00:00
|
|
|
/*
|
|
|
|
NS_IMETHODIMP
|
1999-11-24 06:03:41 +00:00
|
|
|
nsFileControlFrame::SetInitialChildList(nsIPresContext* aPresContext,
|
1999-06-30 22:17:43 +00:00
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aChildList)
|
|
|
|
{
|
|
|
|
nsresult r = nsAreaFrame::SetInitialChildList(aPresContext, aListName, aChildList);
|
1998-09-23 17:16:51 +00:00
|
|
|
|
1999-06-30 22:17:43 +00:00
|
|
|
// given that the CSS frame constuctor created all our frames. We need to find the text field
|
|
|
|
// so we can get info from it.
|
|
|
|
mTextFrame = GetTextControlFrame(this);
|
|
|
|
}
|
|
|
|
*/
|
1998-09-23 17:16:51 +00:00
|
|
|
|
1999-06-30 22:17:43 +00:00
|
|
|
/**
|
|
|
|
* Given a start node. Find the given text node inside. We need to do this because the
|
|
|
|
* frame constuctor create the frame and its implementation. So we are given the text
|
|
|
|
* node from the constructor and we find it in our tree.
|
|
|
|
*/
|
2000-05-16 23:29:35 +00:00
|
|
|
|
|
|
|
nsNewFrame*
|
2000-01-22 01:16:50 +00:00
|
|
|
nsFileControlFrame::GetTextControlFrame(nsIPresContext* aPresContext, nsIFrame* aStart)
|
1999-06-30 22:17:43 +00:00
|
|
|
{
|
2000-05-16 23:29:35 +00:00
|
|
|
nsNewFrame* result = nsnull;
|
2000-08-18 18:16:12 +00:00
|
|
|
#ifndef DEBUG_NEWFRAME
|
1999-06-30 22:17:43 +00:00
|
|
|
// find the text control frame.
|
|
|
|
nsIFrame* childFrame = nsnull;
|
2000-01-22 01:16:50 +00:00
|
|
|
aStart->FirstChild(aPresContext, nsnull, &childFrame);
|
1999-06-30 22:17:43 +00:00
|
|
|
|
1999-09-15 05:31:31 +00:00
|
|
|
while (childFrame) {
|
1999-06-30 22:17:43 +00:00
|
|
|
// see if the child is a text control
|
|
|
|
nsCOMPtr<nsIContent> content;
|
2000-02-23 20:58:42 +00:00
|
|
|
nsresult res = childFrame->GetContent(getter_AddRefs(content));
|
|
|
|
if (NS_SUCCEEDED(res) && content) {
|
|
|
|
nsCOMPtr<nsIAtom> atom;
|
|
|
|
res = content->GetTag(*getter_AddRefs(atom));
|
|
|
|
if (NS_SUCCEEDED(res) && atom) {
|
|
|
|
if (atom.get() == nsHTMLAtoms::input) {
|
|
|
|
|
|
|
|
// It's an input, is it a text input?
|
|
|
|
nsAutoString value;
|
|
|
|
if (NS_CONTENT_ATTR_HAS_VALUE == content->GetAttribute(kNameSpaceID_None, nsHTMLAtoms::type, value)) {
|
|
|
|
if (value.EqualsIgnoreCase("text")) {
|
2000-05-16 23:29:35 +00:00
|
|
|
result = (nsNewFrame*)childFrame;
|
2000-02-23 20:58:42 +00:00
|
|
|
}
|
|
|
|
}
|
1999-08-19 14:03:53 +00:00
|
|
|
}
|
1999-06-30 22:17:43 +00:00
|
|
|
}
|
1998-10-01 04:46:11 +00:00
|
|
|
}
|
1998-09-23 17:16:51 +00:00
|
|
|
|
1999-06-30 22:17:43 +00:00
|
|
|
// if not continue looking
|
2000-05-16 23:29:35 +00:00
|
|
|
nsNewFrame* frame = GetTextControlFrame(aPresContext, childFrame);
|
1999-09-15 05:31:31 +00:00
|
|
|
if (frame)
|
2000-02-23 20:58:42 +00:00
|
|
|
result = frame;
|
1999-06-30 22:17:43 +00:00
|
|
|
|
2000-02-23 20:58:42 +00:00
|
|
|
res = childFrame->GetNextSibling(&childFrame);
|
|
|
|
NS_ASSERTION(res == NS_OK,"failed to get next child");
|
1998-09-23 17:16:51 +00:00
|
|
|
}
|
|
|
|
|
2000-02-23 20:58:42 +00:00
|
|
|
return result;
|
2000-08-18 18:16:12 +00:00
|
|
|
#else
|
|
|
|
return nsnull;
|
|
|
|
#endif
|
1998-09-23 17:16:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PRIntn
|
|
|
|
nsFileControlFrame::GetSkipSides() const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFileControlFrame::GetName(nsString* aResult)
|
|
|
|
{
|
|
|
|
nsresult result = NS_FORM_NOTOK;
|
|
|
|
if (mContent) {
|
|
|
|
nsIHTMLContent* formControl = nsnull;
|
|
|
|
result = mContent->QueryInterface(kIHTMLContentIID, (void**)&formControl);
|
|
|
|
if ((NS_OK == result) && formControl) {
|
|
|
|
nsHTMLValue value;
|
1998-12-20 01:21:23 +00:00
|
|
|
result = formControl->GetHTMLAttribute(nsHTMLAtoms::name, value);
|
1998-09-23 17:16:51 +00:00
|
|
|
if (NS_CONTENT_ATTR_HAS_VALUE == result) {
|
|
|
|
if (eHTMLUnit_String == value.GetUnit()) {
|
|
|
|
value.GetStringValue(*aResult);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
NS_RELEASE(formControl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
1999-02-11 01:13:28 +00:00
|
|
|
|
|
|
|
|
1998-09-23 17:16:51 +00:00
|
|
|
PRInt32
|
|
|
|
nsFileControlFrame::GetMaxNumValues()
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsFileControlFrame::GetNamesValues(PRInt32 aMaxNumValues, PRInt32& aNumValues,
|
|
|
|
nsString* aValues, nsString* aNames)
|
|
|
|
{
|
|
|
|
nsAutoString name;
|
|
|
|
nsresult result = GetName(&name);
|
|
|
|
if ((aMaxNumValues <= 0) || (NS_CONTENT_ATTR_HAS_VALUE != result)) {
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// use our name and the text widgets value
|
|
|
|
aNames[0] = name;
|
|
|
|
nsresult status = PR_FALSE;
|
1999-05-13 23:45:40 +00:00
|
|
|
|
|
|
|
if (NS_SUCCEEDED(mTextFrame->GetProperty(nsHTMLAtoms::value, aValues[0]))) {
|
1998-09-23 17:16:51 +00:00
|
|
|
aNumValues = 1;
|
|
|
|
status = PR_TRUE;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
1999-08-19 14:03:53 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFileControlFrame::AttributeChanged(nsIPresContext* aPresContext,
|
|
|
|
nsIContent* aChild,
|
1999-10-15 23:16:45 +00:00
|
|
|
PRInt32 aNameSpaceID,
|
1999-08-19 14:03:53 +00:00
|
|
|
nsIAtom* aAttribute,
|
|
|
|
PRInt32 aHint)
|
|
|
|
{
|
|
|
|
// set the text control to readonly or not
|
|
|
|
if (nsHTMLAtoms::disabled == aAttribute) {
|
1999-09-07 23:20:32 +00:00
|
|
|
nsCOMPtr<nsIDOMHTMLInputElement> textControl = do_QueryInterface(mTextContent);
|
|
|
|
if (textControl)
|
|
|
|
{
|
|
|
|
textControl->SetDisabled(nsFormFrame::GetDisabled(this));
|
|
|
|
}
|
2000-01-13 23:34:01 +00:00
|
|
|
} else if (nsHTMLAtoms::size == aAttribute) {
|
|
|
|
nsString value;
|
|
|
|
if (nsnull != mTextContent && NS_CONTENT_ATTR_HAS_VALUE == mContent->GetAttribute(kNameSpaceID_None, nsHTMLAtoms::size, value)) {
|
|
|
|
mTextContent->SetAttribute(kNameSpaceID_None, nsHTMLAtoms::size, value, PR_TRUE);
|
|
|
|
if (aHint != NS_STYLE_HINT_REFLOW) {
|
|
|
|
nsFormFrame::StyleChangeReflow(aPresContext, this);
|
|
|
|
}
|
|
|
|
}
|
1999-08-19 14:03:53 +00:00
|
|
|
}
|
|
|
|
|
1999-10-15 23:16:45 +00:00
|
|
|
return nsAreaFrame::AttributeChanged(aPresContext, aChild, aNameSpaceID, aAttribute, aHint);
|
1999-08-19 14:03:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-10-26 04:44:41 +00:00
|
|
|
nsFileControlFrame::GetFrameForPoint(nsIPresContext* aPresContext,
|
|
|
|
const nsPoint& aPoint,
|
2000-03-22 02:43:08 +00:00
|
|
|
nsFramePaintLayer aWhichLayer,
|
1999-10-26 04:44:41 +00:00
|
|
|
nsIFrame** aFrame)
|
1999-08-19 14:03:53 +00:00
|
|
|
{
|
2000-08-18 18:16:12 +00:00
|
|
|
#ifndef DEBUG_NEWFRAME
|
2000-03-22 02:43:08 +00:00
|
|
|
if ( nsFormFrame::GetDisabled(this) && mRect.Contains(aPoint) ) {
|
|
|
|
const nsStyleDisplay* disp = (const nsStyleDisplay*)
|
|
|
|
mStyleContext->GetStyleData(eStyleStruct_Display);
|
|
|
|
if (disp->IsVisible()) {
|
|
|
|
*aFrame = this;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-08-19 14:03:53 +00:00
|
|
|
} else {
|
2000-03-22 02:43:08 +00:00
|
|
|
return nsAreaFrame::GetFrameForPoint(aPresContext, aPoint, aWhichLayer, aFrame);
|
1999-08-19 14:03:53 +00:00
|
|
|
}
|
2000-08-18 18:16:12 +00:00
|
|
|
#endif
|
1999-08-19 14:03:53 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-11-01 22:12:45 +00:00
|
|
|
#ifdef NS_DEBUG
|
1998-11-19 17:22:29 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFileControlFrame::GetFrameName(nsString& aResult) const
|
|
|
|
{
|
|
|
|
return MakeFrameName("FileControl", aResult);
|
|
|
|
}
|
1999-11-01 22:12:45 +00:00
|
|
|
#endif
|
1999-01-22 15:32:57 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFileControlFrame::GetFormContent(nsIContent*& aContent) const
|
|
|
|
{
|
1999-02-10 00:42:56 +00:00
|
|
|
nsIContent* content;
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
rv = GetContent(&content);
|
|
|
|
aContent = content;
|
|
|
|
return rv;
|
1999-01-22 15:32:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-01-25 15:24:48 +00:00
|
|
|
nsFileControlFrame::GetFont(nsIPresContext* aPresContext,
|
|
|
|
const nsFont*& aFont)
|
1999-01-22 15:32:57 +00:00
|
|
|
{
|
2000-01-25 15:24:48 +00:00
|
|
|
return nsFormControlHelper::GetFont(this, aPresContext, mStyleContext, aFont);
|
1999-01-22 15:32:57 +00:00
|
|
|
}
|
|
|
|
nscoord
|
1999-11-24 06:03:41 +00:00
|
|
|
nsFileControlFrame::GetVerticalInsidePadding(nsIPresContext* aPresContext,
|
1999-09-30 11:30:04 +00:00
|
|
|
float aPixToTwip,
|
|
|
|
nscoord aInnerHeight) const
|
1999-01-22 15:32:57 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nscoord
|
1999-11-24 06:03:41 +00:00
|
|
|
nsFileControlFrame::GetHorizontalInsidePadding(nsIPresContext* aPresContext,
|
1999-01-22 15:32:57 +00:00
|
|
|
float aPixToTwip,
|
|
|
|
nscoord aInnerWidth,
|
|
|
|
nscoord aCharWidth) const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
1999-01-25 22:16:27 +00:00
|
|
|
|
1999-03-06 19:43:13 +00:00
|
|
|
nsresult nsFileControlFrame::RequiresWidget(PRBool& aRequiresWidget)
|
|
|
|
{
|
|
|
|
aRequiresWidget = PR_FALSE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-02-11 01:13:28 +00:00
|
|
|
|
1999-10-26 04:44:41 +00:00
|
|
|
NS_IMETHODIMP nsFileControlFrame::SetProperty(nsIPresContext* aPresContext,
|
|
|
|
nsIAtom* aName,
|
2000-08-23 17:27:06 +00:00
|
|
|
const nsAReadableString& aValue)
|
1999-01-25 22:16:27 +00:00
|
|
|
{
|
1999-09-19 07:25:12 +00:00
|
|
|
nsresult rv = NS_OK;
|
1999-02-11 01:13:28 +00:00
|
|
|
if (nsHTMLAtoms::value == aName) {
|
1999-09-19 07:25:12 +00:00
|
|
|
if (mTextFrame) {
|
|
|
|
mTextFrame->SetTextControlFrameState(aValue);
|
|
|
|
} else {
|
|
|
|
if (mCachedState) delete mCachedState;
|
|
|
|
mCachedState = new nsString(aValue);
|
|
|
|
if (!mCachedState) rv = NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
1999-02-11 01:13:28 +00:00
|
|
|
}
|
1999-09-19 07:25:12 +00:00
|
|
|
return rv;
|
1999-02-11 01:13:28 +00:00
|
|
|
}
|
1999-01-25 22:16:27 +00:00
|
|
|
|
2000-08-23 17:27:06 +00:00
|
|
|
NS_IMETHODIMP nsFileControlFrame::GetProperty(nsIAtom* aName, nsAWritableString& aValue)
|
1999-01-25 22:16:27 +00:00
|
|
|
{
|
1999-02-11 01:13:28 +00:00
|
|
|
// Return the value of the property from the widget it is not null.
|
|
|
|
// If widget is null, assume the widget is GFX-rendered and return a member variable instead.
|
|
|
|
|
|
|
|
if (nsHTMLAtoms::value == aName) {
|
2000-05-12 23:11:04 +00:00
|
|
|
if (mTextFrame)
|
|
|
|
mTextFrame->GetTextControlFrameState(aValue);
|
1999-02-11 01:13:28 +00:00
|
|
|
}
|
1999-01-25 22:16:27 +00:00
|
|
|
return NS_OK;
|
1999-02-18 00:13:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-02-11 01:13:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
NS_METHOD
|
1999-11-24 06:03:41 +00:00
|
|
|
nsFileControlFrame::Paint(nsIPresContext* aPresContext,
|
1999-02-11 01:13:28 +00:00
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
nsFramePaintLayer aWhichLayer)
|
|
|
|
{
|
2001-01-27 14:09:34 +00:00
|
|
|
PRBool isVisible;
|
|
|
|
if (NS_SUCCEEDED(IsVisibleForPainting(aPresContext, aRenderingContext, PR_TRUE, &isVisible)) && !isVisible) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-06-30 22:17:43 +00:00
|
|
|
return nsAreaFrame::Paint(aPresContext, aRenderingContext, aDirtyRect, aWhichLayer);
|
1999-01-25 22:16:27 +00:00
|
|
|
}
|
1999-09-15 05:31:31 +00:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsIStatefulFrame
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
NS_IMETHODIMP
|
1999-10-26 04:44:41 +00:00
|
|
|
nsFileControlFrame::GetStateType(nsIPresContext* aPresContext, nsIStatefulFrame::StateType* aStateType)
|
1999-09-15 05:31:31 +00:00
|
|
|
{
|
|
|
|
*aStateType = nsIStatefulFrame::eFileType;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-01-14 09:28:54 +00:00
|
|
|
nsFileControlFrame::SaveState(nsIPresContext* aPresContext, nsIPresState** aState)
|
1999-09-15 05:31:31 +00:00
|
|
|
{
|
2001-02-06 01:59:59 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aState);
|
|
|
|
|
|
|
|
// Get the value string
|
2000-01-14 09:28:54 +00:00
|
|
|
nsAutoString stateString;
|
2001-02-06 01:59:59 +00:00
|
|
|
nsresult res = GetProperty(nsHTMLAtoms::value, stateString);
|
|
|
|
NS_ENSURE_SUCCESS(res, res);
|
|
|
|
|
|
|
|
// Compare to default value, and only save if needed (Bug 62713)
|
|
|
|
nsAutoString defaultStateString;
|
|
|
|
nsCOMPtr<nsIDOMHTMLInputElement> formControl(do_QueryInterface(mContent));
|
|
|
|
if (formControl) {
|
|
|
|
formControl->GetDefaultValue(defaultStateString);
|
|
|
|
}
|
2000-01-14 09:28:54 +00:00
|
|
|
|
2001-02-06 01:59:59 +00:00
|
|
|
if (! stateString.Equals(defaultStateString)) {
|
|
|
|
|
|
|
|
// Construct a pres state and store value in it.
|
|
|
|
res = NS_NewPresState(aState);
|
|
|
|
NS_ENSURE_SUCCESS(res, res);
|
|
|
|
res = (*aState)->SetStateProperty(NS_LITERAL_STRING("value"), stateString);
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
1999-09-15 05:31:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2000-01-14 09:28:54 +00:00
|
|
|
nsFileControlFrame::RestoreState(nsIPresContext* aPresContext, nsIPresState* aState)
|
|
|
|
{
|
2001-02-06 01:59:59 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aState);
|
|
|
|
|
2000-01-14 09:28:54 +00:00
|
|
|
nsAutoString string;
|
2001-02-06 01:59:59 +00:00
|
|
|
aState->GetStateProperty(NS_LITERAL_STRING("value"), string);
|
2000-01-14 09:28:54 +00:00
|
|
|
SetProperty(aPresContext, nsHTMLAtoms::value, string);
|
|
|
|
|
2001-02-06 01:59:59 +00:00
|
|
|
return NS_OK;
|
1999-09-15 05:31:31 +00:00
|
|
|
}
|