JUCE Designer
 All Classes Functions Variables
juced_Viewport.h
1 /*
2  ==============================================================================
3 
4  juced_Viewport.h
5  Created: 23 May 2013 1:31:16am
6  Author: admin
7 
8  ==============================================================================
9 */
10 
11 #ifndef __JUCED_VIEWPORT_H_C8C6C7F3__
12 #define __JUCED_VIEWPORT_H_C8C6C7F3__
13 
14 #include "../Designer/Globals.h"
15 
16 class juced_Viewport : public Viewport,
17  public DynamicObject
18 {
19 public:
20 
22  void juced_Viewport::paint (Graphics& g);
23 
24  void mouseUp (const MouseEvent& event);
25  void mouseDrag (const MouseEvent& event);
26  void mouseDoubleClick (const MouseEvent& event);
27  void mouseMove (const MouseEvent& event);
28  void mouseDown (const MouseEvent& event);
29  void mouseEnter (const MouseEvent& event);
30  void mouseExit (const MouseEvent& event);
31  void mouseWheelMove (const MouseEvent &event, const MouseWheelDetails &wheel);
32 
33 private:
34  static int _numObjects;
35 };
36 
37 
38 #endif // __JUCED_VIEWPORT_H_C8C6C7F3__