Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / widget / uikit / UIKitUtils.h
blob2e34b126fd1e7ab37cf8463caebd2f385160b30b
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #import <UIKit/UIKit.h>
8 #include "IMEData.h"
10 namespace mozilla::widget {
12 class UIKitUtils final {
13 public:
14 UIKitUtils() = delete;
15 ~UIKitUtils() = delete;
17 static UIKeyboardType GetUIKeyboardType(const InputContext& aContext);
18 static UIReturnKeyType GetUIReturnKeyType(const InputContext& aContext);
19 static UITextAutocapitalizationType GetUITextAutocapitalizationType(
20 const InputContext& aContext);
23 } // namespace mozilla::widget