2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
2008-12-15 12:56:29 -08:00
|
|
|
* Thomas K. Dyas <tdyas@zecador.org>
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#ifndef nsChildView_h_
|
|
|
|
#define nsChildView_h_
|
|
|
|
|
|
|
|
// formal protocols
|
|
|
|
#include "mozView.h"
|
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
#include "nsIAccessible.h"
|
|
|
|
#include "mozAccessibleProtocol.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsBaseWidget.h"
|
2008-04-23 15:56:40 -07:00
|
|
|
#include "nsIPluginInstanceOwner.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIPluginWidget.h"
|
|
|
|
#include "nsIScrollableView.h"
|
|
|
|
#include "nsWeakPtr.h"
|
2009-09-30 19:52:50 -07:00
|
|
|
#include "nsCocoaTextInputHandler.h"
|
|
|
|
#include "nsCocoaUtils.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsIAppShell.h"
|
|
|
|
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsIDragService.h"
|
|
|
|
|
2009-08-31 18:00:13 -07:00
|
|
|
#include "npapi.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-04-05 17:26:53 -07:00
|
|
|
#import <Carbon/Carbon.h>
|
2007-03-22 10:30:00 -07:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2007-04-05 17:26:53 -07:00
|
|
|
class gfxASurface;
|
2007-03-22 10:30:00 -07:00
|
|
|
class nsChildView;
|
2009-08-13 15:06:49 -07:00
|
|
|
class nsCocoaWindow;
|
2007-04-05 17:26:53 -07:00
|
|
|
union nsPluginPort;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-06-30 09:30:22 -07:00
|
|
|
enum {
|
|
|
|
// Currently focused ChildView (while this TSM document is active).
|
|
|
|
// Transient (only set while TSMProcessRawKeyEvent() is processing a key
|
|
|
|
// event), and the ChildView will be retained and released around the call
|
|
|
|
// to TSMProcessRawKeyEvent() -- so it can be weak.
|
|
|
|
kFocusedChildViewTSMDocPropertyTag = 'GKFV', // type ChildView* [WEAK]
|
|
|
|
};
|
|
|
|
|
|
|
|
// Undocumented HIToolbox function used by WebKit to allow Carbon-based IME
|
|
|
|
// to work in a Cocoa-based browser (like Safari or Cocoa-widgets Firefox).
|
|
|
|
// (Recent WebKit versions actually use a thin wrapper around this function
|
|
|
|
// called WKSendKeyEventToTSM().)
|
|
|
|
//
|
|
|
|
// Calling TSMProcessRawKeyEvent() from ChildView's keyDown: and keyUp:
|
|
|
|
// methods (when the ChildView is a plugin view) bypasses Cocoa's IME
|
|
|
|
// infrastructure and (instead) causes Carbon TSM events to be sent on each
|
|
|
|
// NSKeyDown event. We install a Carbon event handler
|
|
|
|
// (PluginKeyEventsHandler()) to catch these events and pass them to Gecko
|
|
|
|
// (which in turn passes them to the plugin).
|
|
|
|
extern "C" long TSMProcessRawKeyEvent(EventRef carbonEvent);
|
|
|
|
|
|
|
|
@interface NSEvent (Undocumented)
|
|
|
|
|
|
|
|
// Return Cocoa event's corresponding Carbon event. Not initialized (on
|
|
|
|
// synthetic events) until the OS actually "sends" the event. This method
|
|
|
|
// has been present in the same form since at least OS X 10.2.8.
|
|
|
|
- (EventRef)_eventRef;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2008-09-17 04:27:19 -07:00
|
|
|
// Needed to support pixel scrolling.
|
|
|
|
// See http://developer.apple.com/qa/qa2005/qa1453.html.
|
|
|
|
// kEventMouseScroll is only defined on 10.5+. Using the moz prefix avoids
|
|
|
|
// potential symbol conflicts.
|
|
|
|
// This should be changed when 10.4 support is dropped.
|
|
|
|
enum {
|
|
|
|
mozkEventMouseScroll = 11
|
|
|
|
};
|
|
|
|
|
|
|
|
// Support for pixel scroll deltas, not part of NSEvent.h
|
|
|
|
// See http://lists.apple.com/archives/cocoa-dev/2007/Feb/msg00050.html
|
|
|
|
@interface NSEvent (DeviceDelta)
|
|
|
|
- (float)deviceDeltaX;
|
|
|
|
- (float)deviceDeltaY;
|
|
|
|
@end
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
@interface ChildView : NSView<
|
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
mozAccessible,
|
|
|
|
#endif
|
|
|
|
mozView, NSTextInput>
|
|
|
|
{
|
|
|
|
@private
|
|
|
|
// the nsChildView that created the view. It retains this NSView, so
|
|
|
|
// the link back to it must be weak.
|
|
|
|
nsChildView* mGeckoChild;
|
2009-08-26 17:29:47 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
BOOL mIsPluginView;
|
2009-08-31 18:00:13 -07:00
|
|
|
NPEventModel mPluginEventModel;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-02-28 21:47:41 -08:00
|
|
|
// The following variables are only valid during key down event processing.
|
|
|
|
// Their current usage needs to be fixed to avoid problems with nested event
|
|
|
|
// loops that can confuse them. Once a variable is set during key down event
|
|
|
|
// processing, if an event spawns a nested event loop the previously set value
|
|
|
|
// will be wiped out.
|
|
|
|
NSEvent* mCurKeyEvent;
|
2007-11-26 10:09:38 -08:00
|
|
|
PRBool mKeyDownHandled;
|
2008-02-28 21:47:41 -08:00
|
|
|
// While we process key down events we need to keep track of whether or not
|
|
|
|
// we sent a key press event. This helps us make sure we do send one
|
|
|
|
// eventually.
|
|
|
|
BOOL mKeyPressSent;
|
2008-03-13 18:08:04 -07:00
|
|
|
// Valid when mKeyPressSent is true.
|
|
|
|
PRBool mKeyPressHandled;
|
2008-02-28 21:47:41 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// needed for NSTextInput implementation
|
|
|
|
NSRange mMarkedRange;
|
|
|
|
|
2008-04-06 16:52:05 -07:00
|
|
|
// when mouseDown: is called, we store its event here (strong)
|
|
|
|
NSEvent* mLastMouseDownEvent;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// rects that were invalidated during a draw, so have pending drawing
|
|
|
|
NSMutableArray* mPendingDirtyRects;
|
|
|
|
BOOL mPendingFullDisplay;
|
|
|
|
|
|
|
|
// Holds our drag service across multiple drag calls. The reference to the
|
|
|
|
// service is obtained when the mouse enters the view and is released when
|
|
|
|
// the mouse exits or there is a drop. This prevents us from having to
|
|
|
|
// re-establish the connection to the service manager many times per second
|
|
|
|
// when handling |draggingUpdated:| messages.
|
|
|
|
nsIDragService* mDragService;
|
|
|
|
|
2008-06-30 09:30:22 -07:00
|
|
|
// For use with plugins, so that we can support IME in them. We can't use
|
|
|
|
// Cocoa TSM documents (those created and managed by the NSTSMInputContext
|
|
|
|
// class) -- for some reason TSMProcessRawKeyEvent() doesn't work with them.
|
|
|
|
TSMDocumentID mPluginTSMDoc;
|
2008-10-23 13:15:20 -07:00
|
|
|
|
|
|
|
// Simple gestures support
|
|
|
|
//
|
|
|
|
// mGestureState is used to detect when Cocoa has called both
|
|
|
|
// magnifyWithEvent and rotateWithEvent within the same
|
|
|
|
// beginGestureWithEvent and endGestureWithEvent sequence. We
|
|
|
|
// discard the spurious gesture event so as not to confuse Gecko.
|
|
|
|
//
|
|
|
|
// mCumulativeMagnification keeps track of the total amount of
|
|
|
|
// magnification peformed during a magnify gesture so that we can
|
|
|
|
// send that value with the final MozMagnifyGesture event.
|
|
|
|
//
|
|
|
|
// mCumulativeRotation keeps track of the total amount of rotation
|
|
|
|
// performed during a rotate gesture so we can send that value with
|
|
|
|
// the final MozRotateGesture event.
|
|
|
|
enum {
|
|
|
|
eGestureState_None,
|
|
|
|
eGestureState_StartGesture,
|
|
|
|
eGestureState_MagnifyGesture,
|
|
|
|
eGestureState_RotateGesture
|
|
|
|
} mGestureState;
|
|
|
|
float mCumulativeMagnification;
|
|
|
|
float mCumulativeRotation;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-12-15 12:56:29 -08:00
|
|
|
// class initialization
|
|
|
|
+ (void)initialize;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// these are sent to the first responder when the window key status changes
|
|
|
|
- (void)viewsWindowDidBecomeKey;
|
|
|
|
- (void)viewsWindowDidResignKey;
|
2007-05-30 11:25:44 -07:00
|
|
|
|
|
|
|
// Stop NSView hierarchy being changed during [ChildView drawRect:]
|
|
|
|
- (void)delayedTearDown;
|
2008-01-17 08:58:29 -08:00
|
|
|
|
|
|
|
- (void)sendFocusEvent:(PRUint32)eventType;
|
2008-06-30 09:30:22 -07:00
|
|
|
|
2009-09-22 19:31:37 -07:00
|
|
|
- (void)handleMouseMoved:(NSEvent*)aEvent;
|
|
|
|
|
2009-10-21 00:05:39 -07:00
|
|
|
- (void)drawRect:(NSRect)aRect inContext:(CGContextRef)aContext;
|
|
|
|
|
2009-09-22 19:31:37 -07:00
|
|
|
- (void)sendMouseEnterOrExitEvent:(NSEvent*)aEvent
|
|
|
|
enter:(BOOL)aEnter
|
|
|
|
type:(nsMouseEvent::exitType)aType;
|
|
|
|
|
2009-09-30 21:15:05 -07:00
|
|
|
#ifndef NP_NO_CARBON
|
2008-06-30 09:30:22 -07:00
|
|
|
- (void) processPluginKeyEvent:(EventRef)aKeyEvent;
|
2009-09-30 21:15:05 -07:00
|
|
|
#endif
|
2008-10-23 13:15:20 -07:00
|
|
|
|
|
|
|
// Simple gestures support
|
|
|
|
//
|
|
|
|
// XXX - The swipeWithEvent, beginGestureWithEvent, magnifyWithEvent,
|
|
|
|
// rotateWithEvent, and endGestureWithEvent methods are part of a
|
|
|
|
// PRIVATE interface exported by nsResponder and reverse-engineering
|
|
|
|
// was necessary to obtain the methods' prototypes. Thus, Apple may
|
|
|
|
// change the interface in the future without notice.
|
|
|
|
//
|
|
|
|
// The prototypes were obtained from the following link:
|
|
|
|
// http://cocoadex.com/2008/02/nsevent-modifications-swipe-ro.html
|
|
|
|
- (void)swipeWithEvent:(NSEvent *)anEvent;
|
|
|
|
- (void)beginGestureWithEvent:(NSEvent *)anEvent;
|
|
|
|
- (void)magnifyWithEvent:(NSEvent *)anEvent;
|
|
|
|
- (void)rotateWithEvent:(NSEvent *)anEvent;
|
|
|
|
- (void)endGestureWithEvent:(NSEvent *)anEvent;
|
2007-03-22 10:30:00 -07:00
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-09-30 19:52:50 -07:00
|
|
|
#ifndef NS_LEOPARD_AND_LATER
|
2007-04-15 06:43:55 -07:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// nsTSMManager
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class nsTSMManager {
|
|
|
|
public:
|
|
|
|
static PRBool IsComposing() { return sComposingView ? PR_TRUE : PR_FALSE; }
|
|
|
|
static PRBool IsIMEEnabled() { return sIsIMEEnabled; }
|
2007-08-16 13:30:50 -07:00
|
|
|
static PRBool IgnoreCommit() { return sIgnoreCommit; }
|
2007-04-15 06:43:55 -07:00
|
|
|
|
2008-07-14 07:38:49 -07:00
|
|
|
static void OnDestroyView(NSView<mozView>* aDestroyingView);
|
|
|
|
|
2007-04-15 06:43:55 -07:00
|
|
|
// Note that we cannot get the actual state in TSM. But we can trust this
|
|
|
|
// value. Because nsIMEStateManager reset this at every focus changing.
|
|
|
|
static PRBool IsRomanKeyboardsOnly() { return sIsRomanKeyboardsOnly; }
|
|
|
|
|
|
|
|
static PRBool GetIMEOpenState();
|
|
|
|
|
2008-08-11 01:27:59 -07:00
|
|
|
static void InitTSMDocument(NSView<mozView>* aViewForCaret);
|
2007-04-15 06:43:55 -07:00
|
|
|
static void StartComposing(NSView<mozView>* aComposingView);
|
2007-08-16 13:30:50 -07:00
|
|
|
static void UpdateComposing(NSString* aComposingString);
|
2007-04-15 06:43:55 -07:00
|
|
|
static void EndComposing();
|
|
|
|
static void EnableIME(PRBool aEnable);
|
|
|
|
static void SetIMEOpenState(PRBool aOpen);
|
|
|
|
static void SetRomanKeyboardsOnly(PRBool aRomanOnly);
|
|
|
|
|
|
|
|
static void CommitIME();
|
|
|
|
static void CancelIME();
|
|
|
|
private:
|
|
|
|
static PRBool sIsIMEEnabled;
|
|
|
|
static PRBool sIsRomanKeyboardsOnly;
|
2007-08-16 13:30:50 -07:00
|
|
|
static PRBool sIgnoreCommit;
|
2007-04-15 06:43:55 -07:00
|
|
|
static NSView<mozView>* sComposingView;
|
2007-08-16 13:30:50 -07:00
|
|
|
static TSMDocumentID sDocumentID;
|
|
|
|
static NSString* sComposingString;
|
|
|
|
|
|
|
|
static void KillComposing();
|
2007-04-15 06:43:55 -07:00
|
|
|
};
|
2009-09-30 19:52:50 -07:00
|
|
|
#endif // NS_LEOPARD_AND_LATER
|
2007-04-15 06:43:55 -07:00
|
|
|
|
2009-09-22 19:31:37 -07:00
|
|
|
class ChildViewMouseTracker {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
static void MouseMoved(NSEvent* aEvent);
|
|
|
|
static void OnDestroyView(ChildView* aView);
|
|
|
|
static BOOL WindowAcceptsEvent(NSWindow* aWindow, NSEvent* aEvent);
|
2009-12-11 13:56:59 -08:00
|
|
|
static void ReEvaluateMouseEnterState(NSEvent* aEvent = nil);
|
2009-09-22 19:31:37 -07:00
|
|
|
|
|
|
|
static ChildView* sLastMouseEventView;
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
static NSWindow* WindowForEvent(NSEvent* aEvent);
|
|
|
|
static ChildView* ViewForEvent(NSEvent* aEvent);
|
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// nsChildView
|
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class nsChildView : public nsBaseWidget,
|
2008-07-13 19:56:18 -07:00
|
|
|
public nsIPluginWidget
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
typedef nsBaseWidget Inherited;
|
|
|
|
|
|
|
|
public:
|
|
|
|
nsChildView();
|
|
|
|
virtual ~nsChildView();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIWidget interface
|
|
|
|
NS_IMETHOD Create(nsIWidget *aParent,
|
2009-09-23 23:18:10 -07:00
|
|
|
nsNativeWidget aNativeParent,
|
2009-01-14 19:27:09 -08:00
|
|
|
const nsIntRect &aRect,
|
2007-03-22 10:30:00 -07:00
|
|
|
EVENT_CALLBACK aHandleEventFunction,
|
|
|
|
nsIDeviceContext *aContext,
|
|
|
|
nsIAppShell *aAppShell = nsnull,
|
|
|
|
nsIToolkit *aToolkit = nsnull,
|
|
|
|
nsWidgetInitData *aInitData = nsnull);
|
|
|
|
|
|
|
|
NS_IMETHOD Destroy();
|
|
|
|
|
|
|
|
NS_IMETHOD Show(PRBool aState);
|
|
|
|
NS_IMETHOD IsVisible(PRBool& outState);
|
|
|
|
|
2008-10-28 22:19:42 -07:00
|
|
|
NS_IMETHOD SetParent(nsIWidget* aNewParent);
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual nsIWidget* GetParent(void);
|
2008-02-19 23:40:04 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHOD ConstrainPosition(PRBool aAllowSlop,
|
|
|
|
PRInt32 *aX, PRInt32 *aY);
|
|
|
|
NS_IMETHOD Move(PRInt32 aX, PRInt32 aY);
|
|
|
|
NS_IMETHOD Resize(PRInt32 aWidth,PRInt32 aHeight, PRBool aRepaint);
|
|
|
|
NS_IMETHOD Resize(PRInt32 aX, PRInt32 aY,PRInt32 aWidth,PRInt32 aHeight, PRBool aRepaint);
|
|
|
|
|
|
|
|
NS_IMETHOD Enable(PRBool aState);
|
|
|
|
NS_IMETHOD IsEnabled(PRBool *aState);
|
|
|
|
NS_IMETHOD SetFocus(PRBool aRaise);
|
2009-01-14 19:27:09 -08:00
|
|
|
NS_IMETHOD GetBounds(nsIntRect &aRect);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-01-14 19:27:09 -08:00
|
|
|
NS_IMETHOD Invalidate(const nsIntRect &aRect, PRBool aIsSynchronous);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
virtual void* GetNativeData(PRUint32 aDataType);
|
2009-07-21 17:44:55 -07:00
|
|
|
virtual nsresult ConfigureChildren(const nsTArray<Configuration>& aConfigurations);
|
2009-07-21 17:45:13 -07:00
|
|
|
virtual void Scroll(const nsIntPoint& aDelta,
|
2009-08-13 19:09:51 -07:00
|
|
|
const nsTArray<nsIntRect>& aDestRects,
|
2009-07-21 17:45:13 -07:00
|
|
|
const nsTArray<Configuration>& aConfigurations);
|
2009-02-18 16:11:49 -08:00
|
|
|
virtual nsIntPoint WidgetToScreenOffset();
|
2008-08-08 09:11:54 -07:00
|
|
|
virtual PRBool ShowsResizeIndicator(nsIntRect* aResizerRect);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
static PRBool ConvertStatus(nsEventStatus aStatus)
|
|
|
|
{ return aStatus == nsEventStatus_eConsumeNoDefault; }
|
|
|
|
NS_IMETHOD DispatchEvent(nsGUIEvent* event, nsEventStatus & aStatus);
|
|
|
|
|
|
|
|
NS_IMETHOD Update();
|
|
|
|
|
|
|
|
NS_IMETHOD SetCursor(nsCursor aCursor);
|
|
|
|
NS_IMETHOD SetCursor(imgIContainer* aCursor, PRUint32 aHotspotX, PRUint32 aHotspotY);
|
|
|
|
|
|
|
|
NS_IMETHOD CaptureRollupEvents(nsIRollupListener * aListener, PRBool aDoCapture, PRBool aConsumeRollupEvent);
|
|
|
|
NS_IMETHOD SetTitle(const nsAString& title);
|
|
|
|
|
|
|
|
NS_IMETHOD GetAttention(PRInt32 aCycleCount);
|
|
|
|
|
2009-04-21 16:53:52 -07:00
|
|
|
virtual PRBool HasPendingInputEvent();
|
|
|
|
|
2008-07-27 21:46:33 -07:00
|
|
|
NS_IMETHOD ActivateNativeMenuItemAt(const nsAString& indexString);
|
2008-10-29 22:36:01 -07:00
|
|
|
NS_IMETHOD ForceUpdateNativeMenuAt(const nsAString& indexString);
|
2008-06-28 00:55:30 -07:00
|
|
|
|
2008-07-13 19:56:18 -07:00
|
|
|
NS_IMETHOD ResetInputState();
|
|
|
|
NS_IMETHOD SetIMEOpenState(PRBool aState);
|
|
|
|
NS_IMETHOD GetIMEOpenState(PRBool* aState);
|
|
|
|
NS_IMETHOD SetIMEEnabled(PRUint32 aState);
|
|
|
|
NS_IMETHOD GetIMEEnabled(PRUint32* aState);
|
|
|
|
NS_IMETHOD CancelIMEComposition();
|
|
|
|
NS_IMETHOD GetToggledKeyState(PRUint32 aKeyCode,
|
|
|
|
PRBool* aLEDState);
|
2009-09-30 19:52:50 -07:00
|
|
|
NS_IMETHOD OnIMEFocusChange(PRBool aFocus);
|
2008-07-13 19:56:18 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsIPluginWidget
|
2009-01-14 19:27:09 -08:00
|
|
|
NS_IMETHOD GetPluginClipRect(nsIntRect& outClipRect, nsIntPoint& outOrigin, PRBool& outWidgetVisible);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHOD StartDrawPlugin();
|
|
|
|
NS_IMETHOD EndDrawPlugin();
|
2008-04-23 15:56:40 -07:00
|
|
|
NS_IMETHOD SetPluginInstanceOwner(nsIPluginInstanceOwner* aInstanceOwner);
|
2009-08-26 17:29:47 -07:00
|
|
|
|
|
|
|
NS_IMETHOD SetPluginEventModel(int inEventModel);
|
|
|
|
NS_IMETHOD GetPluginEventModel(int* outEventModel);
|
|
|
|
|
2008-08-12 17:44:14 -07:00
|
|
|
virtual nsTransparencyMode GetTransparencyMode();
|
|
|
|
virtual void SetTransparencyMode(nsTransparencyMode aMode);
|
2009-09-22 19:31:37 -07:00
|
|
|
|
|
|
|
virtual nsresult SynthesizeNativeKeyEvent(PRInt32 aNativeKeyboardLayout,
|
|
|
|
PRInt32 aNativeKeyCode,
|
|
|
|
PRUint32 aModifierFlags,
|
|
|
|
const nsAString& aCharacters,
|
|
|
|
const nsAString& aUnmodifiedCharacters);
|
|
|
|
|
|
|
|
virtual nsresult SynthesizeNativeMouseEvent(nsIntPoint aPoint,
|
|
|
|
PRUint32 aNativeMessage,
|
|
|
|
PRUint32 aModifierFlags);
|
2007-12-19 11:40:18 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Mac specific methods
|
|
|
|
|
|
|
|
virtual PRBool DispatchWindowEvent(nsGUIEvent& event);
|
|
|
|
|
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
void GetDocumentAccessible(nsIAccessible** aAccessible);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
virtual gfxASurface* GetThebesSurface();
|
|
|
|
|
2007-09-27 09:01:32 -07:00
|
|
|
NS_IMETHOD BeginSecureKeyboardInput();
|
|
|
|
NS_IMETHOD EndSecureKeyboardInput();
|
|
|
|
|
2008-04-23 15:56:40 -07:00
|
|
|
void HidePlugin();
|
2009-07-22 01:57:39 -07:00
|
|
|
void UpdatePluginPort();
|
2008-04-23 15:56:40 -07:00
|
|
|
|
2009-04-23 08:54:50 -07:00
|
|
|
void ResetParent();
|
|
|
|
|
2009-04-21 16:53:52 -07:00
|
|
|
static PRBool DoHasPendingInputEvent();
|
|
|
|
static PRUint32 GetCurrentInputEventCount();
|
|
|
|
static void UpdateCurrentInputEventCount();
|
2009-07-21 17:44:55 -07:00
|
|
|
|
|
|
|
static void ApplyConfiguration(nsIWidget* aExpectedParent,
|
|
|
|
const nsIWidget::Configuration& aConfiguration,
|
|
|
|
PRBool aRepaint);
|
|
|
|
|
2009-09-30 19:52:50 -07:00
|
|
|
#ifdef NS_LEOPARD_AND_LATER
|
|
|
|
nsCocoaTextInputHandler* TextInputHandler() { return &mTextInputHandler; }
|
|
|
|
NSView<mozView>* GetEditorView();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Wrapper methods of nsIMEManager and nsTSMManager
|
|
|
|
void IME_OnDestroyView(NSView<mozView> *aDestroyingView)
|
|
|
|
{
|
|
|
|
#ifdef NS_LEOPARD_AND_LATER
|
|
|
|
mTextInputHandler.OnDestroyView(aDestroyingView);
|
|
|
|
#else
|
|
|
|
nsTSMManager::OnDestroyView(aDestroyingView);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void IME_OnStartComposition(NSView<mozView>* aComposingView)
|
|
|
|
{
|
|
|
|
#ifdef NS_LEOPARD_AND_LATER
|
|
|
|
mTextInputHandler.OnStartIMEComposition(aComposingView);
|
|
|
|
#else
|
|
|
|
nsTSMManager::StartComposing(aComposingView);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void IME_OnUpdateComposition(NSString* aCompositionString)
|
|
|
|
{
|
|
|
|
#ifdef NS_LEOPARD_AND_LATER
|
|
|
|
mTextInputHandler.OnUpdateIMEComposition(aCompositionString);
|
|
|
|
#else
|
|
|
|
nsTSMManager::UpdateComposing(aCompositionString);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void IME_OnEndComposition()
|
|
|
|
{
|
|
|
|
#ifdef NS_LEOPARD_AND_LATER
|
|
|
|
mTextInputHandler.OnEndIMEComposition();
|
|
|
|
#else
|
|
|
|
nsTSMManager::EndComposing();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IME_IsComposing()
|
|
|
|
{
|
|
|
|
#ifdef NS_LEOPARD_AND_LATER
|
|
|
|
return mTextInputHandler.IsIMEComposing();
|
|
|
|
#else
|
|
|
|
return nsTSMManager::IsComposing();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IME_IsASCIICapableOnly()
|
|
|
|
{
|
|
|
|
#ifdef NS_LEOPARD_AND_LATER
|
|
|
|
return mTextInputHandler.IsASCIICapableOnly();
|
|
|
|
#else
|
|
|
|
return nsTSMManager::IsRomanKeyboardsOnly();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IME_IsOpened()
|
|
|
|
{
|
|
|
|
#ifdef NS_LEOPARD_AND_LATER
|
|
|
|
return mTextInputHandler.IsIMEOpened();
|
|
|
|
#else
|
|
|
|
return nsTSMManager::GetIMEOpenState();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IME_IsEnabled()
|
|
|
|
{
|
|
|
|
#ifdef NS_LEOPARD_AND_LATER
|
|
|
|
return mTextInputHandler.IsIMEEnabled();
|
|
|
|
#else
|
|
|
|
return nsTSMManager::IsIMEEnabled();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IME_IgnoreCommit()
|
|
|
|
{
|
|
|
|
#ifdef NS_LEOPARD_AND_LATER
|
|
|
|
return mTextInputHandler.IgnoreIMECommit();
|
|
|
|
#else
|
|
|
|
return nsTSMManager::IgnoreCommit();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void IME_CommitComposition()
|
|
|
|
{
|
|
|
|
#ifdef NS_LEOPARD_AND_LATER
|
|
|
|
mTextInputHandler.CommitIMEComposition();
|
|
|
|
#else
|
|
|
|
nsTSMManager::CommitIME();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void IME_CancelComposition()
|
|
|
|
{
|
|
|
|
#ifdef NS_LEOPARD_AND_LATER
|
|
|
|
mTextInputHandler.CancelIMEComposition();
|
|
|
|
#else
|
|
|
|
nsTSMManager::CancelIME();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void IME_SetASCIICapableOnly(PRBool aASCIICapableOnly)
|
|
|
|
{
|
|
|
|
#ifdef NS_LEOPARD_AND_LATER
|
|
|
|
mTextInputHandler.SetASCIICapableOnly(aASCIICapableOnly);
|
|
|
|
#else
|
|
|
|
nsTSMManager::SetRomanKeyboardsOnly(aASCIICapableOnly);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void IME_SetOpenState(PRBool aOpen)
|
|
|
|
{
|
|
|
|
#ifdef NS_LEOPARD_AND_LATER
|
|
|
|
mTextInputHandler.SetIMEOpenState(aOpen);
|
|
|
|
#else
|
|
|
|
nsTSMManager::SetIMEOpenState(aOpen);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void IME_Enable(PRBool aEnable)
|
|
|
|
{
|
|
|
|
#ifdef NS_LEOPARD_AND_LATER
|
|
|
|
mTextInputHandler.EnableIME(aEnable);
|
|
|
|
#else
|
|
|
|
nsTSMManager::EnableIME(aEnable);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
|
|
|
|
|
|
|
PRBool ReportDestroyEvent();
|
|
|
|
PRBool ReportMoveEvent();
|
|
|
|
PRBool ReportSizeEvent();
|
|
|
|
|
|
|
|
// override to create different kinds of child views. Autoreleases, so
|
|
|
|
// caller must retain.
|
|
|
|
virtual NSView* CreateCocoaView(NSRect inFrame);
|
|
|
|
void TearDownView();
|
2009-08-13 15:06:49 -07:00
|
|
|
nsCocoaWindow* GetXULWindowWidget();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
NSView<mozView>* mView; // my parallel cocoa view (ChildView or NativeScrollbarView), [STRONG]
|
2009-09-30 19:52:50 -07:00
|
|
|
#ifdef NS_LEOPARD_AND_LATER
|
|
|
|
nsCocoaTextInputHandler mTextInputHandler;
|
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NSView<mozView>* mParentView;
|
|
|
|
nsIWidget* mParentWidget;
|
|
|
|
|
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
// weak ref to this childview's associated mozAccessible for speed reasons
|
|
|
|
// (we get queried for it *a lot* but don't want to own it)
|
|
|
|
nsWeakPtr mAccessible;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
nsRefPtr<gfxASurface> mTempThebesSurface;
|
|
|
|
|
|
|
|
PRPackedBool mVisible;
|
|
|
|
PRPackedBool mDrawing;
|
|
|
|
PRPackedBool mPluginDrawing;
|
2007-03-26 18:07:57 -07:00
|
|
|
PRPackedBool mPluginIsCG; // true if this is a CoreGraphics plugin
|
2008-01-15 15:11:55 -08:00
|
|
|
|
2009-09-16 18:30:26 -07:00
|
|
|
NP_CGContext mPluginCGContext;
|
|
|
|
NP_Port mPluginQDPort;
|
2008-04-23 15:56:40 -07:00
|
|
|
nsIPluginInstanceOwner* mPluginInstanceOwner; // [WEAK]
|
2009-04-21 16:53:52 -07:00
|
|
|
|
|
|
|
static PRUint32 sLastInputEventCount;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2008-06-30 09:30:22 -07:00
|
|
|
void NS_InstallPluginKeyEventsHandler();
|
|
|
|
void NS_RemovePluginKeyEventsHandler();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#endif // nsChildView_h_
|