mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-03 17:19:43 +02:00
We now do not need to worry about the preference dialogs getting too big for small screens.
133 lines
3.5 KiB
C++
133 lines
3.5 KiB
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
TracksBehaviorsPrefs.cpp
|
|
|
|
Steve Daulton
|
|
|
|
|
|
*******************************************************************//**
|
|
|
|
\class TracksBehaviorsPrefs
|
|
\brief A PrefsPanel for Tracks Behaviors settings.
|
|
|
|
*//*******************************************************************/
|
|
|
|
#include "../Audacity.h"
|
|
#include "TracksBehaviorsPrefs.h"
|
|
|
|
#include "../Prefs.h"
|
|
#include "../ShuttleGui.h"
|
|
#include "../Experimental.h"
|
|
#include "../Internat.h"
|
|
|
|
TracksBehaviorsPrefs::TracksBehaviorsPrefs(wxWindow * parent)
|
|
/* i18n-hint: two nouns */
|
|
: PrefsPanel(parent, _("Tracks Behaviors"))
|
|
{
|
|
Populate();
|
|
}
|
|
|
|
TracksBehaviorsPrefs::~TracksBehaviorsPrefs()
|
|
{
|
|
}
|
|
|
|
const wxChar *TracksBehaviorsPrefs::ScrollingPreferenceKey()
|
|
{
|
|
static auto string = wxT("/GUI/ScrollBeyondZero");
|
|
return string;
|
|
}
|
|
|
|
void TracksBehaviorsPrefs::Populate()
|
|
{
|
|
mSoloCodes.Add(wxT("Simple"));
|
|
mSoloCodes.Add(wxT("Multi"));
|
|
mSoloCodes.Add(wxT("None"));
|
|
|
|
mSoloChoices.Add(_("Simple"));
|
|
mSoloChoices.Add(_("Multi-track"));
|
|
mSoloChoices.Add(_("None"));
|
|
|
|
//------------------------- Main section --------------------
|
|
// Now construct the GUI itself.
|
|
ShuttleGui S(this, eIsCreatingFromPrefs);
|
|
PopulateOrExchange(S);
|
|
// ----------------------- End of main section --------------
|
|
}
|
|
|
|
void TracksBehaviorsPrefs::PopulateOrExchange(ShuttleGui & S)
|
|
{
|
|
S.SetBorder(2);
|
|
S.StartScroller();
|
|
|
|
S.StartStatic(_("Behaviors"));
|
|
{
|
|
S.TieCheckBox(_("A&uto-select, if selection required"),
|
|
wxT("/GUI/SelectAllOnNone"),
|
|
false);
|
|
/* i18n-hint: Cut-lines are lines that can expand to show the cut audio.*/
|
|
S.TieCheckBox(_("Enable cut &lines"),
|
|
wxT("/GUI/EnableCutLines"),
|
|
false);
|
|
S.TieCheckBox(_("Enable &dragging selection edges"),
|
|
wxT("/GUI/AdjustSelectionEdges"),
|
|
true);
|
|
S.TieCheckBox(_("Editing a clip can &move other clips"),
|
|
wxT("/GUI/EditClipCanMove"),
|
|
true);
|
|
S.TieCheckBox(_("\"Move track focus\" c&ycles repeatedly through tracks"),
|
|
wxT("/GUI/CircularTrackNavigation"),
|
|
false);
|
|
S.TieCheckBox(_("&Type to create a label"),
|
|
wxT("/GUI/TypeToCreateLabel"),
|
|
true);
|
|
#ifdef EXPERIMENTAL_SCROLLING_LIMITS
|
|
S.TieCheckBox(_("Enable scrolling left of &zero"),
|
|
ScrollingPreferenceKey(),
|
|
ScrollingPreferenceDefault());
|
|
#endif
|
|
S.TieCheckBox(_("Advanced &vertical zooming"),
|
|
wxT("/GUI/VerticalZooming"),
|
|
false);
|
|
|
|
S.AddSpace(10);
|
|
|
|
S.StartMultiColumn(2);
|
|
{
|
|
S.TieChoice(_("Solo &Button:"),
|
|
wxT("/GUI/Solo"),
|
|
wxT("Standard"),
|
|
mSoloChoices,
|
|
mSoloCodes);
|
|
S.SetSizeHints(mSoloChoices);
|
|
}
|
|
S.EndMultiColumn();
|
|
}
|
|
S.EndStatic();
|
|
S.EndScroller();
|
|
}
|
|
|
|
bool TracksBehaviorsPrefs::Commit()
|
|
{
|
|
ShuttleGui S(this, eIsSavingToPrefs);
|
|
PopulateOrExchange(S);
|
|
|
|
return true;
|
|
}
|
|
|
|
wxString TracksBehaviorsPrefs::HelpPageName()
|
|
{
|
|
return "Tracks_Behaviors_Preferences";
|
|
}
|
|
|
|
TracksBehaviorsPrefsFactory::TracksBehaviorsPrefsFactory()
|
|
{
|
|
}
|
|
|
|
PrefsPanel *TracksBehaviorsPrefsFactory::Create(wxWindow *parent)
|
|
{
|
|
wxASSERT(parent); // to justify safenew
|
|
return safenew TracksBehaviorsPrefs(parent);
|
|
}
|