File: vtkWebInteractionEvent.h

package info (click to toggle)
vtk9 9.5.2%2Bdfsg4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 206,616 kB
  • sloc: cpp: 2,340,827; ansic: 327,116; python: 114,881; yacc: 4,104; java: 3,977; sh: 3,032; xml: 2,771; perl: 2,189; lex: 1,787; javascript: 1,261; makefile: 189; objc: 153; tcl: 59
file content (96 lines) | stat: -rw-r--r-- 1,869 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
/**
 * @class   vtkWebInteractionEvent
 *
 *
 */

#ifndef vtkWebInteractionEvent_h
#define vtkWebInteractionEvent_h

#include "vtkObject.h"
#include "vtkWebCoreModule.h" // needed for exports

VTK_ABI_NAMESPACE_BEGIN
class VTKWEBCORE_EXPORT vtkWebInteractionEvent : public vtkObject
{
public:
  static vtkWebInteractionEvent* New();
  vtkTypeMacro(vtkWebInteractionEvent, vtkObject);
  void PrintSelf(ostream& os, vtkIndent indent) override;

  enum MouseButton
  {
    LEFT_BUTTON = 0x01,
    MIDDLE_BUTTON = 0x02,
    RIGHT_BUTTON = 0x04
  };

  enum ModifierKeys
  {
    SHIFT_KEY = 0x01,
    CTRL_KEY = 0x02,
    ALT_KEY = 0x04,
    META_KEY = 0x08
  };

  ///@{
  /**
   * Set/Get the mouse buttons state.
   */
  vtkSetMacro(Buttons, unsigned int);
  vtkGetMacro(Buttons, unsigned int);
  ///@}

  ///@{
  /**
   * Set/Get modifier state.
   */
  vtkSetMacro(Modifiers, unsigned int);
  vtkGetMacro(Modifiers, unsigned int);
  ///@}

  ///@{
  /**
   * Set/Get the chart code.
   */
  vtkSetMacro(KeyCode, char);
  vtkGetMacro(KeyCode, char);
  ///@}

  ///@{
  /**
   * Set/Get event position.
   */
  vtkSetMacro(X, double);
  vtkGetMacro(X, double);
  vtkSetMacro(Y, double);
  vtkGetMacro(Y, double);
  vtkSetMacro(Scroll, double);
  vtkGetMacro(Scroll, double);
  ///@}

  // Handle double click
  vtkSetMacro(RepeatCount, int);
  vtkGetMacro(RepeatCount, int);

protected:
  vtkWebInteractionEvent();
  ~vtkWebInteractionEvent() override;

  unsigned int Buttons;
  unsigned int Modifiers;
  char KeyCode;
  double X;
  double Y;
  double Scroll;
  int RepeatCount;

private:
  vtkWebInteractionEvent(const vtkWebInteractionEvent&) = delete;
  void operator=(const vtkWebInteractionEvent&) = delete;
};

VTK_ABI_NAMESPACE_END
#endif