1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00
JUCE/src/native/windows/juce_win32_PlatformUtils.cpp
2010-03-26 18:23:54 +00:00

234 lines
7 KiB
C++

/*
==============================================================================
This file is part of the JUCE library - "Jules' Utility Class Extensions"
Copyright 2004-9 by Raw Material Software Ltd.
------------------------------------------------------------------------------
JUCE can be redistributed and/or modified under the terms of the GNU General
Public License (Version 2), as published by the Free Software Foundation.
A copy of the license is included in the JUCE distribution, or can be found
online at www.gnu.org/licenses.
JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
------------------------------------------------------------------------------
To release a closed-source product which uses JUCE, commercial licenses are
available: visit www.rawmaterialsoftware.com/juce for more information.
==============================================================================
*/
// (This file gets included by juce_win32_NativeCode.cpp, rather than being
// compiled on its own).
#if JUCE_INCLUDED_FILE
//==============================================================================
static HKEY findKeyForPath (String name,
const bool createForWriting,
String& valueName)
{
HKEY rootKey = 0;
if (name.startsWithIgnoreCase ("HKEY_CURRENT_USER\\"))
rootKey = HKEY_CURRENT_USER;
else if (name.startsWithIgnoreCase ("HKEY_LOCAL_MACHINE\\"))
rootKey = HKEY_LOCAL_MACHINE;
else if (name.startsWithIgnoreCase ("HKEY_CLASSES_ROOT\\"))
rootKey = HKEY_CLASSES_ROOT;
if (rootKey != 0)
{
name = name.substring (name.indexOfChar ('\\') + 1);
const int lastSlash = name.lastIndexOfChar ('\\');
valueName = name.substring (lastSlash + 1);
name = name.substring (0, lastSlash);
HKEY key;
DWORD result;
if (createForWriting)
{
if (RegCreateKeyEx (rootKey, name, 0, 0, REG_OPTION_NON_VOLATILE,
(KEY_WRITE | KEY_QUERY_VALUE), 0, &key, &result) == ERROR_SUCCESS)
return key;
}
else
{
if (RegOpenKeyEx (rootKey, name, 0, KEY_READ, &key) == ERROR_SUCCESS)
return key;
}
}
return 0;
}
const String PlatformUtilities::getRegistryValue (const String& regValuePath,
const String& defaultValue)
{
String valueName, result (defaultValue);
HKEY k = findKeyForPath (regValuePath, false, valueName);
if (k != 0)
{
WCHAR buffer [2048];
unsigned long bufferSize = sizeof (buffer);
DWORD type = REG_SZ;
if (RegQueryValueEx (k, valueName, 0, &type, (LPBYTE) buffer, &bufferSize) == ERROR_SUCCESS)
{
if (type == REG_SZ)
result = buffer;
else if (type == REG_DWORD)
result = String ((int) *(DWORD*) buffer);
}
RegCloseKey (k);
}
return result;
}
void PlatformUtilities::setRegistryValue (const String& regValuePath,
const String& value)
{
String valueName;
HKEY k = findKeyForPath (regValuePath, true, valueName);
if (k != 0)
{
RegSetValueEx (k, valueName, 0, REG_SZ,
(const BYTE*) (const WCHAR*) value,
sizeof (WCHAR) * (value.length() + 1));
RegCloseKey (k);
}
}
bool PlatformUtilities::registryValueExists (const String& regValuePath)
{
bool exists = false;
String valueName;
HKEY k = findKeyForPath (regValuePath, false, valueName);
if (k != 0)
{
unsigned char buffer [2048];
unsigned long bufferSize = sizeof (buffer);
DWORD type = 0;
if (RegQueryValueEx (k, valueName, 0, &type, buffer, &bufferSize) == ERROR_SUCCESS)
exists = true;
RegCloseKey (k);
}
return exists;
}
void PlatformUtilities::deleteRegistryValue (const String& regValuePath)
{
String valueName;
HKEY k = findKeyForPath (regValuePath, true, valueName);
if (k != 0)
{
RegDeleteValue (k, valueName);
RegCloseKey (k);
}
}
void PlatformUtilities::deleteRegistryKey (const String& regKeyPath)
{
String valueName;
HKEY k = findKeyForPath (regKeyPath, true, valueName);
if (k != 0)
{
RegDeleteKey (k, valueName);
RegCloseKey (k);
}
}
void PlatformUtilities::registerFileAssociation (const String& fileExtension,
const String& symbolicDescription,
const String& fullDescription,
const File& targetExecutable,
int iconResourceNumber)
{
setRegistryValue ("HKEY_CLASSES_ROOT\\" + fileExtension + "\\", symbolicDescription);
const String key ("HKEY_CLASSES_ROOT\\" + symbolicDescription);
if (iconResourceNumber != 0)
setRegistryValue (key + "\\DefaultIcon\\",
targetExecutable.getFullPathName() + "," + String (-iconResourceNumber));
setRegistryValue (key + "\\", fullDescription);
setRegistryValue (key + "\\shell\\open\\command\\",
targetExecutable.getFullPathName() + " %1");
}
//==============================================================================
bool juce_IsRunningInWine()
{
HKEY key;
if (RegOpenKeyEx (HKEY_CURRENT_USER, _T("Software\\Wine"), 0, KEY_READ, &key) == ERROR_SUCCESS)
{
RegCloseKey (key);
return true;
}
return false;
}
//==============================================================================
const String JUCE_CALLTYPE PlatformUtilities::getCurrentCommandLineParams() throw()
{
String s (::GetCommandLineW());
StringArray tokens;
tokens.addTokens (s, true); // tokenise so that we can remove the initial filename argument
return tokens.joinIntoString (" ", 1);
}
//==============================================================================
static void* currentModuleHandle = 0;
void* PlatformUtilities::getCurrentModuleInstanceHandle() throw()
{
if (currentModuleHandle == 0)
currentModuleHandle = GetModuleHandle (0);
return currentModuleHandle;
}
void PlatformUtilities::setCurrentModuleInstanceHandle (void* const newHandle) throw()
{
currentModuleHandle = newHandle;
}
void PlatformUtilities::fpuReset()
{
#if JUCE_MSVC
_clearfp();
#endif
}
//==============================================================================
void PlatformUtilities::beep()
{
MessageBeep (MB_OK);
}
#endif