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