⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tonegen.h

📁 Audacity是一款用於錄音和編輯聲音的、免費的開放源碼軟體。它可以執行於Mac OS X、Microsoft Windows、GNU/Linux和其它作業系統
💻 H
字号:
/**********************************************************************  Audacity: A Digital Audio Editor  ToneGen.h  Steve Jolly    This class implements a tone generator effect.**********************************************************************/#ifndef __AUDACITY_EFFECT_TONEGEN__#define __AUDACITY_EFFECT_TONEGEN__#include "SimpleMono.h"#include "../FFT.h"#include <wx/dialog.h>#include <math.h>class wxString;class wxButton;class wxCheckBox;class wxChoice;class wxSizer;class wxTextCtrl;#define __UNINITIALIZED__ (-1)class WaveTrack;class EffectToneGen:public Effect { public:   EffectToneGen();   virtual wxString GetEffectName() {      return wxString(_("Tone..."));   }   virtual wxString GetEffectAction() {      return wxString(_("Generating Tone"));   }   // Useful only after PromptUser values have been set.    virtual wxString GetEffectDescription();    virtual int GetEffectFlags() {      return BUILTIN_EFFECT | INSERT_EFFECT;   }   virtual bool PromptUser();   virtual bool TransferParameters( Shuttle & shuttle );   virtual bool Process(); protected:   virtual bool MakeTone(float *buffer, sampleCount len); private:   int waveform;   float frequency;   float amplitude;   double length;   int mSample;   double mCurRate;};// Declare window functions#define ID_TEXT 10000#define ID_WAVEFORM 10001#define ID_AMPTEXT 10002#define ID_FREQTEXT 10003#define ID_LENGTHTEXT 10005wxSizer *CreateToneGenDialog(wxWindow * parent, bool call_fit =                             TRUE, bool set_sizer = TRUE);// WDR: class declarations//----------------------------------------------------------------------------// ToneGenDialog//----------------------------------------------------------------------------class ToneGenDialog:public wxDialog { public:   // constructors and destructors   ToneGenDialog(wxWindow * parent, wxWindowID id, const wxString & title,                 const wxPoint & pos = wxDefaultPosition,                 const wxSize & size = wxDefaultSize,                 long style = wxDEFAULT_DIALOG_STYLE);   wxSizer *MakeToneGenDialog(wxWindow * parent, bool call_fit = TRUE,                              bool set_sizer = TRUE);   wxTextCtrl *GetFreqText() {      return (wxTextCtrl *) FindWindow(ID_FREQTEXT);   } wxTextCtrl *GetAmpText() {      return (wxTextCtrl *) FindWindow(ID_AMPTEXT);   } wxTextCtrl *GetLengthText() {      return (wxTextCtrl *) FindWindow(ID_LENGTHTEXT);   }   wxChoice *GetWaveformChoice() {      return (wxChoice *) FindWindow(ID_WAVEFORM);   }   virtual bool Validate();   virtual bool TransferDataToWindow();   virtual bool TransferDataFromWindow();   wxButton *mCreateToneButton; private:   // WDR: handler declarations for FilterDialog   void OnCreateTone(wxCommandEvent & event);   void OnCancel(wxCommandEvent & event); private:   DECLARE_EVENT_TABLE() public:   int waveform;   float frequency;   float amplitude;   double length;};#endif// Indentation settings for Vim and Emacs and unique identifier for Arch, a// version control system. Please do not modify past this point.//// Local Variables:// c-basic-offset: 3// indent-tabs-mode: nil// End://// vim: et sts=3 sw=3// arch-tag: b0b0e585-3416-4d56-aaa1-0efaffbc44f7

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -