aboutsummaryrefslogtreecommitdiff
path: root/src/client/documents/DocumentTypes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/documents/DocumentTypes.ts')
-rw-r--r--src/client/documents/DocumentTypes.ts29
1 files changed, 12 insertions, 17 deletions
diff --git a/src/client/documents/DocumentTypes.ts b/src/client/documents/DocumentTypes.ts
index 5bd5590b7..19e469637 100644
--- a/src/client/documents/DocumentTypes.ts
+++ b/src/client/documents/DocumentTypes.ts
@@ -14,17 +14,15 @@ export enum DocumentType {
SCREENSHOT = "screenshot",
FONTICON = "fonticonbox",
FILTER = "filter",
- SEARCH = "search",
- LABEL = "label",
- BUTTON = "button",
- WEBCAM = "webcam",
- HTMLANCHOR = "htmlanchor",
- DATE = "date",
- SCRIPTING = "script",
- EQUATION = "equation",
- FUNCPLOT = "funcplot",
- MAP = "map",
-
+ SEARCH = "search", // search query
+ LABEL = "label", // simple text label
+ BUTTON = "button", // onClick button
+ WEBCAM = "webcam", // webcam
+ MARKER = "marker", // generic marker document not intended to be viewed independently of its context (e.g., for text selections in PDF/Web/RTF)
+ DATE = "date", // calendar view of a date
+ SCRIPTING = "script", // script editor
+ EQUATION = "equation", // equation editor
+ FUNCPLOT = "funcplot", // function plotter
// special purpose wrappers that either take no data or are compositions of lower level types
LINK = "link",
@@ -39,10 +37,7 @@ export enum DocumentType {
COMPARISON = "comparison",
GROUP = "group",
- LINKDB = "linkdb",
- SCRIPTDB = "scriptdb",
- GROUPDB = "groupdb",
-
- TEXTANCHOR = "textanchor" // selection of text in a text box
- ,
+ LINKDB = "linkdb", // database of links ??? why do we have this
+ SCRIPTDB = "scriptdb", // database of scripts
+ GROUPDB = "groupdb", // database of groups
} \ No newline at end of file