FocusedInputFieldChangedEventArgs.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // Copyright (c) 2022 Vuplex Inc. All rights reserved.
  2. //
  3. // Licensed under the Vuplex Commercial Software Library License, you may
  4. // not use this file except in compliance with the License. You may obtain
  5. // a copy of the License at
  6. //
  7. // https://vuplex.com/commercial-library-license
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. using System;
  15. using Vuplex.WebView.Internal;
  16. namespace Vuplex.WebView {
  17. /// <summary>
  18. /// Event args for FocusedInputFieldChanged.
  19. /// </summary>
  20. public class FocusedInputFieldChangedEventArgs : EventArgs {
  21. public FocusedInputFieldChangedEventArgs(FocusedInputFieldType type) => Type = type;
  22. /// <summary>
  23. /// The type of input field focused.
  24. /// </summary>
  25. public readonly FocusedInputFieldType Type;
  26. public static FocusedInputFieldType ParseType(string typeString) {
  27. switch (typeString) {
  28. case "TEXT":
  29. return FocusedInputFieldType.Text;
  30. case "NONE":
  31. return FocusedInputFieldType.None;
  32. default:
  33. WebViewLogger.LogWarning("Unrecognized FocusedInputFieldType string: " + typeString);
  34. return FocusedInputFieldType.None;
  35. }
  36. }
  37. }
  38. }