1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-16 08:37:42 +02:00

Turn on EXPERIMENTAL_LINKING apropos bug 177.

Also, some clean-up and moving related items closer together.
This commit is contained in:
v.audacity 2010-07-24 23:43:53 +00:00
parent 8c51e56248
commit 908b0b2d35

@ -7,9 +7,9 @@
Dominic Mazzoni Dominic Mazzoni
James Crook James Crook
Used for includes and #defines for experimental features. Used for #includes and #defines for experimental features.
When the features become mainstream the include files will When the features become mainstream the #include files will
move out of here and into the files which need them. The move out of here and into the files which need them. The
#defines will then be retired. #defines will then be retired.
@ -22,23 +22,22 @@
Add #defines in here for the new features, and make your code Add #defines in here for the new features, and make your code
conditional on those #defines. conditional on those #defines.
All the #defines are positive, i.e., when defined,
they enable the feature.
**********************************************************************/ **********************************************************************/
#ifndef __EXPERIMENTAL__ #ifndef __EXPERIMENTAL__
#define __EXPERIMENTAL__ #define __EXPERIMENTAL__
//uncomment the next line to enable the feature to link audio tracks to a label track // feature to link audio tracks to a label track
//#define EXPERIMENTAL_LINKING #define EXPERIMENTAL_LINKING
//Uncomment the next #define to enable experimental features. // experimental theming
#define EXPERIMENTAL_FEATURES
// Comment out the next two lines if you want to disable 'experimental theming'
// Work in progress, June-2008. // Work in progress, June-2008.
//#define EXPERIMENTAL_THEMING //#define EXPERIMENTAL_THEMING
#if IS_BETA #if IS_BETA
//August 2009 - Theming not locked down enough enough for a stable release. //August 2009 - Theming not locked down enough enough for a stable release.
// we're doing betas which are leading up to an RC.
//#define EXPERIMENTAL_THEME_PREFS //#define EXPERIMENTAL_THEME_PREFS
#endif #endif
@ -102,6 +101,8 @@
//#define EXPERIMENTAL_SCOREALIGN //#define EXPERIMENTAL_SCOREALIGN
#endif #endif
// experimental features
#define EXPERIMENTAL_FEATURES
#ifdef EXPERIMENTAL_FEATURES #ifdef EXPERIMENTAL_FEATURES
// The first experimental feature is a notebook that adds // The first experimental feature is a notebook that adds
// a tabbed divider to the project. // a tabbed divider to the project.