mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-05 19:42:17 +02:00
65 lines
2.3 KiB
Java
65 lines
2.3 KiB
Java
/*
|
|
* Copyright (C) 2010-2014 Geometer Plus <contact@geometerplus.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301, USA.
|
|
*/
|
|
|
|
package org.geometerplus.android.fbreader.preferences.fileChooser;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
|
|
import org.geometerplus.zlibrary.core.options.ZLStringOption;
|
|
import org.geometerplus.zlibrary.core.options.ZLStringListOption;
|
|
import org.geometerplus.zlibrary.core.resources.ZLResource;
|
|
|
|
import org.geometerplus.android.util.FileChooserUtil;
|
|
|
|
public class FileChooserCollection {
|
|
private final Context myContext;
|
|
private final List<FileChooserPreference> myPreferences = new ArrayList<FileChooserPreference>();
|
|
|
|
public FileChooserCollection(Context context) {
|
|
myContext = context;
|
|
}
|
|
|
|
public FileChooserPreference createPreference(ZLResource rootResource, String resourceKey, ZLStringListOption option, Runnable onValueSetAction) {
|
|
final FileChooserPreference preference = new FileChooserStringListPreference(
|
|
myContext, rootResource, resourceKey, option, myPreferences.size(), onValueSetAction
|
|
);
|
|
myPreferences.add(preference);
|
|
return preference;
|
|
}
|
|
|
|
public FileChooserPreference createPreference(ZLResource rootResource, String resourceKey, ZLStringOption option, Runnable onValueSetAction) {
|
|
final FileChooserPreference preference = new FileChooserStringPreference(
|
|
myContext, rootResource, resourceKey, option, myPreferences.size(), onValueSetAction
|
|
);
|
|
myPreferences.add(preference);
|
|
return preference;
|
|
}
|
|
|
|
public void update(int index, Intent data) {
|
|
try {
|
|
myPreferences.get(index).setValue(FileChooserUtil.pathFromData(data));
|
|
} catch (Exception e) {
|
|
// ignore
|
|
}
|
|
}
|
|
}
|