1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-06 22:45:29 +01:00
Files
audacity/src/widgets/ProgressDialog.h
lllucius 1eeb4d979a The fabled realtime effects...
I've made it where you can enable and disable via experimentals:

EXPERIMENTAL_REALTIME_EFFECTS
EXPERIMENTAL_EFFECTS_RACK

You will notice that, as of now, the only effects currently set up for
realtime are VSTs.  Now that this is in, I will start converting the
rest.

As I start to convert the effects, the astute of you may notice that
they no longer directly access tracks or any "internal" Audacity
objects.  This isolates the effects from changes in Audacity and makes
it much easier to add new ones.

Anyway, all 3 platforms can now display VST effects in graphical mode.
Yes, that means Linux too.  There are quite a few VSTs for Linux if
you search for them.

The so-called "rack" definitely needs some discussion, work, and attention
from someone much better at graphics than me.  I'm not really sure it should
stay in as-is.  I'd originally planned for it to be simply a utility window
where you can store your (preconfigured) favorite effects.  It should probably
revert back to that idea.

You may notice that this DOES include the API work I did.  The realtime effects
were too tied to it and I didn't want to redo the whole thing.  As I mentioned
elsewhere, the API stuff may or may not be very future proof.

So, let the critter complaints commence.  I absolute KNOW there will be some.
(I know I'll be hearing from the Linux peeps pretty darn quickly.  ;-))
2014-10-26 03:24:10 +00:00

109 lines
3.3 KiB
C++

/**********************************************************************
Audacity: A Digital Audio Editor
ProgressDialog.h
Copyright
Leland Lucius
Vaughan Johnson
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_WIDGETS_PROGRESSDIALOG__
#define __AUDACITY_WIDGETS_PROGRESSDIALOG__
#include "../Audacity.h"
#include <wx/defs.h>
#include <wx/dialog.h>
#include <wx/gauge.h>
#include <wx/stattext.h>
#include <wx/utils.h>
enum
{
eProgressCancelled = 0, //<! User says that whatever is happening is undesirable and shouldn't have happened at all
eProgressSuccess, //<! User says nothing, everything works fine, continue doing whatever we're doing
eProgressFailed, //<! Something has gone wrong, we should stop and cancel everything we did
eProgressStopped //<! Nothing is wrong, but user says we should stop now and leave things as they are now
};
enum ProgressDialogFlags
{
pdlgEmptyFlags = 0x00000000,
pdlgHideStopButton = 0x00000001,
pdlgHideCancelButton = 0x00000002
} ;
////////////////////////////////////////////////////////////
/// ProgressDialog Class
////////////////////////////////////////////////////////////
class AUDACITY_DLL_API ProgressDialog:public wxDialog
{
public:
ProgressDialog(const wxString & title, const wxString & message = wxEmptyString, ProgressDialogFlags flags = pdlgEmptyFlags);
virtual ~ProgressDialog();
bool Show(bool show = true);
int Update(int value, const wxString & message = wxEmptyString);
int Update(double current, const wxString & message = wxEmptyString);
int Update(double current, double total, const wxString & message = wxEmptyString);
int Update(wxULongLong_t current, wxULongLong_t total, const wxString & message = wxEmptyString);
int Update(wxLongLong current, wxLongLong total, const wxString & message = wxEmptyString);
int Update(wxLongLong_t current, wxLongLong_t total, const wxString & message = wxEmptyString);
int Update(int current, int total, const wxString & message = wxEmptyString);
void SetMessage(const wxString & message);
private:
void OnCancel(wxCommandEvent & e);
void OnStop(wxCommandEvent & e);
void OnCloseWindow(wxCloseEvent & e);
void Beep();
protected:
wxStaticText *mElapsed;
wxStaticText *mRemaining;
wxGauge *mGauge;
wxLongLong_t mStartTime;
wxLongLong_t mLastUpdate;
int mLastValue; // gauge value, range = [0,1000]
bool mCancel;
bool mStop;
private:
bool SearchForWindow(const wxWindowList & list, const wxWindow *searchfor);
wxWindow *mHadFocus;
wxStaticText *mMessage;
wxWindowDisabler *mDisable;
DECLARE_EVENT_TABLE();
};
class AUDACITY_DLL_API TimerProgressDialog : public ProgressDialog
{
public:
TimerProgressDialog(const wxLongLong_t duration,
const wxString & title,
const wxString & message = wxEmptyString,
ProgressDialogFlags flags = pdlgEmptyFlags);
int Update(const wxString & message = wxEmptyString);
protected:
wxLongLong_t mDuration;
};
#endif