1 /***********************************************************************/
2 /* Open Visualization Data Explorer                                    */
3 /* (C) Copyright IBM Corp. 1989,1999                                   */
4 /* ALL RIGHTS RESERVED                                                 */
5 /* This code licensed under the                                        */
6 /*    "IBM PUBLIC LICENSE - Open Visualization Data Explorer"          */
7 /***********************************************************************/
8 
9 #include <dxconfig.h>
10 
11 
12 #ifndef _enums_h
13 #define _enums_h
14 
15 //
16 // The following are passed into the xxxPrintNode routines, specifying
17 // the type of printing to be done.  These are used by both Network
18 // and Node.
19 //
20      enum PrintType {
21                 PrintExec = 0,     // Destination: exec
22                 PrintFile,         // Destination: file
23                 PrintCut,          // Destination: cut/paste
24                 PrintCPBuffer      // Destination: cut/paste
25      };
26 
27 //
28 // For ImageWindow and ImageNode
29 //
30 enum DirectInteractionMode
31 {
32     NONE,
33     CAMERA,
34     CURSORS,
35     PICK,
36     NAVIGATE,
37     PANZOOM,
38     ROAM,
39     ROTATE,
40     ZOOM
41 };
42 
43 #endif
44