summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/HTMLEditorEventListener.h
diff options
context:
space:
mode:
Diffstat (limited to 'editor/libeditor/HTMLEditorEventListener.h')
-rw-r--r--editor/libeditor/HTMLEditorEventListener.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/editor/libeditor/HTMLEditorEventListener.h b/editor/libeditor/HTMLEditorEventListener.h
new file mode 100644
index 000000000..b97b675b5
--- /dev/null
+++ b/editor/libeditor/HTMLEditorEventListener.h
@@ -0,0 +1,43 @@
+/* -*- Mode: C++; tab-width: 4; 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 HTMLEditorEventListener_h
+#define HTMLEditorEventListener_h
+
+#include "EditorEventListener.h"
+#include "nscore.h"
+
+namespace mozilla {
+
+class EditorBase;
+class HTMLEditor;
+
+class HTMLEditorEventListener final : public EditorEventListener
+{
+public:
+ HTMLEditorEventListener()
+ {
+ }
+
+ virtual ~HTMLEditorEventListener()
+ {
+ }
+
+#ifdef DEBUG
+ // WARNING: You must be use HTMLEditor or its sub class for this class.
+ virtual nsresult Connect(EditorBase* aEditorBase) override;
+#endif
+
+protected:
+ virtual nsresult MouseDown(nsIDOMMouseEvent* aMouseEvent) override;
+ virtual nsresult MouseUp(nsIDOMMouseEvent* aMouseEvent) override;
+ virtual nsresult MouseClick(nsIDOMMouseEvent* aMouseEvent) override;
+
+ inline HTMLEditor* GetHTMLEditor();
+};
+
+} // namespace mozilla
+
+#endif // #ifndef HTMLEditorEventListener_h