mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-05 14:49:25 +02:00
List of commands that were executed in the `src directory`: * sed -i 's/Audacity: A Digital Audio Editor/Tenacity/g' *.h * sed -i 's/Audacity: A Digital Audio Editor/Tenacity/g' *.cpp Signed-off-by: Panagiotis Vasilopoulos <hello@alwayslivid.com>
37 lines
979 B
C++
37 lines
979 B
C++
/**********************************************************************
|
|
|
|
Tenacity
|
|
|
|
TempDirectory.h
|
|
|
|
Paul Licameli split from FileNames.h
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_TEMP_DIRECTORY__
|
|
#define __AUDACITY_TEMP_DIRECTORY__
|
|
|
|
|
|
#include "Identifier.h"
|
|
class TranslatableString;
|
|
class wxWindow;
|
|
|
|
namespace TempDirectory
|
|
{
|
|
AUDACITY_DLL_API wxString TempDir();
|
|
AUDACITY_DLL_API void ResetTempDir();
|
|
|
|
AUDACITY_DLL_API const FilePath &DefaultTempDir();
|
|
AUDACITY_DLL_API void SetDefaultTempDir( const FilePath &tempDir );
|
|
AUDACITY_DLL_API bool IsTempDirectoryNameOK( const FilePath & Name );
|
|
|
|
// Create a filename for an unsaved/temporary project file
|
|
AUDACITY_DLL_API wxString UnsavedProjectFileName();
|
|
|
|
AUDACITY_DLL_API bool FATFilesystemDenied(const FilePath &path,
|
|
const TranslatableString &msg,
|
|
wxWindow *window = nullptr);
|
|
};
|
|
|
|
#endif
|