aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/cyanogenmod/wallpapers/photophase/preferences/SeekBarProgressPreference.java
blob: 3f1de6fdf2edc9d5907b13809bb260d1be36cb16 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
 * Copyright (C) 2013 The Android Open Source Project
 * Copyright (C) 2014 The CyanogenMod Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.cyanogenmod.wallpapers.photophase.preferences;

import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.widget.SeekBar;
import android.widget.TextView;

import org.cyanogenmod.wallpapers.photophase.R;

/**
 * A preference with a seekbar widget that display the progress
 */
public class SeekBarProgressPreference extends SeekBarPreference {

    /**
     * Interface to intercept the progress value to display on screen
     */
    public interface OnDisplayProgress {
        /**
         * Method invoked when a progress value is going to display on screen
         *
         * @param progress The real progress
         * @return The progress to display
         */
        String onDisplayProgress(int progress);
    }

    private String mFormat;
    private OnDisplayProgress mOnDisplayProgress;

    TextView mTextView;

    /**
     * Constructor of <code>SeekBarProgressPreference</code>
     *
     * @param context The current context
     * @param attrs The attributes of the view
     * @param defStyle The resource with the style
     */
    public SeekBarProgressPreference(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        init();
    }

    /**
     * Constructor of <code>SeekBarProgressPreference</code>
     *
     * @param context The current context
     * @param attrs The attributes of the view
     */
    public SeekBarProgressPreference(Context context, AttributeSet attrs) {
        super(context, attrs);
        init();
    }

    /**
     * Constructor of <code>SeekBarProgressPreference</code>
     *
     * @param context The current context
     */
    public SeekBarProgressPreference(Context context) {
        super(context);
        init();
    }

    /**
     * Method that initializes the preference
     */
    void init() {
        mFormat = "%s";
        mOnDisplayProgress = null;
        setWidgetLayoutResource(R.layout.preference_widget_seekbar_progress);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    protected void onBindView(View view) {
        super.onBindView(view);
        mTextView = (TextView) view.findViewById(R.id.text);
        setText(getProgress());
    }

    /**
     * Method that set the actual progress
     *
     * @param progress The actual progress
     * @param notifyChanged Whether notify if the progress was changed
     */
    @Override
    protected void setProgress(int progress, boolean notifyChanged) {
        super.setProgress(progress, notifyChanged);
        setText(progress);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
        super.onProgressChanged(seekBar, progress, fromUser);
        if (fromUser) {
            setText(progress);
            syncProgress(seekBar);
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void onStopTrackingTouch(SeekBar seekBar) {
        super.onStopTrackingTouch(seekBar);
        setText(getProgress());
    }

    /**
     * Method that displays the progress value
     */
    private void setText(int progress) {
        if (mTextView != null) {
            String value = mOnDisplayProgress != null
                    ? mOnDisplayProgress.onDisplayProgress(progress) : String.valueOf(progress);
            mTextView.setText(String.format(mFormat, value));
        }
    }

    /**
     * Method that sets the callback to intercept the progress value before it will be
     * displayed on screen.
     *
     * @param onDisplayProgress The callback
     */
    public void setOnDisplayProgress(OnDisplayProgress onDisplayProgress) {
        this.mOnDisplayProgress = onDisplayProgress;
    }

    /**
     * Method that set the format of the progress
     *
     * @param format The format of the string progress
     */
    public void setFormat(String format) {
        mFormat = format;
    }
}