Lines Matching refs:aTrackInfo
766 HIThemeTrackDrawInfo aTrackInfo; in drawNativeControl() local
767 aTrackInfo.version = 0; in drawNativeControl()
768 …aTrackInfo.kind = (rc.size.height > 10) ? kThemeProgressBarLarge : kThemeProgressB… in drawNativeControl()
769 aTrackInfo.bounds = rc; in drawNativeControl()
770 aTrackInfo.min = 0; in drawNativeControl()
771 aTrackInfo.max = static_cast<SInt32>(rc.size.width); in drawNativeControl()
772 aTrackInfo.value = nProgressWidth; in drawNativeControl()
773 aTrackInfo.reserved = 0; in drawNativeControl()
774 aTrackInfo.bounds.origin.y -= 2; // FIXME: magic for shadow in drawNativeControl()
775 aTrackInfo.bounds.size.width -= 2; // FIXME: magic for shadow in drawNativeControl()
776 aTrackInfo.attributes = kThemeTrackHorizontal; in drawNativeControl()
778 aTrackInfo.attributes |= kThemeTrackRightToLeft; in drawNativeControl()
779 aTrackInfo.enableState = getTrackState( nState ); in drawNativeControl()
782 aTrackInfo.enableState = kThemeTrackActive; in drawNativeControl()
783 aTrackInfo.filler1 = 0; in drawNativeControl()
784 … aTrackInfo.trackInfo.progress.phase = static_cast<UInt8>(CFAbsoluteTimeGetCurrent()*10.0); in drawNativeControl()
786 HIThemeDrawTrack( &aTrackInfo, NULL, mrContext, kHIThemeOrientationNormal ); in drawNativeControl()