mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-05 14:18:53 +02:00
40 lines
866 B
C
40 lines
866 B
C
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
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 "../Audacity.h"
|
|
|
|
#include "wx/defs.h"
|
|
|
|
void OpenScreenshotTools();
|
|
void CloseScreenshotTools();
|
|
|
|
#endif // __AUDACITY_SCREENSHOT__
|
|
|
|
// Indentation settings for Vim and Emacs.
|
|
// Please do not modify past this point.
|
|
//
|
|
// Local Variables:
|
|
// c-basic-offset: 3
|
|
// indent-tabs-mode: nil
|
|
// End:
|
|
//
|
|
// vim: et sts=3 sw=3
|