|
|
|
|
@@ -29,22 +29,23 @@
|
|
|
|
|
|
|
|
|
|
#include "llwindow.h"
|
|
|
|
|
#include "llwindowcallbacks.h"
|
|
|
|
|
#include "llwindowmacosx-objc.h"
|
|
|
|
|
|
|
|
|
|
#include "lltimer.h"
|
|
|
|
|
|
|
|
|
|
#include <Carbon/Carbon.h>
|
|
|
|
|
#include <AGL/agl.h>
|
|
|
|
|
#include <ApplicationServices/ApplicationServices.h>
|
|
|
|
|
#include <OpenGL/OpenGL.h>
|
|
|
|
|
|
|
|
|
|
// AssertMacros.h does bad things.
|
|
|
|
|
#include "fix_macros.h"
|
|
|
|
|
#undef verify
|
|
|
|
|
#undef check
|
|
|
|
|
#undef require
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class LLWindowMacOSX : public LLWindow
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
/*virtual*/ void show();
|
|
|
|
|
/*virtual*/ void show(bool focus = true);
|
|
|
|
|
/*virtual*/ void hide();
|
|
|
|
|
/*virtual*/ void close();
|
|
|
|
|
/*virtual*/ BOOL getVisible();
|
|
|
|
|
@@ -60,7 +61,7 @@ public:
|
|
|
|
|
/*virtual*/ BOOL setPosition(LLCoordScreen position);
|
|
|
|
|
/*virtual*/ BOOL setSizeImpl(LLCoordScreen size);
|
|
|
|
|
/*virtual*/ BOOL setSizeImpl(LLCoordWindow size);
|
|
|
|
|
/*virtual*/ BOOL switchContext(BOOL fullscreen, const LLCoordScreen &size, const S32 vsync_mode, const LLCoordScreen * const posp = NULL);
|
|
|
|
|
/*virtual*/ BOOL switchContext(BOOL fullscreen, const LLCoordScreen &size, const S32 vsync_mode, const LLCoordScreen * const posp = nullptr);
|
|
|
|
|
/*virtual*/ BOOL setCursorPosition(LLCoordWindow position);
|
|
|
|
|
/*virtual*/ BOOL getCursorPosition(LLCoordWindow *position);
|
|
|
|
|
/*virtual*/ void showCursor();
|
|
|
|
|
@@ -76,19 +77,18 @@ public:
|
|
|
|
|
/*virtual*/ BOOL isClipboardTextAvailable();
|
|
|
|
|
/*virtual*/ BOOL pasteTextFromClipboard(LLWString &dst);
|
|
|
|
|
/*virtual*/ BOOL copyTextToClipboard(const LLWString & src);
|
|
|
|
|
/*virtual*/ void setWindowTitle(const std::string& title);
|
|
|
|
|
/*virtual*/ void flashIcon(F32 seconds);
|
|
|
|
|
/*virtual*/ F32 getGamma();
|
|
|
|
|
/*virtual*/ BOOL setGamma(const F32 gamma); // Set the gamma
|
|
|
|
|
/*virtual*/ U32 getFSAASamples();
|
|
|
|
|
/*virtual*/ void setFSAASamples(const U32 fsaa_samples);
|
|
|
|
|
/*virtual*/ void setVsyncMode(const S32 vsync_mode);
|
|
|
|
|
/*virtual*/ S32 getVsyncMode();
|
|
|
|
|
/*virtual*/ BOOL restoreGamma(); // Restore original gamma table (before updating gamma)
|
|
|
|
|
/*virtual*/ ESwapMethod getSwapMethod() { return mSwapMethod; }
|
|
|
|
|
/*virtual*/ void gatherInput();
|
|
|
|
|
/*virtual*/ void delayInputProcessing() {};
|
|
|
|
|
/*virtual*/ void swapBuffers();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// handy coordinate space conversion routines
|
|
|
|
|
/*virtual*/ BOOL convertCoords(LLCoordScreen from, LLCoordWindow *to);
|
|
|
|
|
/*virtual*/ BOOL convertCoords(LLCoordWindow from, LLCoordScreen *to);
|
|
|
|
|
@@ -108,26 +108,34 @@ public:
|
|
|
|
|
/*virtual*/ BOOL dialogColorPicker(F32 *r, F32 *g, F32 *b);
|
|
|
|
|
|
|
|
|
|
/*virtual*/ void *getPlatformWindow();
|
|
|
|
|
/*virtual*/ void *getMediaWindow();
|
|
|
|
|
/*virtual*/ void bringToFront() {};
|
|
|
|
|
|
|
|
|
|
/*virtual*/ void allowLanguageTextInput(LLPreeditor *preeditor, BOOL b);
|
|
|
|
|
/*virtual*/ void interruptLanguageTextInput();
|
|
|
|
|
/*virtual*/ void spawnWebBrowser(const std::string& escaped_url, bool async);
|
|
|
|
|
|
|
|
|
|
/*virtual*/ void setTitle(const std::string &title);
|
|
|
|
|
/*virtual*/ void ShellEx(const std::string& command);
|
|
|
|
|
/*virtual*/ F32 getScaleFactor();
|
|
|
|
|
/*virtual*/ void updateUnreadCount(S32 num_conversations);
|
|
|
|
|
|
|
|
|
|
static std::vector<std::string> getDynamicFallbackFontList();
|
|
|
|
|
|
|
|
|
|
// Provide native key event data
|
|
|
|
|
/*virtual*/ LLSD getNativeKeyData();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void* getWindow() { return mWindow; }
|
|
|
|
|
LLWindowCallbacks* getCallbacks() { return mCallbacks; }
|
|
|
|
|
LLPreeditor* getPreeditor() { return mPreeditor; }
|
|
|
|
|
|
|
|
|
|
void updateMouseDeltas(double* deltas);
|
|
|
|
|
void getMouseDeltas(S32* delta);
|
|
|
|
|
|
|
|
|
|
void handleDragNDrop(std::string url, LLWindowCallbacks::DragNDropAction action);
|
|
|
|
|
|
|
|
|
|
bool allowsLanguageInput() { return mLanguageTextInputAllowed; }
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
LLWindowMacOSX(LLWindowCallbacks* callbacks,
|
|
|
|
|
const std::string& title, const std::string& name, int x, int y, int width, int height, U32 flags,
|
|
|
|
|
BOOL fullscreen, BOOL clearBg, const S32 vsync_mode,
|
|
|
|
|
BOOL fullscreen, BOOL clearBg, S32 vsync_setting,
|
|
|
|
|
BOOL ignore_pixel_depth,
|
|
|
|
|
U32 fsaa_samples);
|
|
|
|
|
~LLWindowMacOSX();
|
|
|
|
|
@@ -148,6 +156,8 @@ protected:
|
|
|
|
|
|
|
|
|
|
BOOL shouldPostQuit() { return mPostQuit; }
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void restoreGLContext();
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
//
|
|
|
|
|
@@ -155,43 +165,36 @@ protected:
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
// create or re-create the GL context/window. Called from the constructor and switchContext().
|
|
|
|
|
BOOL createContext(int x, int y, int width, int height, int bits, BOOL fullscreen, const S32 vsync_mode);
|
|
|
|
|
BOOL createContext(int x, int y, int width, int height, int bits, BOOL fullscreen, S32 vsync_setting);
|
|
|
|
|
void destroyContext();
|
|
|
|
|
void setupFailure(const std::string& text, const std::string& caption, U32 type);
|
|
|
|
|
static pascal OSStatus staticEventHandler (EventHandlerCallRef myHandler, EventRef event, void* userData);
|
|
|
|
|
static pascal Boolean staticMoveEventComparator( EventRef event, void* data);
|
|
|
|
|
OSStatus eventHandler (EventHandlerCallRef myHandler, EventRef event);
|
|
|
|
|
void adjustCursorDecouple(bool warpingMouse = false);
|
|
|
|
|
void stopDockTileBounce();
|
|
|
|
|
static MASK modifiersToMask(SInt16 modifiers);
|
|
|
|
|
static MASK modifiersToMask(S16 modifiers);
|
|
|
|
|
|
|
|
|
|
#if LL_OS_DRAGDROP_ENABLED
|
|
|
|
|
static OSErr dragTrackingHandler(DragTrackingMessage message, WindowRef theWindow,
|
|
|
|
|
void * handlerRefCon, DragRef theDrag);
|
|
|
|
|
static OSErr dragReceiveHandler(WindowRef theWindow, void * handlerRefCon, DragRef theDrag);
|
|
|
|
|
OSErr handleDragNDrop(DragRef theDrag, LLWindowCallbacks::DragNDropAction action);
|
|
|
|
|
|
|
|
|
|
//static OSErr dragTrackingHandler(DragTrackingMessage message, WindowRef theWindow, void * handlerRefCon, DragRef theDrag);
|
|
|
|
|
//static OSErr dragReceiveHandler(WindowRef theWindow, void * handlerRefCon, DragRef theDrag);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // LL_OS_DRAGDROP_ENABLED
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Platform specific variables
|
|
|
|
|
//
|
|
|
|
|
WindowRef mWindow;
|
|
|
|
|
AGLContext mContext;
|
|
|
|
|
AGLPixelFormat mPixelFormat;
|
|
|
|
|
CGDirectDisplayID mDisplay;
|
|
|
|
|
CFDictionaryRef mOldDisplayMode;
|
|
|
|
|
EventLoopTimerRef mTimer;
|
|
|
|
|
EventHandlerUPP mEventHandlerUPP;
|
|
|
|
|
EventHandlerRef mGlobalHandlerRef;
|
|
|
|
|
EventHandlerRef mWindowHandlerRef;
|
|
|
|
|
EventComparatorUPP mMoveEventCampartorUPP;
|
|
|
|
|
|
|
|
|
|
Rect mOldMouseClip; // Screen rect to which the mouse cursor was globally constrained before we changed it in clipMouse()
|
|
|
|
|
Rect mPreviousWindowRect; // Save previous window for un-maximize event
|
|
|
|
|
Str255 mWindowTitle;
|
|
|
|
|
// Use generic pointers here. This lets us do some funky Obj-C interop using Obj-C objects without having to worry about any compilation problems that may arise.
|
|
|
|
|
NSWindowRef mWindow;
|
|
|
|
|
GLViewRef mGLView;
|
|
|
|
|
CGLContextObj mContext;
|
|
|
|
|
CGLPixelFormatObj mPixelFormat;
|
|
|
|
|
CGDirectDisplayID mDisplay;
|
|
|
|
|
|
|
|
|
|
LLRect mOldMouseClip; // Screen rect to which the mouse cursor was globally constrained before we changed it in clipMouse()
|
|
|
|
|
std::string mWindowTitle;
|
|
|
|
|
double mOriginalAspectRatio;
|
|
|
|
|
BOOL mSimulatedRightClick;
|
|
|
|
|
UInt32 mLastModifiers;
|
|
|
|
|
U32 mLastModifiers;
|
|
|
|
|
BOOL mHandsOffEvents; // When true, temporarially disable CarbonEvent processing.
|
|
|
|
|
// Used to allow event processing when putting up dialogs in fullscreen mode.
|
|
|
|
|
BOOL mCursorDecoupled;
|
|
|
|
|
@@ -204,28 +207,18 @@ protected:
|
|
|
|
|
BOOL mMaximized;
|
|
|
|
|
BOOL mMinimized;
|
|
|
|
|
U32 mFSAASamples;
|
|
|
|
|
S32 mVsyncMode;
|
|
|
|
|
BOOL mForceRebuild;
|
|
|
|
|
|
|
|
|
|
S32 mDragOverrideCursor;
|
|
|
|
|
|
|
|
|
|
F32 mBounceTime;
|
|
|
|
|
NMRec mBounceRec;
|
|
|
|
|
LLTimer mBounceTimer;
|
|
|
|
|
S32 mDragOverrideCursor;
|
|
|
|
|
|
|
|
|
|
// Input method management through Text Service Manager.
|
|
|
|
|
TSMDocumentID mTSMDocument;
|
|
|
|
|
BOOL mLanguageTextInputAllowed;
|
|
|
|
|
ScriptCode mTSMScriptCode;
|
|
|
|
|
LangCode mTSMLangCode;
|
|
|
|
|
LLPreeditor* mPreeditor;
|
|
|
|
|
|
|
|
|
|
static BOOL sUseMultGL;
|
|
|
|
|
|
|
|
|
|
friend class LLWindowManager;
|
|
|
|
|
static WindowRef sMediaWindow;
|
|
|
|
|
EventRef mRawKeyEvent;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|