1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 17:30:17 +01:00

Locate and position the current Audacity source code, and clear a variety of old junk out of the way into junk-branches

This commit is contained in:
ra
2010-01-23 19:44:49 +00:00
commit e74978ba77
1011 changed files with 781704 additions and 0 deletions

68
src/MacroMagic.h Normal file
View File

@@ -0,0 +1,68 @@
/**********************************************************************
Audacity: A Digital Audio Editor
MacroMagic.h
James Crook
Audacity is free software.
This file is licensed under the wxWidgets license, see License.txt
********************************************************************//*!
\file MacroMagic.h
This file allows the same macros to do multiple duty by undefining
and redefining the macros.
For example DEFINE_IMAGE will generate:
- extern int name;
- int name = -1;
- RegisterImage( name, initiialiser, textual_name);
On three different passes. We control which by defining one of
THEME_INITS or THEME_DECLARATIONS or neither of these.
*//*******************************************************************/
#include "Theme.h"
// undefine the macros.
#undef DEFINE_IMAGE
#undef DEFINE_COLOUR
#undef DEFINE_FONT
#undef SET_THEME_FLAGS
#define THEME_EXTERNS
#ifdef THEME_INITS
#define DEFINE_IMAGE( name, initialiser, textual_name ) \
theTheme.RegisterImage( name, initialiser, textual_name );
#define DEFINE_COLOUR( name, initialiser, textual_name )\
theTheme.RegisterColour( name, initialiser, textual_name );
#define DEFINE_FONT( name, initialiser, textual_name ) \
theTheme.RegisterFont( name, initialiser, textual_name );
#define SET_THEME_FLAGS( flags ) theTheme.SetFlags( flags );
#undef THEME_DECLARATIONS
#undef THEME_EXTERNS
#endif
#ifdef THEME_DECLARATIONS
#define DEFINE_IMAGE( name, initialiser, textual_name ) AUDACITY_DLL_API teBmps name=-1;
#define DEFINE_COLOUR( name, initialiser, textual_name ) AUDACITY_DLL_API int name=-1;
#define DEFINE_FONT( name, initialiser, textual_name ) AUDACITY_DLL_API int name=-1;
#define SET_THEME_FLAGS( flags )
#undef THEME_INITS
#undef THEME_EXTERNS
#endif
#ifdef THEME_EXTERNS
#define DEFINE_IMAGE( name, initialiser, textual_name ) extern AUDACITY_DLL_API teBmps name;
#define DEFINE_COLOUR( name, initialiser, textual_name ) extern AUDACITY_DLL_API int name;
#define DEFINE_FONT( name, initialiser, textual_name ) extern AUDACITY_DLL_API int name;
#define SET_THEME_FLAGS( flags )
#endif