Audacity 3.2.0
Macros | Enumerations
PluginRegistrationDialog.cpp File Reference
#include "PluginRegistrationDialog.h"
#include "EffectInterface.h"
#include "IncompatiblePluginsDialog.h"
#include "ModuleManager.h"
#include "PluginManager.h"
#include "PluginStartupRegistration.h"
#include "ShuttleGui.h"
#include "AudacityMessageBox.h"
#include "ProgressDialog.h"
#include <set>
#include <wx/setup.h>
#include <wx/app.h>
#include <wx/defs.h>
#include <wx/dir.h>
#include <wx/dynlib.h>
#include <wx/filename.h>
#include <wx/listctrl.h>
#include <wx/radiobut.h>
#include <wx/wfstream.h>
#include <wx/utils.h>
Include dependency graph for PluginRegistrationDialog.cpp:

Go to the source code of this file.

Macros

#define DISABLE_STATE_NEW
 

Enumerations

enum  { STATE_Enabled , STATE_Disabled , STATE_COUNT }
 
enum  {
  ID_ShowAll = 10000 , ID_ShowEnabled , ID_ShowDisabled , ID_List ,
  ID_ClearAll , ID_SelectAll , ID_Rescan , ID_Enable ,
  ID_Disable
}
 
enum  { COL_Name , COL_State , COL_Path , COL_COUNT }
 

Detailed Description


Audacity: A Digital Audio Editor

Paul Licameli split from PluginManager.cpp

Definition in file PluginRegistrationDialog.cpp.

Macro Definition Documentation

◆ DISABLE_STATE_NEW

#define DISABLE_STATE_NEW

Definition at line 33 of file PluginRegistrationDialog.cpp.

Enumeration Type Documentation

◆ anonymous enum

anonymous enum
Enumerator
STATE_Enabled 
STATE_Disabled 
STATE_COUNT 

Definition at line 344 of file PluginRegistrationDialog.cpp.

345{
348#ifndef DISABLE_STATE_NEW
349 STATE_New,
350#endif
351
353};

◆ anonymous enum

anonymous enum
Enumerator
ID_ShowAll 
ID_ShowEnabled 
ID_ShowDisabled 
ID_List 
ID_ClearAll 
ID_SelectAll 
ID_Rescan 
ID_Enable 
ID_Disable 

Definition at line 355 of file PluginRegistrationDialog.cpp.

356{
357 ID_ShowAll = 10000,
360#ifndef DISABLE_STATE_NEW
361 ID_ShowNew,
362#endif
363 ID_List,
366 ID_Rescan,
367 ID_Enable,
369};

◆ anonymous enum

anonymous enum
Enumerator
COL_Name 
COL_State 
COL_Path 
COL_COUNT 

Definition at line 371 of file PluginRegistrationDialog.cpp.

372{
373 COL_Name,
374 COL_State,
375 COL_Path,
376
378};