JUCE Designer
 All Classes Functions Variables
juced_Component.h
1 /*
2  ==============================================================================
3 
4  juced_Component.h
5  Created: 15 May 2013 4:26:01pm
6  Author: admin
7 
8  ==============================================================================
9 */
10 
11 #ifndef __JUCED_COMPONENT_H_6B6D7789__
12 #define __JUCED_COMPONENT_H_6B6D7789__
13 
14 #include "../Designer/Globals.h"
15 
16 class juced_Component : public Component,
17  public DynamicObject
18 {
19 public:
20 
21  //ValueTree *linkedValueTree;
22 
24  ~juced_Component();
25 
26  //void paint(Graphics&);
27  void resized();
28 
29  void mouseUp (const MouseEvent& event);
30  void mouseDrag (const MouseEvent& event);
31  void mouseDoubleClick (const MouseEvent& event);
32  void mouseMove (const MouseEvent& event);
33  void mouseDown (const MouseEvent& event);
34  void mouseEnter (const MouseEvent& event);
35  void mouseExit (const MouseEvent& event);
36  void mouseWheelMove (const MouseEvent &event, const MouseWheelDetails &wheel);
37 
38 private:
39  static int _numObjects;
40 };
41 
42 
43 #endif // __JUCED_MAINCOMPONENT_H_1B08AA79__
44