diff options
| author | Oz Linden <oz@lindenlab.com> | 2012-12-13 15:29:07 -0500 |
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2012-12-13 15:29:07 -0500 |
| commit | 8e99b826457ab0161c12e11e7b5465ce6a3d10f3 (patch) | |
| tree | 0b85b38d63fe13e0363076befd5784f351c23409 /indra/llplugin/slplugin/slplugin-objc.h | |
| parent | edcdce226a7ff599e43c89fe7e4d37350650ae96 (diff) | |
| parent | e2bd5f7a9d8f5b967954c3e0bc97e662f7149af7 (diff) | |
merge changes for DRTVWR-244
Diffstat (limited to 'indra/llplugin/slplugin/slplugin-objc.h')
| -rw-r--r-- | indra/llplugin/slplugin/slplugin-objc.h | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/indra/llplugin/slplugin/slplugin-objc.h b/indra/llplugin/slplugin/slplugin-objc.h index 602d848f7e..f2c2b3239c 100644 --- a/indra/llplugin/slplugin/slplugin-objc.h +++ b/indra/llplugin/slplugin/slplugin-objc.h @@ -28,8 +28,26 @@ * @endcond */ +//Protos for ObjectiveC classes (cannot import cocoa here due to BOOL conflict) +class NSWindow; /* Defined in slplugin-objc.mm: */ -void setupCocoa(); -void createAutoReleasePool(); -void deleteAutoReleasePool(); + +class LLCocoaPlugin +{ +public: + LLCocoaPlugin(); + void setupCocoa(); + void createAutoReleasePool(); + void deleteAutoReleasePool(); + void setupGroup(); + void updateWindows(); + void processEvents(); +public: + //EventTargetRef mEventTarget; + NSWindow* mFrontWindow; + NSWindow* mPluginWindow; + int mHackState; +}; + + |
