diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /widget/cocoa/mozView.h | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'widget/cocoa/mozView.h')
-rw-r--r-- | widget/cocoa/mozView.h | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/widget/cocoa/mozView.h b/widget/cocoa/mozView.h new file mode 100644 index 000000000..9e94e3ab4 --- /dev/null +++ b/widget/cocoa/mozView.h @@ -0,0 +1,67 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* 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 mozView_h_ +#define mozView_h_ + +#undef DARWIN +#import <Cocoa/Cocoa.h> +class nsIWidget; + +namespace mozilla { +namespace widget{ +class TextInputHandler; +} // namespace widget +} // namespace mozilla + +// A protocol listing all the methods that an object which wants +// to live in gecko's widget hierarchy must implement. |nsChildView| +// makes assumptions that any NSView with which it comes in contact will +// implement this protocol. +@protocol mozView + + // aHandler is Gecko's default text input handler: It implements the + // NSTextInput protocol to handle key events. Don't make aHandler a + // strong reference -- that causes a memory leak. +- (void)installTextInputHandler:(mozilla::widget::TextInputHandler*)aHandler; +- (void)uninstallTextInputHandler; + + // access the nsIWidget associated with this view. DOES NOT ADDREF. +- (nsIWidget*)widget; + + // return a context menu for this view +- (NSMenu*)contextMenu; + + // Allows callers to do a delayed invalidate (e.g., if an invalidate + // happens during drawing) +- (void)setNeedsPendingDisplay; +- (void)setNeedsPendingDisplayInRect:(NSRect)invalidRect; + + // called when our corresponding Gecko view goes away +- (void)widgetDestroyed; + +- (BOOL)isDragInProgress; + + // Checks whether the view is first responder or not +- (BOOL)isFirstResponder; + + // Call when you dispatch an event which may cause to open context menu. +- (void)maybeInitContextMenuTracking; + +@end + +// An informal protocol implemented by the NSWindow of the host application. +// +// It's used to prevent re-entrant calls to -makeKeyAndOrderFront: when gecko +// focus/activate events propagate out to the embedder's +// nsIEmbeddingSiteWindow::SetFocus implementation. +@interface NSObject(mozWindow) + +- (BOOL)suppressMakeKeyFront; +- (void)setSuppressMakeKeyFront:(BOOL)inSuppress; + +@end + +#endif // mozView_h_ |