mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-11-04 10:18:41 +02:00 
			
		
		
		
	/builds/worker/checkouts/gecko/widget/uikit/TextInputHandler.h:26:3: error: bad implicit conversion constructor for 'TextInputHandler'
   26 |   TextInputHandler(nsWindow* aWidget);
      |   ^
/builds/worker/checkouts/gecko/widget/uikit/TextInputHandler.h:26:3: note: consider adding the explicit keyword to the constructor
   26 |   TextInputHandler(nsWindow* aWidget);
      |   ^
      |   explicit
/builds/worker/checkouts/gecko/widget/uikit/nsWindow.mm:78:3: error: bad implicit conversion constructor for 'nsAutoRetainUIKitObject'
   78 |   nsAutoRetainUIKitObject(id anObject) { mObject = [anObject retain]; }
      |   ^
/builds/worker/checkouts/gecko/widget/uikit/nsWindow.mm:78:3: note: consider adding the explicit keyword to the constructor
   78 |   nsAutoRetainUIKitObject(id anObject) { mObject = [anObject retain]; }
      |   ^
      |   explicit
/builds/worker/checkouts/gecko/widget/uikit/nsWindow.mm:943:3: error: Unused "kungFuDeathGrip" 'nsCOMPtr<nsIWidget>' objects constructed from members are prohibited
  943 |   nsCOMPtr<nsIWidget> kungFuDeathGrip(aEvent->mWidget);
      |   ^
/builds/worker/checkouts/gecko/widget/uikit/nsWindow.mm:943:39: note: Please switch all accesses to this member to go through 'kungFuDeathGrip', or explicitly pass 'kungFuDeathGrip' to `mozilla::Unused`
  943 |   nsCOMPtr<nsIWidget> kungFuDeathGrip(aEvent->mWidget);
      |                                       ^
Differential Revision: https://phabricator.services.mozilla.com/D203700
		
	
			
		
			
				
	
	
		
			67 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 | 
						|
/* vim: set ts=2 sw=2 et tw=80: */
 | 
						|
/* 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 TextInputHandler_h_
 | 
						|
#define TextInputHandler_h_
 | 
						|
 | 
						|
#import <UIKit/UITextInput.h>
 | 
						|
 | 
						|
#include "mozilla/EventForwards.h"
 | 
						|
#include "mozilla/TextEventDispatcherListener.h"
 | 
						|
#include "mozilla/widget/IMEData.h"
 | 
						|
#include "nsCOMPtr.h"
 | 
						|
 | 
						|
class nsWindow;
 | 
						|
 | 
						|
namespace mozilla::widget {
 | 
						|
class TextEventDispatcher;
 | 
						|
 | 
						|
// This is the temporary input class. When implementing UITextInpt protocol, we
 | 
						|
// should share this class with Cocoa's version.
 | 
						|
class TextInputHandler final : public TextEventDispatcherListener {
 | 
						|
 public:
 | 
						|
  explicit TextInputHandler(nsWindow* aWidget);
 | 
						|
  TextInputHandler() = delete;
 | 
						|
 | 
						|
  NS_DECL_ISUPPORTS
 | 
						|
 | 
						|
  NS_IMETHOD NotifyIME(TextEventDispatcher* aTextEventDispatcher,
 | 
						|
                       const IMENotification& aNotification) override;
 | 
						|
  NS_IMETHOD_(IMENotificationRequests) GetIMENotificationRequests() override;
 | 
						|
  NS_IMETHOD_(void)
 | 
						|
  OnRemovedFrom(TextEventDispatcher* aTextEventDispatcher) override;
 | 
						|
  NS_IMETHOD_(void)
 | 
						|
  WillDispatchKeyboardEvent(TextEventDispatcher* aTextEventDispatcher,
 | 
						|
                            WidgetKeyboardEvent& aKeyboardEvent,
 | 
						|
                            uint32_t aIndexOfKeypress, void* aData) override;
 | 
						|
 | 
						|
  // UIKeyInput delegation
 | 
						|
  bool InsertText(NSString* aText);
 | 
						|
  bool HandleCommand(Command aCommand);
 | 
						|
 | 
						|
  void OnDestroyed();
 | 
						|
 | 
						|
 private:
 | 
						|
  virtual ~TextInputHandler() = default;
 | 
						|
 | 
						|
  bool DispatchKeyDownEvent(uint32_t aKeyCode, KeyNameIndex aKeyNameIndex,
 | 
						|
                            char16_t aCharCode, nsEventStatus& aStatus);
 | 
						|
  bool DispatchKeyUpEvent(uint32_t aKeyCode, KeyNameIndex aKeyNameIndex,
 | 
						|
                          char16_t aCharCode, nsEventStatus& aStatus);
 | 
						|
  bool DispatchKeyPressEvent(uint32_t aKeyCode, KeyNameIndex aKeyNameIndex,
 | 
						|
                             char16_t aCharCode, nsEventStatus& aStatus);
 | 
						|
 | 
						|
  bool EmulateKeyboardEvent(uint32_t aKeyCode, KeyNameIndex aKeyNameIndex,
 | 
						|
                            char16_t charCode);
 | 
						|
 | 
						|
  bool Destroyed() { return !mWidget; }
 | 
						|
 | 
						|
  nsWindow* mWidget;  // weak ref
 | 
						|
  RefPtr<TextEventDispatcher> mDispatcher;
 | 
						|
};
 | 
						|
 | 
						|
}  // namespace mozilla::widget
 | 
						|
#endif
 |