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
|
|
|
|
|
|
|
#ifndef nsTextControlFrame_h___
|
|
|
|
#define nsTextControlFrame_h___
|
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-06-23 04:11:00 -07:00
|
|
|
#include "nsContainerFrame.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIAnonymousContentCreator.h"
|
|
|
|
#include "nsITextControlFrame.h"
|
2010-04-21 13:17:41 -07:00
|
|
|
#include "nsITextControlElement.h"
|
2011-02-04 15:28:38 -08:00
|
|
|
#include "nsIStatefulFrame.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
class nsISelectionController;
|
2010-02-09 17:29:11 -08:00
|
|
|
class EditorInitializerEntryTracker;
|
2010-04-21 13:17:41 -07:00
|
|
|
class nsTextEditorState;
|
2013-08-28 12:06:00 -07:00
|
|
|
class nsIEditor;
|
2012-06-10 16:44:50 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class Element;
|
|
|
|
}
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-06-23 04:11:00 -07:00
|
|
|
class nsTextControlFrame : public nsContainerFrame,
|
2007-03-22 10:30:00 -07:00
|
|
|
public nsIAnonymousContentCreator,
|
2011-02-04 15:28:38 -08:00
|
|
|
public nsITextControlFrame,
|
|
|
|
public nsIStatefulFrame
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2011-02-04 15:28:38 -08:00
|
|
|
NS_DECLARE_FRAME_PROPERTY(ContentScrollPos, DestroyPoint)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTextControlFrame(nsIPresShell* aShell, nsStyleContext* aContext);
|
|
|
|
virtual ~nsTextControlFrame();
|
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-05-14 09:33:23 -07:00
|
|
|
virtual nsIScrollableFrame* GetScrollTargetFrame() MOZ_OVERRIDE {
|
2011-08-24 13:54:30 -07:00
|
|
|
return do_QueryFrame(GetFirstPrincipalChild());
|
2009-09-01 04:22:31 -07:00
|
|
|
}
|
|
|
|
|
2013-05-14 09:33:23 -07:00
|
|
|
virtual nscoord GetMinWidth(nsRenderingContext* aRenderingContext) MOZ_OVERRIDE;
|
|
|
|
virtual nscoord GetPrefWidth(nsRenderingContext* aRenderingContext) MOZ_OVERRIDE;
|
2012-06-23 04:11:00 -07:00
|
|
|
|
2011-04-07 18:04:40 -07:00
|
|
|
virtual nsSize ComputeAutoSize(nsRenderingContext *aRenderingContext,
|
2007-08-21 20:07:25 -07:00
|
|
|
nsSize aCBSize, nscoord aAvailableWidth,
|
|
|
|
nsSize aMargin, nsSize aBorder,
|
2012-09-14 09:10:08 -07:00
|
|
|
nsSize aPadding, bool aShrinkWrap) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-05-12 17:47:52 -07:00
|
|
|
virtual void Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-05-14 09:33:23 -07:00
|
|
|
virtual nsSize GetMinSize(nsBoxLayoutState& aBoxLayoutState) MOZ_OVERRIDE;
|
|
|
|
virtual bool IsCollapsed() MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-05-14 09:33:23 -07:00
|
|
|
virtual bool IsLeaf() const MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifdef ACCESSIBILITY
|
2012-09-28 14:53:44 -07:00
|
|
|
virtual mozilla::a11y::AccType AccessibleType() MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
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
|
|
|
{
|
|
|
|
aResult.AssignLiteral("nsTextControlFrame");
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-05-14 09:33:23 -07:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const MOZ_OVERRIDE
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// nsStackFrame is already both of these, but that's somewhat bogus,
|
|
|
|
// and we really mean it.
|
2012-06-23 04:11:00 -07:00
|
|
|
return nsContainerFrame::IsFrameOfType(aFlags &
|
2007-03-22 10:30:00 -07:00
|
|
|
~(nsIFrame::eReplaced | nsIFrame::eReplacedContainsBlock));
|
|
|
|
}
|
|
|
|
|
|
|
|
// nsIAnonymousContentCreator
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual nsresult CreateAnonymousContent(nsTArray<ContentInfo>& aElements) MOZ_OVERRIDE;
|
2010-10-15 08:34:35 -07:00
|
|
|
virtual void AppendAnonymousContentTo(nsBaseContentList& aElements,
|
2012-09-14 09:10:08 -07:00
|
|
|
uint32_t aFilter) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Utility methods to set current widget state
|
|
|
|
|
2014-02-17 23:47:48 -08:00
|
|
|
virtual nsresult SetInitialChildList(ChildListID aListID,
|
2014-02-18 00:36:33 -08:00
|
|
|
nsFrameList& aChildList) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-02-14 03:12:27 -08:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
2012-11-09 02:22:29 -08:00
|
|
|
|
2013-12-02 20:49:03 -08:00
|
|
|
virtual mozilla::dom::Element* GetPseudoElement(nsCSSPseudoElements::Type aType) MOZ_OVERRIDE;
|
2013-12-02 15:57:50 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//==== BEGIN NSIFORMCONTROLFRAME
|
2013-05-14 09:33:23 -07:00
|
|
|
virtual void SetFocus(bool aOn , bool aRepaint) MOZ_OVERRIDE;
|
|
|
|
virtual nsresult SetFormProperty(nsIAtom* aName, const nsAString& aValue) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
//==== END NSIFORMCONTROLFRAME
|
|
|
|
|
2009-01-29 11:46:17 -08:00
|
|
|
//==== NSITEXTCONTROLFRAME
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
NS_IMETHOD GetEditor(nsIEditor **aEditor) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD SetSelectionStart(int32_t aSelectionStart) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD SetSelectionEnd(int32_t aSelectionEnd) MOZ_OVERRIDE;
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD SetSelectionRange(int32_t aSelectionStart,
|
|
|
|
int32_t aSelectionEnd,
|
2012-09-14 09:10:08 -07:00
|
|
|
SelectionDirection aDirection = eNone) MOZ_OVERRIDE;
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHOD GetSelectionRange(int32_t* aSelectionStart,
|
|
|
|
int32_t* aSelectionEnd,
|
2012-09-14 09:10:08 -07:00
|
|
|
SelectionDirection* aDirection = nullptr) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD GetOwnedSelectionController(nsISelectionController** aSelCon) MOZ_OVERRIDE;
|
|
|
|
virtual nsFrameSelection* GetOwnedFrameSelection() MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
nsresult GetPhonetic(nsAString& aPhonetic) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-02-01 20:00:06 -08:00
|
|
|
/**
|
|
|
|
* Ensure mEditor is initialized with the proper flags and the default value.
|
|
|
|
* @throws NS_ERROR_NOT_INITIALIZED if mEditor has not been created
|
|
|
|
* @throws various and sundry other things
|
|
|
|
*/
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual nsresult EnsureEditorInitialized() MOZ_OVERRIDE;
|
2010-02-01 20:00:06 -08:00
|
|
|
|
2009-01-29 11:46:17 -08:00
|
|
|
//==== END NSITEXTCONTROLFRAME
|
2011-02-04 15:28:38 -08:00
|
|
|
|
|
|
|
//==== NSISTATEFULFRAME
|
|
|
|
|
2012-11-14 22:40:17 -08:00
|
|
|
NS_IMETHOD SaveState(nsPresState** aState) MOZ_OVERRIDE;
|
2012-09-14 09:10:08 -07:00
|
|
|
NS_IMETHOD RestoreState(nsPresState* aState) MOZ_OVERRIDE;
|
2011-02-04 15:28:38 -08:00
|
|
|
|
|
|
|
//=== END NSISTATEFULFRAME
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//==== OVERLOAD of nsIFrame
|
2013-05-14 09:33:23 -07:00
|
|
|
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** handler for attribute changes to mContent */
|
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
|
|
|
|
2010-02-07 11:44:32 -08:00
|
|
|
nsresult GetText(nsString& aText);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-02-17 23:47:48 -08:00
|
|
|
virtual nsresult PeekOffset(nsPeekOffsetStruct *aPos) MOZ_OVERRIDE;
|
2012-06-19 16:31:03 -07:00
|
|
|
|
2009-01-12 11:20:59 -08:00
|
|
|
NS_DECL_QUERYFRAME
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-05-21 01:25:27 -07:00
|
|
|
// Temp reference to scriptrunner
|
|
|
|
// We could make these auto-Revoking via the "delete" entry for safety
|
2012-07-30 07:20:58 -07:00
|
|
|
NS_DECLARE_FRAME_PROPERTY(TextControlInitializer, nullptr)
|
2011-05-21 01:25:27 -07:00
|
|
|
|
2012-06-23 04:11:00 -07:00
|
|
|
protected:
|
|
|
|
/**
|
|
|
|
* Launch the reflow on the child frames - see nsTextControlFrame::Reflow()
|
|
|
|
*/
|
|
|
|
void ReflowTextControlChild(nsIFrame* aFrame,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus,
|
|
|
|
nsHTMLReflowMetrics& aParentDesiredSize);
|
2011-05-21 01:25:27 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
public: //for methods who access nsTextControlFrame directly
|
2011-09-28 23:19:26 -07:00
|
|
|
void SetValueChanged(bool aValueChanged);
|
2012-05-07 09:27:24 -07:00
|
|
|
|
2007-09-27 09:01:32 -07:00
|
|
|
// called by the focus listener
|
|
|
|
nsresult MaybeBeginSecureKeyboardInput();
|
|
|
|
void MaybeEndSecureKeyboardInput();
|
|
|
|
|
2010-04-21 13:17:41 -07:00
|
|
|
#define DEFINE_TEXTCTRL_FORWARDER(type, name) \
|
|
|
|
type name() { \
|
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent()); \
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element"); \
|
|
|
|
return txtCtrl->name(); \
|
|
|
|
}
|
|
|
|
#define DEFINE_TEXTCTRL_CONST_FORWARDER(type, name) \
|
|
|
|
type name() const { \
|
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent()); \
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element"); \
|
|
|
|
return txtCtrl->name(); \
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
DEFINE_TEXTCTRL_CONST_FORWARDER(bool, IsSingleLineTextControl)
|
|
|
|
DEFINE_TEXTCTRL_CONST_FORWARDER(bool, IsTextArea)
|
|
|
|
DEFINE_TEXTCTRL_CONST_FORWARDER(bool, IsPlainTextControl)
|
|
|
|
DEFINE_TEXTCTRL_CONST_FORWARDER(bool, IsPasswordTextControl)
|
2012-08-22 08:56:38 -07:00
|
|
|
DEFINE_TEXTCTRL_FORWARDER(int32_t, GetCols)
|
|
|
|
DEFINE_TEXTCTRL_FORWARDER(int32_t, GetWrapCols)
|
|
|
|
DEFINE_TEXTCTRL_FORWARDER(int32_t, GetRows)
|
2010-04-21 13:17:41 -07:00
|
|
|
|
|
|
|
#undef DEFINE_TEXTCTRL_CONST_FORWARDER
|
|
|
|
#undef DEFINE_TEXTCTRL_FORWARDER
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
2009-01-29 11:46:17 -08:00
|
|
|
class EditorInitializer;
|
|
|
|
friend class EditorInitializer;
|
2010-04-21 13:17:41 -07:00
|
|
|
friend class nsTextEditorState; // needs access to UpdateValueDisplay
|
2009-01-29 11:46:17 -08:00
|
|
|
|
|
|
|
class EditorInitializer : public nsRunnable {
|
|
|
|
public:
|
|
|
|
EditorInitializer(nsTextControlFrame* aFrame) :
|
|
|
|
mFrame(aFrame) {}
|
|
|
|
|
2013-05-29 12:37:49 -07:00
|
|
|
NS_IMETHOD Run() MOZ_OVERRIDE;
|
2009-01-29 11:46:17 -08:00
|
|
|
|
2011-05-21 01:25:27 -07:00
|
|
|
// avoids use of nsWeakFrame
|
|
|
|
void Revoke() {
|
2012-07-30 07:20:58 -07:00
|
|
|
mFrame = nullptr;
|
2011-05-21 01:25:27 -07:00
|
|
|
}
|
|
|
|
|
2009-01-29 11:46:17 -08:00
|
|
|
private:
|
|
|
|
nsTextControlFrame* mFrame;
|
|
|
|
};
|
|
|
|
|
2010-05-06 15:12:21 -07:00
|
|
|
class ScrollOnFocusEvent;
|
|
|
|
friend class ScrollOnFocusEvent;
|
|
|
|
|
|
|
|
class ScrollOnFocusEvent : public nsRunnable {
|
|
|
|
public:
|
|
|
|
ScrollOnFocusEvent(nsTextControlFrame* aFrame) :
|
|
|
|
mFrame(aFrame) {}
|
|
|
|
|
|
|
|
NS_DECL_NSIRUNNABLE
|
|
|
|
|
|
|
|
void Revoke() {
|
2012-07-30 07:20:58 -07:00
|
|
|
mFrame = nullptr;
|
2010-05-06 15:12:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsTextControlFrame* mFrame;
|
|
|
|
};
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult OffsetToDOMPoint(int32_t aOffset, nsIDOMNode** aResult, int32_t* aPosition);
|
2009-01-29 11:46:17 -08:00
|
|
|
|
2010-02-02 07:49:55 -08:00
|
|
|
/**
|
|
|
|
* Update the textnode under our anonymous div to show the new
|
|
|
|
* value. This should only be called when we have no editor yet.
|
|
|
|
* @throws NS_ERROR_UNEXPECTED if the div has no text content
|
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
nsresult UpdateValueDisplay(bool aNotify,
|
|
|
|
bool aBeforeEditorInit = false,
|
2012-07-30 07:20:58 -07:00
|
|
|
const nsAString *aValue = nullptr);
|
2010-02-02 07:49:55 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* Get the maxlength attribute
|
|
|
|
* @param aMaxLength the value of the max length attr
|
2011-10-17 07:59:28 -07:00
|
|
|
* @returns false if attr not defined
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2012-08-22 08:56:38 -07:00
|
|
|
bool GetMaxLength(int32_t* aMaxLength);
|
2010-02-02 07:49:55 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* Find out whether an attribute exists on the content or not.
|
|
|
|
* @param aAtt the attribute to determine the existence of
|
2011-10-17 07:59:28 -07:00
|
|
|
* @returns false if it does not exist
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
bool AttributeExists(nsIAtom *aAtt) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{ return mContent && mContent->HasAttr(kNameSpaceID_None, aAtt); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We call this when we are being destroyed or removed from the PFM.
|
|
|
|
* @param aPresContext the current pres context
|
|
|
|
*/
|
|
|
|
void PreDestroy();
|
|
|
|
|
|
|
|
// Compute our intrinsic size. This does not include any borders, paddings,
|
|
|
|
// etc. Just the size of our actual area for the text (and the scrollbars,
|
|
|
|
// for <textarea>).
|
2011-04-07 18:04:40 -07:00
|
|
|
nsresult CalcIntrinsicSize(nsRenderingContext* aRenderingContext,
|
2011-11-23 18:48:23 -08:00
|
|
|
nsSize& aIntrinsicSize,
|
|
|
|
float aFontSizeInflation);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
nsresult ScrollSelectionIntoView() MOZ_OVERRIDE;
|
2011-02-04 16:29:29 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
private:
|
|
|
|
//helper methods
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult SetSelectionInternal(nsIDOMNode *aStartNode, int32_t aStartOffset,
|
|
|
|
nsIDOMNode *aEndNode, int32_t aEndOffset,
|
2011-07-28 10:51:22 -07:00
|
|
|
SelectionDirection aDirection = eNone);
|
2011-09-28 23:19:26 -07:00
|
|
|
nsresult SelectAllOrCollapseToEndOfText(bool aSelect);
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult SetSelectionEndPoints(int32_t aSelStart, int32_t aSelEnd,
|
2011-07-28 10:51:22 -07:00
|
|
|
SelectionDirection aDirection = eNone);
|
2010-02-26 10:47:38 -08:00
|
|
|
|
2010-04-21 13:17:41 -07:00
|
|
|
/**
|
|
|
|
* Return the root DOM element, and implicitly initialize the editor if needed.
|
|
|
|
*/
|
2012-06-10 16:44:50 -07:00
|
|
|
mozilla::dom::Element* GetRootNodeAndInitializeEditor();
|
2010-04-21 13:17:41 -07:00
|
|
|
nsresult GetRootNodeAndInitializeEditor(nsIDOMElement **aRootElement);
|
2010-04-06 13:44:46 -07:00
|
|
|
|
2011-05-21 01:25:27 -07:00
|
|
|
void FinishedInitializer() {
|
|
|
|
Properties().Delete(TextControlInitializer());
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
private:
|
|
|
|
// these packed bools could instead use the high order bits on mState, saving 4 bytes
|
2013-10-16 06:43:03 -07:00
|
|
|
bool mEditorHasBeenInitialized;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mIsProcessing;
|
2010-10-19 06:11:07 -07:00
|
|
|
// Keep track if we have asked a placeholder node creation.
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mUsePlaceholder;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-02-09 17:29:11 -08:00
|
|
|
#ifdef DEBUG
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mInEditorInitialization;
|
2010-02-09 17:29:11 -08:00
|
|
|
friend class EditorInitializerEntryTracker;
|
|
|
|
#endif
|
|
|
|
|
2010-05-06 15:12:21 -07:00
|
|
|
nsRevocableEventPtr<ScrollOnFocusEvent> mScrollEvent;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|