fune/dom/html/TextInputListener.h
Emilio Cobos Álvarez 678b10493d Bug 1698315 - Manage placeholder and autofill preview visibility using CSS rather than custom code. r=masayuki
Should be much simpler and doesn't need to deal with the different
stuff. We already have pseudo-classes for this, :autofill and
:placeholder-shown.

I initially wrote this because this is the only limitation that forces
us to have the placeholder text as a direct child of the text control
frame. In the end I kept that as-is, but this simplification is still
worth it.

We remove dom.placeholder.show_on_focus because it doesn't behave
correctly (it doesn't match the :placeholder-shown pseudo-class and it
should). It was introduced in bug 807613 and never turned to false by
default. I suspect nobody will miss this, but if somebody complains
about it we can reintroduce it properly (handling the pref in DOM
instead, changing the right state bits).

Differential Revision: https://phabricator.services.mozilla.com/D108304
2021-03-15 08:52:43 +00:00

110 lines
3.3 KiB
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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 mozilla_TextInputListener_h
#define mozilla_TextInputListener_h
#include "mozilla/WeakPtr.h"
#include "nsCycleCollectionParticipant.h"
#include "nsIDOMEventListener.h"
#include "nsStringFwd.h"
#include "nsWeakReference.h"
class nsIFrame;
class nsTextControlFrame;
namespace mozilla {
class TextControlElement;
class TextControlState;
class TextEditor;
namespace dom {
class Selection;
} // namespace dom
class TextInputListener final : public nsIDOMEventListener,
public nsSupportsWeakReference {
public:
explicit TextInputListener(TextControlElement* aTextControlElement);
void SetFrame(nsIFrame* aTextControlFrame) { mFrame = aTextControlFrame; }
void SettingValue(bool aValue) { mSettingValue = aValue; }
void SetValueChanged(bool aSetValueChanged) {
mSetValueChanged = aSetValueChanged;
}
/**
* aFrame is an optional pointer to our frame, if not passed the method will
* use mFrame to compute it lazily.
*/
void HandleValueChanged();
/**
* OnEditActionHandled() is called when the editor handles each edit action.
*/
[[nodiscard]] MOZ_CAN_RUN_SCRIPT nsresult
OnEditActionHandled(TextEditor& aTextEditor);
/**
* OnSelectionChange() is called when selection is changed in the editor.
*/
MOZ_CAN_RUN_SCRIPT
void OnSelectionChange(dom::Selection& aSelection, int16_t aReason);
/**
* Start to listen or end listening to selection change in the editor.
*/
void StartToListenToSelectionChange() { mListeningToSelectionChange = true; }
void EndListeningToSelectionChange() { mListeningToSelectionChange = false; }
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
NS_DECL_CYCLE_COLLECTION_CLASS_AMBIGUOUS(TextInputListener,
nsIDOMEventListener)
NS_DECL_NSIDOMEVENTLISTENER
protected:
virtual ~TextInputListener() = default;
nsresult UpdateTextInputCommands(const nsAString& aCommandsToUpdate,
dom::Selection* aSelection = nullptr,
int16_t aReason = 0);
protected:
nsIFrame* mFrame;
TextControlElement* const mTxtCtrlElement;
WeakPtr<TextControlState> const mTextControlState;
bool mSelectionWasCollapsed;
/**
* Whether we had undo items or not the last time we got EditAction()
* notification (when this state changes we update undo and redo menus)
*/
bool mHadUndoItems;
/**
* Whether we had redo items or not the last time we got EditAction()
* notification (when this state changes we update undo and redo menus)
*/
bool mHadRedoItems;
/**
* Whether we're in the process of a SetValue call, and should therefore
* refrain from calling OnValueChanged.
*/
bool mSettingValue;
/**
* Whether we are in the process of a SetValue call that doesn't want
* |SetValueChanged| to be called.
*/
bool mSetValueChanged;
/**
* Whether we're listening to selection change in the editor.
*/
bool mListeningToSelectionChange;
};
} // namespace mozilla
#endif // #ifndef mozilla_TextInputListener_h