- //Options-
- //kMovieControlOptionXXX
- //HideController - hide the movie controller
- //LocateTopLeft - movie is pinned to top left rather than centered in the control
- //EnableEditing - Allows programmatic editing and dragn'drop
- //HandleEditingHI- Installs event stuff for edit menu - forces EnableEditing also
- //SetKeysEnabled - Allows keyboard input
- //ManuallyIdled - app handles movie idling rather than internal timer event loop
- ::CreateMovieControl(
- (WindowRef)
- m_ctrl->MacGetTopLevelWindowRef(), //parent
- &bounds, //control bounds
- m_movie, //movie handle
- kMovieControlOptionHideController
- | kMovieControlOptionLocateTopLeft
- | kMovieControlOptionSetKeysEnabled
- // | kMovieControlOptionManuallyIdled
- , //flags
- m_ctrl->m_peer->GetControlRefAddr() );
-
- ::EmbedControl(m_ctrl->m_peer->GetControlRef(),
- (ControlRef)m_ctrl->GetParent()->GetHandle());
-
- //
- // Setup MovieController for the new movie
- //
+ // Options:
+ // kMovieControlOptionXXX
+ // HideController - hide the movie controller
+ // LocateTopLeft - movie is pinned to top left rather than centered in the control
+ // EnableEditing - Allows programmatic editing and dragn'drop
+ // HandleEditingHI- Installs event stuff for edit menu - forces EnableEditing also
+ // SetKeysEnabled - Allows keyboard input
+ // ManuallyIdled - app handles movie idling rather than internal timer event loop
+ ::CreateMovieControl(
+ (WindowRef)
+ m_ctrl->MacGetTopLevelWindowRef(), //parent
+ &bounds, //control bounds
+ m_movie, //movie handle
+ kMovieControlOptionHideController
+ | kMovieControlOptionLocateTopLeft
+ | kMovieControlOptionSetKeysEnabled
+ // | kMovieControlOptionManuallyIdled
+ , // flags
+ m_ctrl->m_peer->GetControlRefAddr() );
+
+ ::EmbedControl(
+ m_ctrl->m_peer->GetControlRef(),
+ (ControlRef)m_ctrl->GetParent()->GetHandle());
+
+ // set up MovieController for the new movie