mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-05 14:18:53 +02:00
Add Midi Prefs and Libraries Prefs help pages
This commit is contained in:
parent
e16f6f9221
commit
a532d99289
@ -239,6 +239,11 @@ bool LibraryPrefs::Apply()
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wxString LibraryPrefs::HelpPageName()
|
||||||
|
{
|
||||||
|
return "Libraries_Preferences";
|
||||||
|
}
|
||||||
|
|
||||||
PrefsPanel *LibraryPrefsFactory::Create(wxWindow *parent)
|
PrefsPanel *LibraryPrefsFactory::Create(wxWindow *parent)
|
||||||
{
|
{
|
||||||
wxASSERT(parent); // to justify safenew
|
wxASSERT(parent); // to justify safenew
|
||||||
|
@ -28,6 +28,7 @@ class LibraryPrefs final : public PrefsPanel
|
|||||||
LibraryPrefs(wxWindow * parent);
|
LibraryPrefs(wxWindow * parent);
|
||||||
~LibraryPrefs();
|
~LibraryPrefs();
|
||||||
bool Apply() override;
|
bool Apply() override;
|
||||||
|
wxString HelpPageName() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void Populate();
|
void Populate();
|
||||||
|
@ -286,6 +286,11 @@ bool MidiIOPrefs::Validate()
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wxString MidiIOPrefs::HelpPageName()
|
||||||
|
{
|
||||||
|
return "MIDI_Devices_Preferences";
|
||||||
|
}
|
||||||
|
|
||||||
PrefsPanel *MidiIOPrefsFactory::Create(wxWindow *parent)
|
PrefsPanel *MidiIOPrefsFactory::Create(wxWindow *parent)
|
||||||
{
|
{
|
||||||
wxASSERT(parent); // to justify safenew
|
wxASSERT(parent); // to justify safenew
|
||||||
|
@ -33,6 +33,7 @@ class MidiIOPrefs final : public PrefsPanel
|
|||||||
virtual ~MidiIOPrefs();
|
virtual ~MidiIOPrefs();
|
||||||
bool Apply() override;
|
bool Apply() override;
|
||||||
bool Validate() override;
|
bool Validate() override;
|
||||||
|
wxString HelpPageName() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void Populate();
|
void Populate();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user