mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
e1359382be
Minor other alterations that relate to above as well. Also added the PanicAlertT version of alerts for some error messages that use PanicAlert. We want the user to actually understand why the error occurred.
84 lines
1.6 KiB
C++
84 lines
1.6 KiB
C++
// Copyright 2013 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <string>
|
|
#include <wx/bitmap.h>
|
|
#include <wx/chartype.h>
|
|
#include <wx/gdicmn.h>
|
|
#include <wx/image.h>
|
|
#include <wx/mstream.h>
|
|
#include <wx/string.h>
|
|
#include <wx/utils.h>
|
|
|
|
#include "DolphinWX/WxUtils.h"
|
|
|
|
#ifdef __APPLE__
|
|
#import <AppKit/AppKit.h>
|
|
#endif
|
|
|
|
namespace WxUtils
|
|
{
|
|
|
|
// Launch a file according to its mime type
|
|
void Launch(const std::string& filename)
|
|
{
|
|
if (! ::wxLaunchDefaultBrowser(StrToWxStr(filename)))
|
|
{
|
|
// WARN_LOG
|
|
}
|
|
}
|
|
|
|
// Launch an file explorer window on a certain path
|
|
void Explore(const std::string& path)
|
|
{
|
|
wxString wxPath = StrToWxStr(path);
|
|
#ifndef _WIN32
|
|
// Default to file
|
|
if (! wxPath.Contains("://"))
|
|
{
|
|
wxPath = "file://" + wxPath;
|
|
}
|
|
#endif
|
|
|
|
#ifdef __WXGTK__
|
|
wxPath.Replace(" ", "\\ ");
|
|
#endif
|
|
|
|
if (! ::wxLaunchDefaultBrowser(wxPath))
|
|
{
|
|
// WARN_LOG
|
|
}
|
|
}
|
|
|
|
double GetCurrentBitmapLogicalScale()
|
|
{
|
|
#ifdef __APPLE__
|
|
// wx doesn't expose this itself, unfortunately.
|
|
if ([[NSScreen mainScreen] respondsToSelector:@selector(backingScaleFactor)])
|
|
{
|
|
return [[NSScreen mainScreen] backingScaleFactor];
|
|
}
|
|
#endif
|
|
return 1.0;
|
|
}
|
|
|
|
wxBitmap _wxGetBitmapFromMemory(const unsigned char* data, int length)
|
|
{
|
|
wxMemoryInputStream is(data, length);
|
|
return(wxBitmap(wxImage(is, wxBITMAP_TYPE_ANY, -1), -1));
|
|
}
|
|
|
|
} // namespace
|
|
|
|
std::string WxStrToStr(const wxString& str)
|
|
{
|
|
return str.ToUTF8().data();
|
|
}
|
|
|
|
wxString StrToWxStr(const std::string& str)
|
|
{
|
|
//return wxString::FromUTF8Unchecked(str.c_str());
|
|
return wxString::FromUTF8(str.c_str());
|
|
}
|