Lines Matching refs:fMixerControl
149 MixerControl* fMixerControl; member in MediaReplicant
183 fMixerControl(NULL), in MediaReplicant()
194 fMixerControl(NULL), in MediaReplicant()
297 if (fMixerControl != NULL) { in MouseDown()
298 fMixerControl->SetMute(!fMuted); in MouseDown()
299 fMuted = fMixerControl->Mute(); in MouseDown()
377 && deltaY != 0.0 && fMixerControl != NULL) { in MessageReceived()
378 fMixerControl->ChangeVolumeBy(deltaY < 0 ? 6 : -6); in MessageReceived()
391 if (fMixerControl != NULL && !fMixerControl->Connected()) in MessageReceived()
394 bool setMuted = fMixerControl->Mute(); in MessageReceived()
605 if (fMixerControl == NULL) in _DisconnectMixer()
608 if (fMixerControl->MuteNode() != media_node::null) { in _DisconnectMixer()
609 roster->StopWatching(this, fMixerControl->MuteNode(), in _DisconnectMixer()
613 delete fMixerControl; in _DisconnectMixer()
614 fMixerControl = NULL; in _DisconnectMixer()
631 fMixerControl = new MixerControl(fVolumeWhich); in _ConnectMixer()
635 fMixerControl->Connect(fVolumeWhich, &volume, &errorString); in _ConnectMixer()
639 delete fMixerControl; in _ConnectMixer()
640 fMixerControl = NULL; in _ConnectMixer()
644 if (fMixerControl->MuteNode() != media_node::null) { in _ConnectMixer()
645 roster->StartWatching(this, fMixerControl->MuteNode(), in _ConnectMixer()
647 fMuted = fMixerControl->Mute(); in _ConnectMixer()