00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef __DD_Data__
00023 #define __DD_Data__
00024
00025 #include "DD_API.h"
00026
00027 class DD_API DD_Data
00028 {
00029 public:
00030
00031
00032
00033 static bool isText(const char *label);
00034 static bool isChannelPath(const char *label);
00035 static bool isParmPath(const char *label);
00036 static bool isOpPath(const char *label);
00037 static bool isItemPath(const char *label);
00038 static bool isTrackPath(const char *label);
00039 static bool isPersistentHandlePath(const char *label);
00040 static bool isChannelGroupList(const char *label);
00041 static bool isSITreeNodes(const char *label);
00042 static bool isFlagPath(const char *label);
00043 static bool isTakeName(const char *label);
00044 static bool isGalleryEntry(const char *label);
00045 static bool isShelfTool(const char *label);
00046 static bool isShelfToolbar(const char *label);
00047 static bool isDesktopNode(const char *label);
00048
00049
00050 static bool isMatch(const char *label, const char *test);
00051 };
00052
00053 #endif
00054