mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
d2e4e64ee6
--HG-- extra : rebase_source : a64bfad708d610e7c9ad78ed2d21132da45d80f4
138 lines
4.8 KiB
Java
138 lines
4.8 KiB
Java
/* 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;
|
|
|
|
import android.content.Context;
|
|
import android.text.TextUtils;
|
|
import android.util.AttributeSet;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
import android.widget.ExpandableListView;
|
|
import android.widget.SimpleExpandableListAdapter;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
|
|
public class RemoteTabs extends ExpandableListView
|
|
implements TabsPanel.PanelView,
|
|
ExpandableListView.OnGroupClickListener,
|
|
ExpandableListView.OnChildClickListener,
|
|
TabsAccessor.OnQueryTabsCompleteListener {
|
|
private static final String LOGTAG = "GeckoRemoteTabs";
|
|
|
|
private Context mContext;
|
|
private TabsPanel mTabsPanel;
|
|
|
|
private static ArrayList <ArrayList <HashMap <String, String>>> mTabsList;
|
|
|
|
private static final String[] CLIENT_KEY = new String[] { "name" };
|
|
private static final String[] TAB_KEY = new String[] { "title", "url" };
|
|
private static final int[] CLIENT_RESOURCE = new int[] { R.id.client };
|
|
private static final int[] TAB_RESOURCE = new int[] { R.id.tab, R.id.url };
|
|
|
|
public RemoteTabs(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
mContext = context;
|
|
|
|
setOnGroupClickListener(this);
|
|
setOnChildClickListener(this);
|
|
}
|
|
|
|
@Override
|
|
public ViewGroup getLayout() {
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public void setTabsPanel(TabsPanel panel) {
|
|
mTabsPanel = panel;
|
|
}
|
|
|
|
@Override
|
|
public void show() {
|
|
setVisibility(View.VISIBLE);
|
|
TabsAccessor.getTabs(mContext, this);
|
|
}
|
|
|
|
@Override
|
|
public void hide() {
|
|
setVisibility(View.GONE);
|
|
}
|
|
|
|
private void autoHidePanel() {
|
|
mTabsPanel.autoHidePanel();
|
|
}
|
|
|
|
@Override
|
|
public boolean onGroupClick(ExpandableListView parent, View view, int position, long id) {
|
|
// By default, the group collapses/expands. Consume the event.
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public boolean onChildClick(ExpandableListView parent, View view, int groupPosition, int childPosition, long id) {
|
|
HashMap <String, String> tab = mTabsList.get(groupPosition).get(childPosition);
|
|
if (tab == null) {
|
|
autoHidePanel();
|
|
return true;
|
|
}
|
|
|
|
Tabs.getInstance().loadUrl(tab.get("url"), Tabs.LOADURL_NEW_TAB);
|
|
autoHidePanel();
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public void onQueryTabsComplete(List<TabsAccessor.RemoteTab> remoteTabsList) {
|
|
ArrayList<TabsAccessor.RemoteTab> remoteTabs = new ArrayList<TabsAccessor.RemoteTab> (remoteTabsList);
|
|
if (remoteTabs == null || remoteTabs.size() == 0) {
|
|
autoHidePanel();
|
|
return;
|
|
}
|
|
|
|
ArrayList <HashMap <String, String>> clients = new ArrayList <HashMap <String, String>>();
|
|
|
|
mTabsList = new ArrayList <ArrayList <HashMap <String, String>>>();
|
|
|
|
String oldGuid = null;
|
|
ArrayList <HashMap <String, String>> tabsForClient = null;
|
|
HashMap <String, String> client;
|
|
HashMap <String, String> tab;
|
|
|
|
for (TabsAccessor.RemoteTab remoteTab : remoteTabs) {
|
|
if (oldGuid == null || !TextUtils.equals(oldGuid, remoteTab.guid)) {
|
|
client = new HashMap <String, String>();
|
|
client.put("name", remoteTab.name);
|
|
clients.add(client);
|
|
|
|
tabsForClient = new ArrayList <HashMap <String, String>>();
|
|
mTabsList.add(tabsForClient);
|
|
|
|
oldGuid = new String(remoteTab.guid);
|
|
}
|
|
|
|
tab = new HashMap<String, String>();
|
|
tab.put("title", TextUtils.isEmpty(remoteTab.title) ? remoteTab.url : remoteTab.title);
|
|
tab.put("url", remoteTab.url);
|
|
tabsForClient.add(tab);
|
|
}
|
|
|
|
setAdapter(new SimpleExpandableListAdapter(mContext,
|
|
clients,
|
|
R.layout.remote_tabs_group,
|
|
CLIENT_KEY,
|
|
CLIENT_RESOURCE,
|
|
mTabsList,
|
|
R.layout.remote_tabs_child,
|
|
TAB_KEY,
|
|
TAB_RESOURCE));
|
|
|
|
for (int i = 0; i < clients.size(); i++) {
|
|
expandGroup(i);
|
|
}
|
|
}
|
|
}
|