summaryrefslogtreecommitdiffstats
path: root/android/source/src/java/org/libreoffice/SettingsListenerModel.java
blob: 1b5a909e1e659de382591b713415762da0ddb1e8 (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
/*
 *
 *  * This file is part of the LibreOffice project.
 *  * This Source Code Form is subject to the terms of the Mozilla Public
 *  * License, v. 2.0. If a copy of the MPL was not distributed with this
 *  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 */
package org.libreoffice;

import android.content.SharedPreferences;

public class SettingsListenerModel {

    public interface OnSettingsPreferenceChangedListener {
        void settingsPreferenceChanged(SharedPreferences sharedPreferences, String key);
    }

    private static SettingsListenerModel mInstance;
    private OnSettingsPreferenceChangedListener mListener;
    private SharedPreferences sharedPreferences;
    private String key;

    private SettingsListenerModel() {}

    public static SettingsListenerModel getInstance() {
        if(mInstance == null) {
            mInstance = new SettingsListenerModel();
        }
        return mInstance;
    }

    public void setListener(OnSettingsPreferenceChangedListener listener) {
        mListener = listener;
    }

    public void changePreferenceState(SharedPreferences sharedPreferences, String key) {
        if(mListener != null) {
            this.sharedPreferences = sharedPreferences;
            this.key = key;
            notifyPreferenceChange(sharedPreferences, key);
        }
    }

    public SharedPreferences getSharedPreferences() {
        return sharedPreferences;
    }

    public String getKey(){
        return key;
    }

    private void notifyPreferenceChange(SharedPreferences preferences, String key) {
        mListener.settingsPreferenceChanged(preferences, key);
    }
}