mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-16 08:09:32 +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>
32 lines
696 B
C++
32 lines
696 B
C++
/**********************************************************************
|
|
|
|
Tenacity
|
|
|
|
Screenshot.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
*******************************************************************//**
|
|
|
|
\file Screenshot.h
|
|
|
|
Opens a modeless dialog that aids in rearranging the project window
|
|
to a canonical size and state and then capturing full and partial
|
|
screenshots to disk.
|
|
|
|
*//*******************************************************************/
|
|
|
|
#ifndef __AUDACITY_SCREENSHOT__
|
|
#define __AUDACITY_SCREENSHOT__
|
|
|
|
|
|
|
|
#include <wx/defs.h>
|
|
|
|
class AudacityProject;
|
|
|
|
AUDACITY_DLL_API void OpenScreenshotTools( AudacityProject &project );
|
|
void CloseScreenshotTools();
|
|
|
|
#endif // __AUDACITY_SCREENSHOT__
|