aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/util/ProgressFixedScaler.java
blob: 4bb4ca5de8580d40d1d5431a2f88c72ef9d8bcd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package org.sufficientlysecure.keychain.util;

import org.sufficientlysecure.keychain.pgp.Progressable;

/** This is a simple variant of ProgressScaler which shows a fixed progress message, ignoring
 * the provided ones.
 */
public class ProgressFixedScaler extends ProgressScaler {

    final int mResId;

    public ProgressFixedScaler(Progressable wrapped, int from, int to, int max, int resId) {
        super(wrapped, from, to, max);
        mResId = resId;
    }

    public void setProgress(int resourceId, int progress, int max) {
        if (mWrapped != null) {
            mWrapped.setProgress(mResId, mFrom + progress * (mTo - mFrom) / max, mMax);
        }
    }

    public void setProgress(String message, int progress, int max) {
        if (mWrapped != null) {
            mWrapped.setProgress(mResId, mFrom + progress * (mTo - mFrom) / max, mMax);
        }
    }

}