1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4  * License, v. 2.0. If a copy of the MPL was not distributed with this
5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 
7 #ifndef mozilla_dom_nsQueryContentEventResult_h
8 #define mozilla_dom_nsQueryContentEventResult_h
9 
10 #include "nsIQueryContentEventResult.h"
11 #include "nsString.h"
12 #include "nsRect.h"
13 #include "nsTArray.h"
14 #include "Units.h"
15 #include "mozilla/Attributes.h"
16 #include "mozilla/EventForwards.h"
17 #include "mozilla/Maybe.h"
18 #include "mozilla/widget/IMEData.h"
19 
20 class nsIWidget;
21 
22 class nsQueryContentEventResult final : public nsIQueryContentEventResult {
23  public:
24   explicit nsQueryContentEventResult(mozilla::WidgetQueryContentEvent&& aEvent);
25   NS_DECL_ISUPPORTS
26   NS_DECL_NSIQUERYCONTENTEVENTRESULT
27 
28   void SetEventResult(nsIWidget* aWidget);
29 
30  protected:
31   ~nsQueryContentEventResult() = default;
32 
33   mozilla::EventMessage mEventMessage;
34 
35   mozilla::Maybe<mozilla::OffsetAndData<uint32_t>> mOffsetAndData;
36   mozilla::Maybe<uint32_t> mTentativeCaretOffset;
37   mozilla::LayoutDeviceIntRect mRect;
38   CopyableTArray<mozilla::LayoutDeviceIntRect> mRectArray;
39 
40   bool mSucceeded;
41   bool mReversed;
42 };
43 
44 #endif  // mozilla_dom_nsQueryContentEventResult_h
45