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