FRACircleProgressView.h revision 094b0368ec64814f07f74f090192a2fe81c8d0b7
3666N/A/*
3666N/A * The contents of this file are subject to the terms of the Common Development and
3666N/A * Distribution License (the License). You may not use this file except in compliance with the
3666N/A * License.
3666N/A *
3666N/A * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
3666N/A * specific language governing permission and limitations under the License.
3666N/A *
3666N/A * When distributing Covered Software, include this CDDL Header Notice in each file and include
3666N/A * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
3666N/A * Header, with the fields enclosed by brackets [] replaced by your own identifying
3666N/A * information: "Portions copyright [year] [name of copyright owner]".
3666N/A *
3666N/A * Copyright 2016 ForgeRock AS.
3666N/A *
3666N/A * Portions Copyright 2013 Nathaniel McCallum, Red Hat
3666N/A */
3666N/A
3666N/A/*!
3666N/A * MVC View for elapsed time as a doughnut or filled circle.
3666N/A */
3666N/A@interface FRACircleProgressView : UIView
3666N/A
3674N/A/*!
3666N/A * Color used to indicate elapsed time.
3674N/A */
3666N/A@property (nonatomic) UIColor* progressColor;
3674N/A/*!
3666N/A * Normalized value for progress.
3674N/A */
3674N/A@property (nonatomic) float progress;
3674N/A
3674N/A@end
3674N/A