11 #include "juced_DirectShowComponent.h"
13 int juced_DirectShowComponent::_numObjects = 0;
15 juced_DirectShowComponent::juced_DirectShowComponent() : DirectShowComponent()
17 setName(
"DirectShow");
18 setProperty(Attributes::objectType, Modules::Label.toString());
19 setProperty(Attributes::height, getHeight());
20 setProperty(Attributes::width, getWidth());
21 setProperty(Attributes::name, getName());
23 setProperty(Attributes::varName, getName() + String(_numObjects));
24 setProperty(Attributes::className,
"DirectShowComponent");
25 setProperty(Attributes::toolName,
"juced_DirectShowComponent");
26 setProperty(Attributes::declareExtended,
false);
27 setComponentID(Uuid().toString());
28 setProperty(Attributes::ID, getComponentID());
29 setProperty(Attributes::movie, String::empty);
32 void juced_DirectShowComponent::mouseUp (
const MouseEvent& event) {}
33 void juced_DirectShowComponent::mouseDrag (
const MouseEvent& event) {}
34 void juced_DirectShowComponent::mouseDoubleClick (
const MouseEvent& event) {}
35 void juced_DirectShowComponent::mouseMove (
const MouseEvent& event) {}
36 void juced_DirectShowComponent::mouseDown (
const MouseEvent& event) {}
37 void juced_DirectShowComponent::mouseEnter (
const MouseEvent& event) {}
38 void juced_DirectShowComponent::mouseExit (
const MouseEvent& event) {}
39 void juced_DirectShowComponent::mouseWheelMove (
const MouseEvent &event,
const MouseWheelDetails &wheel) {}