mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-02 15:13:50 +01: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>
38 lines
892 B
C++
38 lines
892 B
C++
/**********************************************************************
|
|
|
|
Tenacity
|
|
|
|
SoundActivatedRecord.cpp
|
|
|
|
Martyn Shaw
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
********************************************************************/
|
|
|
|
#ifndef __AUDACITY_SOUND_ACTIVATED_RECORD__
|
|
#define __AUDACITY_SOUND_ACTIVATED_RECORD__
|
|
|
|
#include "widgets/wxPanelWrapper.h" // to inherit
|
|
|
|
class ShuttleGui;
|
|
|
|
class SoundActivatedRecordDialog final : public wxDialogWrapper
|
|
{
|
|
public:
|
|
SoundActivatedRecordDialog(wxWindow* parent);
|
|
~SoundActivatedRecordDialog();
|
|
|
|
private:
|
|
void OnOK(wxCommandEvent& event);
|
|
|
|
void PopulateOrExchange(ShuttleGui& S);
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
#endif
|