Audacity 3.2.0
Classes | Macros | Functions
DirectoriesPrefs.h File Reference
#include "PrefsPanel.h"
Include dependency graph for DirectoriesPrefs.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  DirectoriesPrefs
 A PrefsPanel used to select directories. More...
 

Macros

#define DIRECTORIES_PREFS_PLUGIN_SYMBOL   ComponentInterfaceSymbol{ XO("Directories") }
 

Functions

PrefsPanel::Factory DirectoriesPrefsFactory ()
 

Macro Definition Documentation

◆ DIRECTORIES_PREFS_PLUGIN_SYMBOL

#define DIRECTORIES_PREFS_PLUGIN_SYMBOL   ComponentInterfaceSymbol{ XO("Directories") }

Definition at line 22 of file DirectoriesPrefs.h.

Function Documentation

◆ DirectoriesPrefsFactory()

PrefsPanel::Factory DirectoriesPrefsFactory ( )

A PrefsPanel::Factory that creates one DirectoriesPrefs panel. This one is used not only in the Preferences command.

Definition at line 516 of file DirectoriesPrefs.cpp.

517{
518 return [](wxWindow *parent, wxWindowID winid, AudacityProject *)
519 {
520 wxASSERT(parent); // to justify safenew
521 return safenew DirectoriesPrefs(parent, winid);
522 };
523}
#define safenew
Definition: MemoryX.h:9
The top-level handle to an Audacity project. It serves as a source of events that other objects can b...
Definition: Project.h:90
A PrefsPanel used to select directories.

References safenew.

Referenced by AudacityApp::InitTempDir().

Here is the caller graph for this function: