Fix up ShellEx
It's now crossplatform wrapper for std::system opening of a file/path/url. It returns an int just like std::system, 0 means it worked. It's static so you don't need to gViewerWindow->getWindow() anymore, honestly it should've been static in the first place. Clean up other code to use this function because duplicate code sucks. # Conflicts: # indra/llwindow/llwindowmacosx.h # indra/llwindow/llwindowsdl2.cpp
This commit is contained in:
@@ -252,6 +252,19 @@ BOOL LLWindow::copyTextToPrimary(const LLWString &src)
|
|||||||
return FALSE; // fail
|
return FALSE; // fail
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int LLWindow::ShellEx(const std::string& command)
|
||||||
|
{
|
||||||
|
constexpr auto&& open =
|
||||||
|
#if LL_WINDOWS
|
||||||
|
"start \"\" \""; // Quoted first argument is the title of the command prompt
|
||||||
|
#elif LL_DARWIN
|
||||||
|
"open \"";
|
||||||
|
#else // LL_LINUX or other modern unix, pray it has xdg-open
|
||||||
|
"xdg-open \""
|
||||||
|
#endif
|
||||||
|
return std::system((open + command + '"').c_str());
|
||||||
|
}
|
||||||
|
|
||||||
// static
|
// static
|
||||||
std::vector<std::string> LLWindow::getDynamicFallbackFontList()
|
std::vector<std::string> LLWindow::getDynamicFallbackFontList()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -168,7 +168,7 @@ public:
|
|||||||
virtual void updateLanguageTextInputArea() {}
|
virtual void updateLanguageTextInputArea() {}
|
||||||
virtual void interruptLanguageTextInput() {}
|
virtual void interruptLanguageTextInput() {}
|
||||||
virtual void spawnWebBrowser(const std::string& escaped_url, bool async) {};
|
virtual void spawnWebBrowser(const std::string& escaped_url, bool async) {};
|
||||||
virtual void ShellEx(const std::string& command) {};
|
static int ShellEx(const std::string& command);
|
||||||
|
|
||||||
static std::vector<std::string> getDynamicFallbackFontList();
|
static std::vector<std::string> getDynamicFallbackFontList();
|
||||||
|
|
||||||
|
|||||||
@@ -1756,13 +1756,6 @@ void LLWindowMacOSX::spawnWebBrowser(const std::string& escaped_url, bool async)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Open a URL with the user's default web browser.
|
|
||||||
// Must begin with protocol identifier.
|
|
||||||
void LLWindowMacOSX::ShellEx(const std::string& command)
|
|
||||||
{
|
|
||||||
std::system(("open " + command).data());
|
|
||||||
}
|
|
||||||
|
|
||||||
LLSD LLWindowMacOSX::getNativeKeyData()
|
LLSD LLWindowMacOSX::getNativeKeyData()
|
||||||
{
|
{
|
||||||
LLSD result = LLSD::emptyMap();
|
LLSD result = LLSD::emptyMap();
|
||||||
|
|||||||
@@ -29,22 +29,23 @@
|
|||||||
|
|
||||||
#include "llwindow.h"
|
#include "llwindow.h"
|
||||||
#include "llwindowcallbacks.h"
|
#include "llwindowcallbacks.h"
|
||||||
|
#include "llwindowmacosx-objc.h"
|
||||||
|
|
||||||
#include "lltimer.h"
|
#include "lltimer.h"
|
||||||
|
|
||||||
#include <Carbon/Carbon.h>
|
#include <ApplicationServices/ApplicationServices.h>
|
||||||
#include <AGL/agl.h>
|
#include <OpenGL/OpenGL.h>
|
||||||
|
|
||||||
// AssertMacros.h does bad things.
|
// AssertMacros.h does bad things.
|
||||||
|
#include "fix_macros.h"
|
||||||
#undef verify
|
#undef verify
|
||||||
#undef check
|
|
||||||
#undef require
|
#undef require
|
||||||
|
|
||||||
|
|
||||||
class LLWindowMacOSX : public LLWindow
|
class LLWindowMacOSX : public LLWindow
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/*virtual*/ void show();
|
/*virtual*/ void show(bool focus = true);
|
||||||
/*virtual*/ void hide();
|
/*virtual*/ void hide();
|
||||||
/*virtual*/ void close();
|
/*virtual*/ void close();
|
||||||
/*virtual*/ BOOL getVisible();
|
/*virtual*/ BOOL getVisible();
|
||||||
@@ -60,7 +61,7 @@ public:
|
|||||||
/*virtual*/ BOOL setPosition(LLCoordScreen position);
|
/*virtual*/ BOOL setPosition(LLCoordScreen position);
|
||||||
/*virtual*/ BOOL setSizeImpl(LLCoordScreen size);
|
/*virtual*/ BOOL setSizeImpl(LLCoordScreen size);
|
||||||
/*virtual*/ BOOL setSizeImpl(LLCoordWindow 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 setCursorPosition(LLCoordWindow position);
|
||||||
/*virtual*/ BOOL getCursorPosition(LLCoordWindow *position);
|
/*virtual*/ BOOL getCursorPosition(LLCoordWindow *position);
|
||||||
/*virtual*/ void showCursor();
|
/*virtual*/ void showCursor();
|
||||||
@@ -76,13 +77,12 @@ public:
|
|||||||
/*virtual*/ BOOL isClipboardTextAvailable();
|
/*virtual*/ BOOL isClipboardTextAvailable();
|
||||||
/*virtual*/ BOOL pasteTextFromClipboard(LLWString &dst);
|
/*virtual*/ BOOL pasteTextFromClipboard(LLWString &dst);
|
||||||
/*virtual*/ BOOL copyTextToClipboard(const LLWString & src);
|
/*virtual*/ BOOL copyTextToClipboard(const LLWString & src);
|
||||||
|
/*virtual*/ void setWindowTitle(const std::string& title);
|
||||||
/*virtual*/ void flashIcon(F32 seconds);
|
/*virtual*/ void flashIcon(F32 seconds);
|
||||||
/*virtual*/ F32 getGamma();
|
/*virtual*/ F32 getGamma();
|
||||||
/*virtual*/ BOOL setGamma(const F32 gamma); // Set the gamma
|
/*virtual*/ BOOL setGamma(const F32 gamma); // Set the gamma
|
||||||
/*virtual*/ U32 getFSAASamples();
|
/*virtual*/ U32 getFSAASamples();
|
||||||
/*virtual*/ void setFSAASamples(const U32 fsaa_samples);
|
/*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*/ BOOL restoreGamma(); // Restore original gamma table (before updating gamma)
|
||||||
/*virtual*/ ESwapMethod getSwapMethod() { return mSwapMethod; }
|
/*virtual*/ ESwapMethod getSwapMethod() { return mSwapMethod; }
|
||||||
/*virtual*/ void gatherInput();
|
/*virtual*/ void gatherInput();
|
||||||
@@ -108,26 +108,34 @@ public:
|
|||||||
/*virtual*/ BOOL dialogColorPicker(F32 *r, F32 *g, F32 *b);
|
/*virtual*/ BOOL dialogColorPicker(F32 *r, F32 *g, F32 *b);
|
||||||
|
|
||||||
/*virtual*/ void *getPlatformWindow();
|
/*virtual*/ void *getPlatformWindow();
|
||||||
/*virtual*/ void *getMediaWindow();
|
|
||||||
/*virtual*/ void bringToFront() {};
|
/*virtual*/ void bringToFront() {};
|
||||||
|
|
||||||
/*virtual*/ void allowLanguageTextInput(LLPreeditor *preeditor, BOOL b);
|
/*virtual*/ void allowLanguageTextInput(LLPreeditor *preeditor, BOOL b);
|
||||||
/*virtual*/ void interruptLanguageTextInput();
|
/*virtual*/ void interruptLanguageTextInput();
|
||||||
/*virtual*/ void spawnWebBrowser(const std::string& escaped_url, bool async);
|
/*virtual*/ void spawnWebBrowser(const std::string& escaped_url, bool async);
|
||||||
|
/*virtual*/ F32 getScaleFactor();
|
||||||
/*virtual*/ void setTitle(const std::string &title);
|
/*virtual*/ void updateUnreadCount(S32 num_conversations);
|
||||||
/*virtual*/ void ShellEx(const std::string& command);
|
|
||||||
|
|
||||||
static std::vector<std::string> getDynamicFallbackFontList();
|
static std::vector<std::string> getDynamicFallbackFontList();
|
||||||
|
|
||||||
// Provide native key event data
|
// Provide native key event data
|
||||||
/*virtual*/ LLSD getNativeKeyData();
|
/*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:
|
protected:
|
||||||
LLWindowMacOSX(LLWindowCallbacks* callbacks,
|
LLWindowMacOSX(LLWindowCallbacks* callbacks,
|
||||||
const std::string& title, const std::string& name, int x, int y, int width, int height, U32 flags,
|
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,
|
BOOL ignore_pixel_depth,
|
||||||
U32 fsaa_samples);
|
U32 fsaa_samples);
|
||||||
~LLWindowMacOSX();
|
~LLWindowMacOSX();
|
||||||
@@ -148,6 +156,8 @@ protected:
|
|||||||
|
|
||||||
BOOL shouldPostQuit() { return mPostQuit; }
|
BOOL shouldPostQuit() { return mPostQuit; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
void restoreGLContext();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
//
|
//
|
||||||
@@ -155,43 +165,36 @@ protected:
|
|||||||
//
|
//
|
||||||
|
|
||||||
// create or re-create the GL context/window. Called from the constructor and switchContext().
|
// 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 destroyContext();
|
||||||
void setupFailure(const std::string& text, const std::string& caption, U32 type);
|
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 adjustCursorDecouple(bool warpingMouse = false);
|
||||||
void stopDockTileBounce();
|
static MASK modifiersToMask(S16 modifiers);
|
||||||
static MASK modifiersToMask(SInt16 modifiers);
|
|
||||||
|
|
||||||
#if LL_OS_DRAGDROP_ENABLED
|
#if LL_OS_DRAGDROP_ENABLED
|
||||||
static OSErr dragTrackingHandler(DragTrackingMessage message, WindowRef theWindow,
|
|
||||||
void * handlerRefCon, DragRef theDrag);
|
//static OSErr dragTrackingHandler(DragTrackingMessage message, WindowRef theWindow, void * handlerRefCon, DragRef theDrag);
|
||||||
static OSErr dragReceiveHandler(WindowRef theWindow, void * handlerRefCon, DragRef theDrag);
|
//static OSErr dragReceiveHandler(WindowRef theWindow, void * handlerRefCon, DragRef theDrag);
|
||||||
OSErr handleDragNDrop(DragRef theDrag, LLWindowCallbacks::DragNDropAction action);
|
|
||||||
|
|
||||||
#endif // LL_OS_DRAGDROP_ENABLED
|
#endif // LL_OS_DRAGDROP_ENABLED
|
||||||
|
|
||||||
//
|
//
|
||||||
// Platform specific variables
|
// 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()
|
// 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.
|
||||||
Rect mPreviousWindowRect; // Save previous window for un-maximize event
|
NSWindowRef mWindow;
|
||||||
Str255 mWindowTitle;
|
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;
|
double mOriginalAspectRatio;
|
||||||
BOOL mSimulatedRightClick;
|
BOOL mSimulatedRightClick;
|
||||||
UInt32 mLastModifiers;
|
U32 mLastModifiers;
|
||||||
BOOL mHandsOffEvents; // When true, temporarially disable CarbonEvent processing.
|
BOOL mHandsOffEvents; // When true, temporarially disable CarbonEvent processing.
|
||||||
// Used to allow event processing when putting up dialogs in fullscreen mode.
|
// Used to allow event processing when putting up dialogs in fullscreen mode.
|
||||||
BOOL mCursorDecoupled;
|
BOOL mCursorDecoupled;
|
||||||
@@ -204,27 +207,17 @@ protected:
|
|||||||
BOOL mMaximized;
|
BOOL mMaximized;
|
||||||
BOOL mMinimized;
|
BOOL mMinimized;
|
||||||
U32 mFSAASamples;
|
U32 mFSAASamples;
|
||||||
S32 mVsyncMode;
|
|
||||||
BOOL mForceRebuild;
|
BOOL mForceRebuild;
|
||||||
|
|
||||||
S32 mDragOverrideCursor;
|
S32 mDragOverrideCursor;
|
||||||
|
|
||||||
F32 mBounceTime;
|
|
||||||
NMRec mBounceRec;
|
|
||||||
LLTimer mBounceTimer;
|
|
||||||
|
|
||||||
// Input method management through Text Service Manager.
|
// Input method management through Text Service Manager.
|
||||||
TSMDocumentID mTSMDocument;
|
|
||||||
BOOL mLanguageTextInputAllowed;
|
BOOL mLanguageTextInputAllowed;
|
||||||
ScriptCode mTSMScriptCode;
|
|
||||||
LangCode mTSMLangCode;
|
|
||||||
LLPreeditor* mPreeditor;
|
LLPreeditor* mPreeditor;
|
||||||
|
|
||||||
static BOOL sUseMultGL;
|
static BOOL sUseMultGL;
|
||||||
|
|
||||||
friend class LLWindowManager;
|
friend class LLWindowManager;
|
||||||
static WindowRef sMediaWindow;
|
|
||||||
EventRef mRawKeyEvent;
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -3361,20 +3361,6 @@ S32 OSMessageBoxWin32(const std::string& text, const std::string& caption, U32 t
|
|||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
void LLWindowWin32::ShellEx(const std::string& command)
|
|
||||||
{
|
|
||||||
LLWString url_wstring = utf8str_to_wstring( "\"" + command + "\"" );
|
|
||||||
llutf16string url_utf16 = wstring_to_utf16str( url_wstring );
|
|
||||||
|
|
||||||
SHELLEXECUTEINFO sei = { sizeof( sei ) };
|
|
||||||
sei.fMask = SEE_MASK_FLAG_DDEWAIT;
|
|
||||||
sei.nShow = SW_SHOWNORMAL;
|
|
||||||
sei.lpVerb = L"open";
|
|
||||||
sei.lpFile = url_utf16.c_str();
|
|
||||||
ShellExecuteEx( &sei );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void LLWindowWin32::spawnWebBrowser(const std::string& escaped_url, bool async)
|
void LLWindowWin32::spawnWebBrowser(const std::string& escaped_url, bool async)
|
||||||
{
|
{
|
||||||
if (!isWhitelistedProtocol(escaped_url))
|
if (!isWhitelistedProtocol(escaped_url))
|
||||||
|
|||||||
@@ -109,7 +109,6 @@ public:
|
|||||||
/*virtual*/ void setLanguageTextInput( const LLCoordGL & pos );
|
/*virtual*/ void setLanguageTextInput( const LLCoordGL & pos );
|
||||||
/*virtual*/ void updateLanguageTextInputArea();
|
/*virtual*/ void updateLanguageTextInputArea();
|
||||||
/*virtual*/ void interruptLanguageTextInput();
|
/*virtual*/ void interruptLanguageTextInput();
|
||||||
void ShellEx(const std::string& command);
|
|
||||||
/*virtual*/ void spawnWebBrowser(const std::string& escaped_url, bool async);
|
/*virtual*/ void spawnWebBrowser(const std::string& escaped_url, bool async);
|
||||||
|
|
||||||
/*virtual*/ void setTitle(const std::string &title);
|
/*virtual*/ void setTitle(const std::string &title);
|
||||||
|
|||||||
@@ -948,7 +948,7 @@ void lggHunSpell_Wrapper::editCustomButton()
|
|||||||
//glggHunSpell->addWordToCustomDictionary("temp");
|
//glggHunSpell->addWordToCustomDictionary("temp");
|
||||||
}
|
}
|
||||||
|
|
||||||
gViewerWindow->getWindow()->ShellEx(dicdicpath);
|
LLWindow::ShellEx(dicdicpath);
|
||||||
}
|
}
|
||||||
|
|
||||||
void lggHunSpell_Wrapper::setSpellCheckHighlight(BOOL highlight)
|
void lggHunSpell_Wrapper::setSpellCheckHighlight(BOOL highlight)
|
||||||
|
|||||||
@@ -1154,12 +1154,7 @@ void show_log_browser(const std::string& name, const std::string& id)
|
|||||||
const std::string file(LLLogChat::makeLogFileName(name));
|
const std::string file(LLLogChat::makeLogFileName(name));
|
||||||
if (gSavedSettings.getBOOL("LiruLegacyLogLaunch"))
|
if (gSavedSettings.getBOOL("LiruLegacyLogLaunch"))
|
||||||
{
|
{
|
||||||
#if LL_WINDOWS || LL_DARWIN
|
if (!LLWindow::ShellEx(file)) // 0 = success, otherwise fallback on internal browser.
|
||||||
gViewerWindow->getWindow()->ShellEx(file);
|
|
||||||
#elif LL_LINUX
|
|
||||||
// xdg-open might not actually be installed on all distros, but it's our best bet.
|
|
||||||
if (!std::system(("/usr/bin/xdg-open \"" + file +'"').c_str())) // 0 = success, otherwise fallback on internal browser.
|
|
||||||
#endif
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
LLFloaterWebContent::Params p;
|
LLFloaterWebContent::Params p;
|
||||||
|
|||||||
Reference in New Issue
Block a user