2011-11-28 17:14:50 +00:00
|
|
|
package org.fox.ttrss;
|
|
|
|
|
|
|
|
import java.lang.reflect.Type;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.Comparator;
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.List;
|
|
|
|
|
2012-09-16 09:25:28 +00:00
|
|
|
import org.fox.ttrss.types.Feed;
|
2012-06-19 10:18:00 +00:00
|
|
|
import org.fox.ttrss.types.FeedCategory;
|
2012-06-19 14:32:18 +00:00
|
|
|
import org.fox.ttrss.types.FeedCategoryList;
|
2012-06-19 10:18:00 +00:00
|
|
|
|
2011-11-28 17:14:50 +00:00
|
|
|
import android.app.Activity;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import android.content.SharedPreferences.OnSharedPreferenceChangeListener;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.preference.PreferenceManager;
|
2012-06-19 14:24:22 +00:00
|
|
|
import android.support.v4.app.Fragment;
|
2012-09-16 09:25:28 +00:00
|
|
|
import android.util.Log;
|
2011-11-29 10:02:16 +00:00
|
|
|
import android.view.ContextMenu;
|
|
|
|
import android.view.ContextMenu.ContextMenuInfo;
|
2011-11-28 17:14:50 +00:00
|
|
|
import android.view.LayoutInflater;
|
2012-09-16 09:25:28 +00:00
|
|
|
import android.view.MenuItem;
|
2011-11-28 17:14:50 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.widget.AdapterView;
|
2011-11-29 10:02:16 +00:00
|
|
|
import android.widget.AdapterView.AdapterContextMenuInfo;
|
2011-11-28 17:14:50 +00:00
|
|
|
import android.widget.AdapterView.OnItemClickListener;
|
|
|
|
import android.widget.ArrayAdapter;
|
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.ListView;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
|
|
import com.google.gson.Gson;
|
|
|
|
import com.google.gson.JsonArray;
|
|
|
|
import com.google.gson.JsonElement;
|
|
|
|
import com.google.gson.reflect.TypeToken;
|
|
|
|
|
|
|
|
public class FeedCategoriesFragment extends Fragment implements OnItemClickListener, OnSharedPreferenceChangeListener {
|
|
|
|
private final String TAG = this.getClass().getSimpleName();
|
|
|
|
private SharedPreferences m_prefs;
|
|
|
|
private FeedCategoryListAdapter m_adapter;
|
|
|
|
private FeedCategoryList m_cats = new FeedCategoryList();
|
2012-06-19 15:01:28 +00:00
|
|
|
private FeedCategory m_selectedCat;
|
2012-09-16 09:25:28 +00:00
|
|
|
private FeedsActivity m_activity;
|
2011-11-28 17:14:50 +00:00
|
|
|
|
|
|
|
class CatUnreadComparator implements Comparator<FeedCategory> {
|
|
|
|
@Override
|
|
|
|
public int compare(FeedCategory a, FeedCategory b) {
|
|
|
|
if (a.unread != b.unread)
|
|
|
|
return b.unread - a.unread;
|
|
|
|
else
|
|
|
|
return a.title.compareTo(b.title);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class CatTitleComparator implements Comparator<FeedCategory> {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int compare(FeedCategory a, FeedCategory b) {
|
|
|
|
if (a.id >= 0 && b.id >= 0)
|
|
|
|
return a.title.compareTo(b.title);
|
|
|
|
else
|
|
|
|
return a.id - b.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2012-03-08 15:29:27 +00:00
|
|
|
|
|
|
|
class CatOrderComparator implements Comparator<FeedCategory> {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int compare(FeedCategory a, FeedCategory b) {
|
|
|
|
if (a.id >= 0 && b.id >= 0)
|
|
|
|
if (a.order_id != 0 && b.order_id != 0)
|
|
|
|
return a.order_id - b.order_id;
|
|
|
|
else
|
|
|
|
return a.title.compareTo(b.title);
|
|
|
|
else
|
|
|
|
return a.id - b.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-09-16 09:25:28 +00:00
|
|
|
@Override
|
|
|
|
public boolean onContextItemSelected(MenuItem item) {
|
|
|
|
AdapterContextMenuInfo info = (AdapterContextMenuInfo) item
|
|
|
|
.getMenuInfo();
|
|
|
|
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case R.id.browse_articles:
|
2012-09-19 12:59:08 +00:00
|
|
|
if (true) {
|
|
|
|
FeedCategory cat = getCategoryAtPosition(info.position);
|
|
|
|
if (cat != null) {
|
|
|
|
m_activity.openFeedArticles(new Feed(cat.id, cat.title, true));
|
|
|
|
//setSelectedCategory(cat);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
case R.id.browse_headlines:
|
2012-09-16 09:25:28 +00:00
|
|
|
if (true) {
|
|
|
|
FeedCategory cat = getCategoryAtPosition(info.position);
|
|
|
|
if (cat != null) {
|
|
|
|
m_activity.onCatSelected(cat, true);
|
|
|
|
//setSelectedCategory(cat);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
case R.id.browse_feeds:
|
|
|
|
if (true) {
|
|
|
|
FeedCategory cat = getCategoryAtPosition(info.position);
|
|
|
|
if (cat != null) {
|
|
|
|
m_activity.onCatSelected(cat, false);
|
|
|
|
//cf.setSelectedCategory(cat);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
case R.id.catchup_category:
|
|
|
|
if (true) {
|
|
|
|
FeedCategory cat = getCategoryAtPosition(info.position);
|
|
|
|
if (cat != null) {
|
|
|
|
m_activity.catchupFeed(new Feed(cat.id, cat.title, true));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
|
|
|
|
default:
|
|
|
|
Log.d(TAG, "onContextItemSelected, unhandled id=" + item.getItemId());
|
|
|
|
return super.onContextItemSelected(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-29 10:02:16 +00:00
|
|
|
@Override
|
|
|
|
public void onCreateContextMenu(ContextMenu menu, View v,
|
|
|
|
ContextMenuInfo menuInfo) {
|
|
|
|
|
2012-09-19 12:01:31 +00:00
|
|
|
m_activity.getMenuInflater().inflate(R.menu.category_menu, menu);
|
2011-11-29 17:00:37 +00:00
|
|
|
|
|
|
|
AdapterContextMenuInfo info = (AdapterContextMenuInfo) menuInfo;
|
|
|
|
FeedCategory cat = m_adapter.getItem(info.position);
|
|
|
|
|
|
|
|
if (cat != null)
|
|
|
|
menu.setHeaderTitle(cat.title);
|
|
|
|
|
2012-09-19 21:39:38 +00:00
|
|
|
if (!m_activity.isSmallScreen()) {
|
|
|
|
menu.findItem(R.id.browse_articles).setVisible(false);
|
|
|
|
}
|
|
|
|
|
2011-11-29 10:02:16 +00:00
|
|
|
super.onCreateContextMenu(menu, v, menuInfo);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-11-29 17:00:37 +00:00
|
|
|
public FeedCategory getCategoryAtPosition(int position) {
|
|
|
|
return m_adapter.getItem(position);
|
2011-11-29 10:02:16 +00:00
|
|
|
}
|
|
|
|
|
2011-11-28 17:14:50 +00:00
|
|
|
@Override
|
|
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
|
|
|
if (savedInstanceState != null) {
|
2012-06-19 15:01:28 +00:00
|
|
|
m_selectedCat = savedInstanceState.getParcelable("selectedCat");
|
2011-11-28 17:14:50 +00:00
|
|
|
m_cats = savedInstanceState.getParcelable("cats");
|
|
|
|
}
|
|
|
|
|
|
|
|
View view = inflater.inflate(R.layout.cats_fragment, container, false);
|
|
|
|
|
|
|
|
ListView list = (ListView)view.findViewById(R.id.feeds);
|
|
|
|
m_adapter = new FeedCategoryListAdapter(getActivity(), R.layout.feeds_row, (ArrayList<FeedCategory>)m_cats);
|
|
|
|
list.setAdapter(m_adapter);
|
|
|
|
list.setOnItemClickListener(this);
|
2011-11-29 10:02:16 +00:00
|
|
|
registerForContextMenu(list);
|
2011-11-28 17:14:50 +00:00
|
|
|
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAttach(Activity activity) {
|
|
|
|
super.onAttach(activity);
|
|
|
|
|
2012-09-16 09:25:28 +00:00
|
|
|
m_activity = (FeedsActivity)activity;
|
2011-11-28 17:14:50 +00:00
|
|
|
|
|
|
|
m_prefs = PreferenceManager.getDefaultSharedPreferences(getActivity().getApplicationContext());
|
|
|
|
m_prefs.registerOnSharedPreferenceChangeListener(this);
|
2012-09-16 09:25:28 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
|
|
|
|
refresh(false);
|
2011-11-28 17:14:50 +00:00
|
|
|
|
2012-09-16 09:25:28 +00:00
|
|
|
m_activity.initMenu();
|
2011-11-28 17:14:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSaveInstanceState (Bundle out) {
|
|
|
|
super.onSaveInstanceState(out);
|
|
|
|
|
2012-06-19 15:01:28 +00:00
|
|
|
out.putParcelable("selectedCat", m_selectedCat);
|
2011-11-28 17:14:50 +00:00
|
|
|
out.putParcelable("cats", m_cats);
|
|
|
|
}
|
|
|
|
|
2012-09-21 06:56:49 +00:00
|
|
|
/* private void setLoadingStatus(int status, boolean showProgress) {
|
2011-11-28 17:14:50 +00:00
|
|
|
if (getView() != null) {
|
|
|
|
TextView tv = (TextView)getView().findViewById(R.id.loading_message);
|
|
|
|
|
|
|
|
if (tv != null) {
|
|
|
|
tv.setText(status);
|
|
|
|
}
|
|
|
|
}
|
2012-06-19 20:44:37 +00:00
|
|
|
|
2012-09-19 12:01:31 +00:00
|
|
|
m_activity.setProgressBarIndeterminateVisibility(showProgress);
|
2012-09-21 06:56:49 +00:00
|
|
|
} */
|
2011-11-28 17:14:50 +00:00
|
|
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
public void refresh(boolean background) {
|
|
|
|
CatsRequest req = new CatsRequest(getActivity().getApplicationContext());
|
|
|
|
|
2012-09-16 09:25:28 +00:00
|
|
|
final String sessionId = m_activity.getSessionId();
|
|
|
|
final boolean unreadOnly = m_activity.getUnreadOnly();
|
2011-11-28 17:14:50 +00:00
|
|
|
|
|
|
|
if (sessionId != null) {
|
2012-09-21 06:56:49 +00:00
|
|
|
m_activity.setLoadingStatus(R.string.blank, true);
|
2012-09-19 12:01:31 +00:00
|
|
|
m_activity.setProgressBarVisibility(true);
|
2011-11-28 17:14:50 +00:00
|
|
|
|
|
|
|
@SuppressWarnings("serial")
|
|
|
|
HashMap<String,String> map = new HashMap<String,String>() {
|
|
|
|
{
|
|
|
|
put("op", "getCategories");
|
|
|
|
put("sid", sessionId);
|
2012-09-18 06:03:16 +00:00
|
|
|
put("enable_nested", "true");
|
2011-11-28 17:14:50 +00:00
|
|
|
if (unreadOnly) {
|
|
|
|
put("unread_only", String.valueOf(unreadOnly));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
req.execute(map);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class CatsRequest extends ApiRequest {
|
|
|
|
|
|
|
|
public CatsRequest(Context context) {
|
|
|
|
super(context);
|
|
|
|
}
|
2011-11-29 04:03:38 +00:00
|
|
|
|
2012-09-19 12:01:31 +00:00
|
|
|
@Override
|
|
|
|
protected void onProgressUpdate(Integer... progress) {
|
|
|
|
m_activity.setProgress(Math.round((((float)progress[0] / (float)progress[1]) * 10000)));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2011-11-28 17:14:50 +00:00
|
|
|
protected void onPostExecute(JsonElement result) {
|
2012-10-09 05:54:43 +00:00
|
|
|
if (isDetached()) return;
|
|
|
|
|
2012-09-19 12:01:31 +00:00
|
|
|
m_activity.setProgressBarVisibility(false);
|
|
|
|
|
2013-02-27 06:39:23 +00:00
|
|
|
if (getView() != null) {
|
|
|
|
ListView list = (ListView)getView().findViewById(R.id.feeds);
|
|
|
|
|
|
|
|
if (list != null) {
|
|
|
|
list.setEmptyView(getView().findViewById(R.id.no_feeds));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-28 17:14:50 +00:00
|
|
|
if (result != null) {
|
|
|
|
try {
|
2011-11-29 04:03:38 +00:00
|
|
|
JsonArray content = result.getAsJsonArray();
|
|
|
|
if (content != null) {
|
|
|
|
Type listType = new TypeToken<List<FeedCategory>>() {}.getType();
|
|
|
|
final List<FeedCategory> cats = new Gson().fromJson(content, listType);
|
|
|
|
|
|
|
|
m_cats.clear();
|
|
|
|
|
2012-09-16 09:25:28 +00:00
|
|
|
int apiLevel = m_activity.getApiLevel();
|
2011-11-29 05:25:13 +00:00
|
|
|
|
|
|
|
// virtual cats implemented in getCategories since api level 1
|
|
|
|
if (apiLevel == 0) {
|
|
|
|
m_cats.add(new FeedCategory(-1, "Special", 0));
|
|
|
|
m_cats.add(new FeedCategory(-2, "Labels", 0));
|
|
|
|
m_cats.add(new FeedCategory(0, "Uncategorized", 0));
|
|
|
|
}
|
|
|
|
|
2011-11-29 04:03:38 +00:00
|
|
|
for (FeedCategory c : cats)
|
|
|
|
m_cats.add(c);
|
|
|
|
|
|
|
|
sortCats();
|
|
|
|
|
2012-09-21 06:56:49 +00:00
|
|
|
/* if (m_cats.size() == 0)
|
2011-11-29 04:03:38 +00:00
|
|
|
setLoadingStatus(R.string.no_feeds_to_display, false);
|
2012-09-21 06:56:49 +00:00
|
|
|
else */
|
|
|
|
|
2013-02-27 06:45:12 +00:00
|
|
|
//m_adapter.notifyDataSetChanged(); (done by sortCats)
|
2012-09-21 06:56:49 +00:00
|
|
|
m_activity.setLoadingStatus(R.string.blank, false);
|
2011-11-29 04:03:38 +00:00
|
|
|
|
|
|
|
return;
|
2011-11-28 17:14:50 +00:00
|
|
|
}
|
2011-11-29 04:03:38 +00:00
|
|
|
|
2011-11-28 17:14:50 +00:00
|
|
|
} catch (Exception e) {
|
2011-11-29 04:03:38 +00:00
|
|
|
e.printStackTrace();
|
2011-11-28 17:14:50 +00:00
|
|
|
}
|
2011-11-29 04:03:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (m_lastError == ApiError.LOGIN_FAILED) {
|
2012-09-21 06:44:30 +00:00
|
|
|
m_activity.login(true);
|
2011-11-28 17:14:50 +00:00
|
|
|
} else {
|
2012-09-21 06:56:49 +00:00
|
|
|
m_activity.setLoadingStatus(getErrorMessage(), false);
|
2011-11-28 17:14:50 +00:00
|
|
|
}
|
2011-11-29 04:03:38 +00:00
|
|
|
}
|
|
|
|
|
2011-11-28 17:14:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void sortCats() {
|
|
|
|
Comparator<FeedCategory> cmp;
|
|
|
|
|
|
|
|
if (m_prefs.getBoolean("sort_feeds_by_unread", false)) {
|
|
|
|
cmp = new CatUnreadComparator();
|
|
|
|
} else {
|
2012-09-16 09:25:28 +00:00
|
|
|
if (m_activity.getApiLevel() >= 3) {
|
2012-03-08 15:29:27 +00:00
|
|
|
cmp = new CatOrderComparator();
|
|
|
|
} else {
|
|
|
|
cmp = new CatTitleComparator();
|
|
|
|
}
|
2011-11-28 17:14:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Collections.sort(m_cats, cmp);
|
2012-09-26 05:51:16 +00:00
|
|
|
try {
|
2013-02-27 06:45:12 +00:00
|
|
|
m_adapter.notifyDataSetChanged();
|
2012-09-26 05:51:16 +00:00
|
|
|
} catch (NullPointerException e) {
|
|
|
|
// adapter missing
|
|
|
|
}
|
2011-11-28 17:14:50 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private class FeedCategoryListAdapter extends ArrayAdapter<FeedCategory> {
|
|
|
|
private ArrayList<FeedCategory> items;
|
|
|
|
|
|
|
|
public static final int VIEW_NORMAL = 0;
|
|
|
|
public static final int VIEW_SELECTED = 1;
|
|
|
|
|
|
|
|
public static final int VIEW_COUNT = VIEW_SELECTED+1;
|
|
|
|
|
|
|
|
public FeedCategoryListAdapter(Context context, int textViewResourceId, ArrayList<FeedCategory> items) {
|
|
|
|
super(context, textViewResourceId, items);
|
|
|
|
this.items = items;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getViewTypeCount() {
|
|
|
|
return VIEW_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getItemViewType(int position) {
|
|
|
|
FeedCategory cat = items.get(position);
|
|
|
|
|
2012-09-16 09:25:28 +00:00
|
|
|
if (!m_activity.isSmallScreen() && m_selectedCat != null && cat.id == m_selectedCat.id) {
|
2011-11-28 17:14:50 +00:00
|
|
|
return VIEW_SELECTED;
|
|
|
|
} else {
|
|
|
|
return VIEW_NORMAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View getView(int position, View convertView, ViewGroup parent) {
|
|
|
|
View v = convertView;
|
|
|
|
|
|
|
|
FeedCategory cat = items.get(position);
|
|
|
|
|
|
|
|
if (v == null) {
|
|
|
|
int layoutId = R.layout.feeds_row;
|
|
|
|
|
|
|
|
switch (getItemViewType(position)) {
|
|
|
|
case VIEW_SELECTED:
|
|
|
|
layoutId = R.layout.feeds_row_selected;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
LayoutInflater vi = (LayoutInflater)getActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
v = vi.inflate(layoutId, null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
TextView tt = (TextView) v.findViewById(R.id.title);
|
|
|
|
|
|
|
|
if (tt != null) {
|
|
|
|
tt.setText(cat.title);
|
|
|
|
}
|
|
|
|
|
|
|
|
TextView tu = (TextView) v.findViewById(R.id.unread_counter);
|
|
|
|
|
|
|
|
if (tu != null) {
|
|
|
|
tu.setText(String.valueOf(cat.unread));
|
|
|
|
tu.setVisibility((cat.unread > 0) ? View.VISIBLE : View.INVISIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageView icon = (ImageView)v.findViewById(R.id.icon);
|
|
|
|
|
|
|
|
if (icon != null) {
|
|
|
|
icon.setImageResource(cat.unread > 0 ? R.drawable.ic_rss : R.drawable.ic_rss_bw);
|
|
|
|
}
|
|
|
|
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences,
|
|
|
|
String key) {
|
2011-11-29 10:02:16 +00:00
|
|
|
|
|
|
|
sortCats();
|
2011-11-28 17:14:50 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> av, View view, int position, long id) {
|
|
|
|
ListView list = (ListView)av;
|
|
|
|
|
|
|
|
if (list != null) {
|
|
|
|
FeedCategory cat = (FeedCategory)list.getItemAtPosition(position);
|
2012-09-19 12:59:08 +00:00
|
|
|
|
2013-03-19 09:27:14 +00:00
|
|
|
if (cat.id < 0) {
|
|
|
|
m_activity.onCatSelected(cat, false);
|
|
|
|
} else {
|
|
|
|
if ("ARTICLES".equals(m_prefs.getString("default_view_mode", "HEADLINES")) &&
|
|
|
|
m_prefs.getBoolean("browse_cats_like_feeds", false)) {
|
|
|
|
|
|
|
|
m_activity.openFeedArticles(new Feed(cat.id, cat.title, true));
|
|
|
|
|
|
|
|
} else {
|
|
|
|
m_activity.onCatSelected(cat);
|
|
|
|
}
|
2012-09-19 12:59:08 +00:00
|
|
|
}
|
2012-06-22 11:05:50 +00:00
|
|
|
|
2012-09-16 09:25:28 +00:00
|
|
|
if (!m_activity.isSmallScreen())
|
2012-06-22 11:05:50 +00:00
|
|
|
m_selectedCat = cat;
|
|
|
|
|
2011-11-28 17:14:50 +00:00
|
|
|
m_adapter.notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
}
|
2011-11-29 17:00:37 +00:00
|
|
|
|
|
|
|
public void setSelectedCategory(FeedCategory cat) {
|
2012-06-19 15:01:28 +00:00
|
|
|
m_selectedCat = cat;
|
2011-11-29 17:00:37 +00:00
|
|
|
m_adapter.notifyDataSetChanged();
|
|
|
|
}
|
2012-01-24 11:04:45 +00:00
|
|
|
|
2012-06-19 15:01:28 +00:00
|
|
|
public FeedCategory getSelectedCategory() {
|
|
|
|
return m_selectedCat;
|
|
|
|
}
|
2011-11-28 17:14:50 +00:00
|
|
|
}
|