Bug 1550519 - Show a translucent parent highlight when a subgrid is highlighted....
[gecko.git] / dom / base / nsQueryContentEventResult.h
blob7a19f2b36f352512a76845e3212c08485559fea6
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/. */
7 #ifndef mozilla_dom_nsQueryContentEventResult_h
8 #define mozilla_dom_nsQueryContentEventResult_h
10 #include "nsIQueryContentEventResult.h"
11 #include "nsString.h"
12 #include "nsRect.h"
13 #include "Units.h"
14 #include "mozilla/Attributes.h"
15 #include "mozilla/EventForwards.h"
17 class nsIWidget;
19 class nsQueryContentEventResult final : public nsIQueryContentEventResult {
20 public:
21 explicit nsQueryContentEventResult(mozilla::WidgetQueryContentEvent& aEvent);
22 NS_DECL_ISUPPORTS
23 NS_DECL_NSIQUERYCONTENTEVENTRESULT
25 void SetEventResult(nsIWidget* aWidget);
27 protected:
28 ~nsQueryContentEventResult();
30 mozilla::EventMessage mEventMessage;
32 uint32_t mOffset;
33 uint32_t mTentativeCaretOffset;
34 nsString mString;
35 mozilla::LayoutDeviceIntRect mRect;
36 nsTArray<mozilla::LayoutDeviceIntRect> mRectArray;
38 bool mSucceeded;
39 bool mReversed;
42 #endif // mozilla_dom_nsQueryContentEventResult_h