Audacity 3.2.0
Printing.h
Go to the documentation of this file.
1/**********************************************************************
2
3 Audacity: A Digital Audio Editor
4
5 Printing.h
6
7 Dominic Mazzoni
8
9**********************************************************************/
10
11#ifndef __AUDACITY_PRINTING__
12#define __AUDACITY_PRINTING__
13
14#include <wx/defs.h>
15
16class wxString;
17class wxWindow;
18class TrackList;
19class TrackPanel;
20
21void HandlePageSetup(wxWindow *parent);
22void HandlePrint(
23 wxWindow *parent, const wxString &name, TrackList *tracks,
24 TrackPanel &panel);
25
26#endif // __AUDACITY_PRINTING__
27
const TranslatableString name
Definition: Distortion.cpp:75
void HandlePrint(wxWindow *parent, const wxString &name, TrackList *tracks, TrackPanel &panel)
Definition: Printing.cpp:171
void HandlePageSetup(wxWindow *parent)
Definition: Printing.cpp:161
A flat linked list of tracks supporting Add, Remove, Clear, and Contains, serialization of the list o...
Definition: Track.h:1338
The TrackPanel class coordinates updates and operations on the main part of the screen which contains...
Definition: TrackPanel.h:65