1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 14:02:57 +02:00

Simplify and extend automatic screenshotting

Now includes 2 'outlier' analysis effects, and has simpler code.
The tricky capture cases are now first in the list.
Vocorder and Chirp are now included.  Comma was missing between them.
Now gives error report for an unknown command.
This commit is contained in:
James Crook
2017-06-04 16:52:17 +01:00
parent c38efc1fcd
commit ee9649eeb5
5 changed files with 45 additions and 23 deletions

View File

@@ -56,6 +56,9 @@ private:
public:
static ScreenshotCommand * mpShooter;
static void (*mIdleHandler)(wxIdleEvent& event);
static void SetIdleHandler( void (*pHandler)(wxIdleEvent& event) ){mIdleHandler=pHandler;};
static bool MayCapture( wxDialog * pDlg );
void CaptureWindowOnIdle( wxWindow * pWin );
wxTopLevelWindow *GetFrontWindow(AudacityProject *project);