mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
69 lines
2.5 KiB
Java
69 lines
2.5 KiB
Java
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
* 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.mozilla.gecko.home;
|
|
|
|
import org.mozilla.gecko.R;
|
|
import org.mozilla.gecko.home.HomeConfig.ItemHandler;
|
|
import org.mozilla.gecko.home.HomeConfig.ViewConfig;
|
|
import org.mozilla.gecko.home.HomePager.OnUrlOpenListener;
|
|
import org.mozilla.gecko.home.PanelLayout.DatasetBacked;
|
|
import org.mozilla.gecko.home.PanelLayout.PanelView;
|
|
import org.mozilla.gecko.db.BrowserContract.HomeItems;
|
|
|
|
import android.content.Context;
|
|
import android.database.Cursor;
|
|
import android.support.v4.widget.CursorAdapter;
|
|
import android.util.Log;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
import android.widget.AdapterView;
|
|
|
|
import java.util.EnumSet;
|
|
|
|
public class PanelListView extends HomeListView
|
|
implements DatasetBacked, PanelView {
|
|
|
|
private static final String LOGTAG = "GeckoPanelListView";
|
|
|
|
private final PanelViewAdapter mAdapter;
|
|
private final ViewConfig mViewConfig;
|
|
|
|
public PanelListView(Context context, ViewConfig viewConfig) {
|
|
super(context);
|
|
mViewConfig = viewConfig;
|
|
mAdapter = new PanelViewAdapter(context, viewConfig.getItemType());
|
|
setAdapter(mAdapter);
|
|
setOnItemClickListener(new PanelListItemClickListener());
|
|
}
|
|
|
|
@Override
|
|
public void setDataset(Cursor cursor) {
|
|
Log.d(LOGTAG, "Setting dataset: " + mViewConfig.getDatasetId());
|
|
mAdapter.swapCursor(cursor);
|
|
}
|
|
|
|
private class PanelListItemClickListener implements AdapterView.OnItemClickListener {
|
|
@Override
|
|
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
|
|
Cursor cursor = mAdapter.getCursor();
|
|
if (cursor == null || !cursor.moveToPosition(position)) {
|
|
throw new IllegalStateException("Couldn't move cursor to position " + position);
|
|
}
|
|
|
|
int urlIndex = cursor.getColumnIndexOrThrow(HomeItems.URL);
|
|
final String url = cursor.getString(urlIndex);
|
|
|
|
EnumSet<OnUrlOpenListener.Flags> flags = EnumSet.noneOf(OnUrlOpenListener.Flags.class);
|
|
if (mViewConfig.getItemHandler() == ItemHandler.INTENT) {
|
|
flags.add(OnUrlOpenListener.Flags.OPEN_WITH_INTENT);
|
|
}
|
|
|
|
mUrlOpenListener.onUrlOpen(url, flags);
|
|
}
|
|
}
|
|
}
|