mirror of
https://github.com/cookiengineer/audacity
synced 2025-09-17 16:50:26 +02:00
AUP3: Fix includes
This commit is contained in:
parent
251da3bb3b
commit
5ffff72d35
@ -21,14 +21,14 @@
|
|||||||
#include "Import.h"
|
#include "Import.h"
|
||||||
#include "ImportPlugin.h"
|
#include "ImportPlugin.h"
|
||||||
|
|
||||||
#include "../Project.h"
|
#include "../Envelope.h"
|
||||||
#include "../ProjectFileIO.h"
|
#include "../FileFormats.h"
|
||||||
#include "../Tags.h"
|
|
||||||
#include "../WaveClip.h"
|
|
||||||
#include "../widgets/ProgressDialog.h"
|
|
||||||
#include "../xml/XMLFileReader.h"
|
|
||||||
|
|
||||||
#include "../FileNames.h"
|
#include "../FileNames.h"
|
||||||
|
#include "../LabelTrack.h"
|
||||||
|
#if defined(USE_MIDI)
|
||||||
|
#include "../NoteTrack.h"
|
||||||
|
#endif
|
||||||
|
#include "../Prefs.h"
|
||||||
#include "../Project.h"
|
#include "../Project.h"
|
||||||
#include "../ProjectFileIO.h"
|
#include "../ProjectFileIO.h"
|
||||||
#include "../ProjectFileIORegistry.h"
|
#include "../ProjectFileIORegistry.h"
|
||||||
@ -37,28 +37,29 @@
|
|||||||
#include "../ProjectSelectionManager.h"
|
#include "../ProjectSelectionManager.h"
|
||||||
#include "../ProjectSettings.h"
|
#include "../ProjectSettings.h"
|
||||||
#include "../Tags.h"
|
#include "../Tags.h"
|
||||||
|
#include "../TimeTrack.h"
|
||||||
#include "../ViewInfo.h"
|
#include "../ViewInfo.h"
|
||||||
|
#include "../WaveClip.h"
|
||||||
#include "../WaveTrack.h"
|
#include "../WaveTrack.h"
|
||||||
#include "../toolbars/SelectionBar.h"
|
#include "../toolbars/SelectionBar.h"
|
||||||
#include "../widgets/AudacityMessageBox.h"
|
#include "../widgets/AudacityMessageBox.h"
|
||||||
#include "../widgets/NumericTextCtrl.h"
|
#include "../widgets/NumericTextCtrl.h"
|
||||||
|
#include "../widgets/ProgressDialog.h"
|
||||||
|
#include "../xml/XMLFileReader.h"
|
||||||
|
|
||||||
#include <wx/dir.h>
|
#include <map>
|
||||||
|
|
||||||
#define DESC XO("AUP project files")
|
#define DESC XO("AUP project files")
|
||||||
|
|
||||||
static const auto exts = {wxT("aup")};
|
static const auto exts = {wxT("aup")};
|
||||||
|
|
||||||
|
#include <wx/dir.h>
|
||||||
#include <wx/ffile.h>
|
#include <wx/ffile.h>
|
||||||
#include <wx/file.h>
|
#include <wx/file.h>
|
||||||
|
#include <wx/frame.h>
|
||||||
#include <wx/string.h>
|
#include <wx/string.h>
|
||||||
#include <wx/utils.h>
|
#include <wx/utils.h>
|
||||||
|
|
||||||
#include "../FileFormats.h"
|
|
||||||
#include "../Prefs.h"
|
|
||||||
#include "../WaveTrack.h"
|
|
||||||
#include "ImportPlugin.h"
|
|
||||||
|
|
||||||
class AUPImportFileHandle;
|
class AUPImportFileHandle;
|
||||||
using ImportHandle = std::unique_ptr<ImportFileHandle>;
|
using ImportHandle = std::unique_ptr<ImportFileHandle>;
|
||||||
|
|
||||||
@ -111,9 +112,9 @@ private:
|
|||||||
};
|
};
|
||||||
using stack = std::vector<struct node>;
|
using stack = std::vector<struct node>;
|
||||||
|
|
||||||
bool HandleXMLTag(const wxChar *tag, const wxChar **attrs);
|
bool HandleXMLTag(const wxChar *tag, const wxChar **attrs) override;
|
||||||
void HandleXMLEndTag(const wxChar *tag);
|
void HandleXMLEndTag(const wxChar *tag) override;
|
||||||
XMLTagHandler *HandleXMLChild(const wxChar *tag);
|
XMLTagHandler *HandleXMLChild(const wxChar *tag) override;
|
||||||
|
|
||||||
bool HandleProject(XMLTagHandler *&handle);
|
bool HandleProject(XMLTagHandler *&handle);
|
||||||
bool HandleLabelTrack(XMLTagHandler *&handle);
|
bool HandleLabelTrack(XMLTagHandler *&handle);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user