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

fewer #includes in TrackPanel.cpp

This commit is contained in:
Paul Licameli 2015-08-04 01:23:51 -04:00
parent 4be9897de1
commit 6d18e3681a

View File

@ -161,54 +161,31 @@ is time to refresh some aspect of the screen.
#include "Experimental.h" #include "Experimental.h"
#include "TrackPanel.h" #include "TrackPanel.h"
#include <math.h>
#include <stdlib.h>
//#define DEBUG_DRAW_TIMING 1 //#define DEBUG_DRAW_TIMING 1
// #define SPECTRAL_EDITING_ESC_KEY // #define SPECTRAL_EDITING_ESC_KEY
#include <wx/combobox.h>
#include <wx/dcclient.h>
#include <wx/dcbuffer.h>
#include <wx/dcmemory.h>
#include <wx/font.h>
#include <wx/fontenum.h> #include <wx/fontenum.h>
#include <wx/log.h>
#include <wx/menu.h>
#include <wx/msgdlg.h>
#include <wx/textdlg.h>
#include <wx/numdlg.h> #include <wx/numdlg.h>
#include <wx/choicdlg.h>
#include <wx/spinctrl.h> #include <wx/spinctrl.h>
#include <wx/listbox.h>
#include <wx/textctrl.h>
#include <wx/intl.h>
#include <wx/image.h>
#include "FreqWindow.h" // for SpectrumAnalyst #include "FreqWindow.h" // for SpectrumAnalyst
#include "AColor.h" #include "AColor.h"
#include "AllThemeResources.h" #include "AllThemeResources.h"
#include "AudacityApp.h"
#include "AudioIO.h" #include "AudioIO.h"
#include "Envelope.h" #include "Envelope.h"
#include "Experimental.h"
#include "float_cast.h" #include "float_cast.h"
#include "Internat.h"
#include "LabelTrack.h" #include "LabelTrack.h"
#include "MixerBoard.h" #include "MixerBoard.h"
#include "NoteTrack.h" #include "NoteTrack.h"
#include "NumberScale.h" #include "NumberScale.h"
#include "Prefs.h" #include "Prefs.h"
#include "Project.h"
#include "Snap.h" #include "Snap.h"
#include "ShuttleGui.h" #include "ShuttleGui.h"
#include "Theme.h"
#include "TimeTrack.h" #include "TimeTrack.h"
#include "TrackArtist.h" #include "TrackArtist.h"
#include "TrackPanelAx.h" #include "TrackPanelAx.h"
#include "ViewInfo.h"
#include "WaveTrack.h" #include "WaveTrack.h"
#include "commands/Keyboard.h" #include "commands/Keyboard.h"
@ -220,19 +197,12 @@ is time to refresh some aspect of the screen.
#include "prefs/WaveformPrefs.h" #include "prefs/WaveformPrefs.h"
#include "toolbars/ControlToolBar.h" #include "toolbars/ControlToolBar.h"
#include "toolbars/ToolManager.h"
#include "toolbars/ToolsToolBar.h" #include "toolbars/ToolsToolBar.h"
// #include "toolbars/TranscriptionToolBar.h"
#include "widgets/ASlider.h"
#include "widgets/Ruler.h"
#include "widgets/NumericTextCtrl.h"
#define ZOOMLIMIT 0.001f #define ZOOMLIMIT 0.001f
//This loads the appropriate set of cursors, depending on platform. //This loads the appropriate set of cursors, depending on platform.
#include "../images/Cursors.h" #include "../images/Cursors.h"
#include <iostream>
DEFINE_EVENT_TYPE(EVT_TRACK_PANEL_TIMER) DEFINE_EVENT_TYPE(EVT_TRACK_PANEL_TIMER)