]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/DictionaryManagerActivity.java
Got the flags set to a reasonable size.
[Dictionary.git] / src / com / hughes / android / dictionary / DictionaryManagerActivity.java
index b1d2398f3af8ccdf587b64580a98df50674131ce..c06ccc30504cfcac927e063629a67c424a709cd7 100644 (file)
 
 package com.hughes.android.dictionary;
 
-import java.io.File;
-
-import android.app.AlertDialog;
-import android.app.ListActivity;
-import android.content.Context;
-import android.content.DialogInterface;
 import android.content.Intent;
 import android.content.SharedPreferences;
+import android.content.SharedPreferences.Editor;
 import android.os.Bundle;
+import android.os.Handler;
 import android.preference.PreferenceManager;
+import android.text.Editable;
+import android.text.TextWatcher;
 import android.util.Log;
-import android.util.TypedValue;
 import android.view.ContextMenu;
-import android.view.Menu;
-import android.view.MenuItem;
+import android.view.ContextMenu.ContextMenuInfo;
+import android.view.LayoutInflater;
 import android.view.View;
 import android.view.ViewGroup;
-import android.view.ContextMenu.ContextMenuInfo;
-import android.view.MenuItem.OnMenuItemClickListener;
-import android.view.WindowManager;
-import android.webkit.WebView;
 import android.widget.AdapterView;
-import android.widget.BaseAdapter;
-import android.widget.TableLayout;
-import android.widget.TextView;
 import android.widget.AdapterView.AdapterContextMenuInfo;
 import android.widget.AdapterView.OnItemClickListener;
+import android.widget.BaseAdapter;
+import android.widget.Button;
+import android.widget.CompoundButton;
+import android.widget.CompoundButton.OnCheckedChangeListener;
+import android.widget.EditText;
+import android.widget.ImageButton;
+import android.widget.ImageView;
+import android.widget.LinearLayout;
+import android.widget.TextView;
+import android.widget.ToggleButton;
 
-import com.hughes.android.util.PersistentObjectCache;
-
-public class DictionaryManagerActivity extends ListActivity {
-
-  static final String LOG = "QuickDic";
-  
-  QuickDicConfig quickDicConfig = new QuickDicConfig();
-  
-  
-  public void onCreate(Bundle savedInstanceState) {
-    ((DictionaryApplication)getApplication()).applyTheme(this);
-
-    super.onCreate(savedInstanceState);
-    Log.d(LOG, "onCreate:" + this);
-
-    // UI init.
-    setContentView(R.layout.list_activity);
-
-    getListView().setOnItemClickListener(new OnItemClickListener() {
-      @Override
-      public void onItemClick(AdapterView<?> arg0, View arg1, int index,
-          long id) {
-        onClick(index);
-      }
-    });
-
-    // ContextMenu.
-    registerForContextMenu(getListView());
-
-    final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
-    final String thanksForUpdatingLatestVersion = getString(R.string.thanksForUpdatingVersion);
-    if (!prefs.getString(C.THANKS_FOR_UPDATING_VERSION, "").equals(thanksForUpdatingLatestVersion)) {
-      final AlertDialog.Builder builder = new AlertDialog.Builder(this);
-      builder.setCancelable(false);
-      final WebView webView = new WebView(getApplicationContext());
-      webView.loadData(getString(R.string.thanksForUpdating), "text/html", "utf-8");
-      builder.setView(webView);
-      builder.setNegativeButton(android.R.string.ok, new DialogInterface.OnClickListener() {
-          public void onClick(DialogInterface dialog, int id) {
-               dialog.cancel();
-          }
-      });
-      final AlertDialog alert = builder.create();
-      WindowManager.LayoutParams layoutParams = new WindowManager.LayoutParams();
-      layoutParams.copyFrom(alert.getWindow().getAttributes());
-      layoutParams.width = WindowManager.LayoutParams.FILL_PARENT;
-      layoutParams.height = WindowManager.LayoutParams.FILL_PARENT;
-      alert.show();
-      alert.getWindow().setAttributes(layoutParams);
-      prefs.edit().putString(C.THANKS_FOR_UPDATING_VERSION, thanksForUpdatingLatestVersion).commit();
-    }
-  }
-  
-  private void onClick(int dictIndex) {
-    final Intent intent = DictionaryActivity.getIntent(this, dictIndex, 0, "");
-    startActivity(intent);
-  }
-  
-  @Override
-  protected void onResume() {
-    super.onResume();
-    
-    if (PreferenceActivity.prefsMightHaveChanged) {
-      PreferenceActivity.prefsMightHaveChanged = false;
-      finish();
-      startActivity(getIntent());
-    }
-    
-    final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
-    if (prefs.contains(C.DICT_INDEX) && prefs.contains(C.INDEX_INDEX)) {
-      Log.d(LOG, "Skipping Dictionary List, going straight to dictionary.");
-      startActivity(DictionaryActivity.getIntent(this, prefs.getInt(C.DICT_INDEX, 0), prefs.getInt(C.INDEX_INDEX, 0), prefs.getString(C.SEARCH_TOKEN, "")));
-      //finish();
-      return;
-    }
+import com.actionbarsherlock.app.SherlockActivity;
+import com.actionbarsherlock.app.SherlockListActivity;
+import com.actionbarsherlock.view.Menu;
+import com.actionbarsherlock.view.MenuInflater;
+import com.actionbarsherlock.widget.SearchView;
+import com.actionbarsherlock.widget.SearchView.OnQueryTextListener;
+import com.hughes.android.dictionary.DictionaryInfo.IndexInfo;
+import com.hughes.android.dictionary.engine.Language;
+import com.hughes.android.dictionary.engine.Language.LanguageResources;
+import com.hughes.android.util.IntentLauncher;
 
-    quickDicConfig = PersistentObjectCache.init(this).read(C.DICTIONARY_CONFIGS, QuickDicConfig.class);
-    if (quickDicConfig == null) {
-      quickDicConfig = new QuickDicConfig();
-      PersistentObjectCache.getInstance().write(C.DICTIONARY_CONFIGS, quickDicConfig);
-    }
-    if (quickDicConfig.currentVersion < QuickDicConfig.LATEST_VERSION) {
-      Log.d(LOG, "Dictionary list is old, updating it.");
-      
-      // Replace <-> with -
-      if (quickDicConfig.currentVersion < 5) {
-        for (final DictionaryInfo config : quickDicConfig.dictionaryConfigs) {
-          config.name = config.name.replace("<->", "-");
-        }
-      }
-      quickDicConfig.addDefaultDictionaries();
-      quickDicConfig.currentVersion = QuickDicConfig.LATEST_VERSION;
-      PersistentObjectCache.init(this).write(C.DICTIONARY_CONFIGS, quickDicConfig);
-    }
-    
-    Log.d(LOG, "DictionaryList: " + quickDicConfig.dictionaryConfigs);
-
-    setListAdapter(new Adapter());
-  }
-
-  public boolean onCreateOptionsMenu(final Menu menu) {
-    final MenuItem newDictionaryMenuItem = menu.add(R.string.addDictionary);
-    newDictionaryMenuItem.setOnMenuItemClickListener(new OnMenuItemClickListener() {
-          public boolean onMenuItemClick(final MenuItem menuItem) {
-            final DictionaryInfo dictionaryConfig = new DictionaryInfo();
-            dictionaryConfig.name = getString(R.string.newDictionary);
-            quickDicConfig.dictionaryConfigs.add(0, dictionaryConfig);
-            dictionaryConfigsChanged();
-            return false;
-          }
-        });
+import java.io.File;
+import java.util.ArrayList;
+import java.util.List;
 
-    final MenuItem addDefaultDictionariesMenuItem = menu.add(R.string.addDefaultDictionaries);
-    addDefaultDictionariesMenuItem.setOnMenuItemClickListener(new OnMenuItemClickListener() {
-          public boolean onMenuItemClick(final MenuItem menuItem) {
-            quickDicConfig.addDefaultDictionaries();
-            dictionaryConfigsChanged();
-            return false;
-          }
-        });
+public class DictionaryManagerActivity extends SherlockActivity {
 
-    final MenuItem removeAllDictionariesMenuItem = menu.add(R.string.removeAllDictionaries);
-    removeAllDictionariesMenuItem.setOnMenuItemClickListener(new OnMenuItemClickListener() {
-          public boolean onMenuItemClick(final MenuItem menuItem) {
-            quickDicConfig.dictionaryConfigs.clear();
-            dictionaryConfigsChanged();
-            return false;
-          }
-        });
+    static final String LOG = "QuickDic";
+    static boolean blockAutoLaunch = false;
 
-    final MenuItem about = menu.add(getString(R.string.about));
-    about.setOnMenuItemClickListener(new OnMenuItemClickListener() {
-      public boolean onMenuItemClick(final MenuItem menuItem) {
-        final Intent intent = new Intent().setClassName(AboutActivity.class
-            .getPackage().getName(), AboutActivity.class.getCanonicalName());
-        startActivity(intent);
-        return false;
-      }
-    });
-    
-    final MenuItem preferences = menu.add(getString(R.string.preferences));
-    preferences.setOnMenuItemClickListener(new OnMenuItemClickListener() {
-      public boolean onMenuItemClick(final MenuItem menuItem) {
-        PreferenceActivity.prefsMightHaveChanged = true;
-        startActivity(new Intent(DictionaryManagerActivity.this,
-            PreferenceActivity.class));
-        return false;
-      }
-    });
-    
-    return true;
-  }
-  
-
-  @Override
-  public void onCreateContextMenu(final ContextMenu menu, final View view,
-      final ContextMenuInfo menuInfo) {
-    super.onCreateContextMenu(menu, view, menuInfo);
-    
-    final AdapterContextMenuInfo adapterContextMenuInfo = (AdapterContextMenuInfo) menuInfo;
-    
-    final MenuItem editMenuItem = menu.add(R.string.editDictionary);
-    editMenuItem.setOnMenuItemClickListener(new OnMenuItemClickListener() {
-      @Override
-      public boolean onMenuItemClick(MenuItem item) {
-        startActivity(DictionaryEditActivity.getIntent(adapterContextMenuInfo.position));
-        return true;
-      }
-    });
-
-    if (adapterContextMenuInfo.position > 0) {
-      final MenuItem moveToTopMenuItem = menu.add(R.string.moveToTop);
-      moveToTopMenuItem.setOnMenuItemClickListener(new OnMenuItemClickListener() {
-        @Override
-        public boolean onMenuItemClick(MenuItem item) {
-          final DictionaryInfo dictionaryConfig = quickDicConfig.dictionaryConfigs.remove(adapterContextMenuInfo.position);
-          quickDicConfig.dictionaryConfigs.add(0, dictionaryConfig);
-          dictionaryConfigsChanged();
-          return true;
-        }
-      });
+    DictionaryApplication application;
+//    Adapter adapter;
+
+    // EditText filterText;
+    SearchView filterSearchView;
+    ToggleButton showDownloadable;
+
+    LinearLayout dictionariesOnDevice;
+    LinearLayout downloadableDictionaries;
+
+    Handler uiHandler;
+
+    public static Intent getLaunchIntent() {
+        final Intent intent = new Intent();
+        intent.setClassName(DictionaryManagerActivity.class.getPackage().getName(),
+                DictionaryManagerActivity.class.getName());
+        intent.putExtra(C.CAN_AUTO_LAUNCH_DICT, false);
+        return intent;
     }
 
-    final MenuItem deleteMenuItem = menu.add(R.string.deleteDictionary);
-    deleteMenuItem.setOnMenuItemClickListener(new OnMenuItemClickListener() {
-      @Override
-      public boolean onMenuItemClick(MenuItem item) {
-        quickDicConfig.dictionaryConfigs.remove(adapterContextMenuInfo.position);
-        dictionaryConfigsChanged();
-        return true;
-      }
-    });
+    public void onCreate(Bundle savedInstanceState) {
+        setTheme(((DictionaryApplication) getApplication()).getSelectedTheme().themeId);
+
+        super.onCreate(savedInstanceState);
+        Log.d(LOG, "onCreate:" + this);
+
+        application = (DictionaryApplication) getApplication();
+
+        // UI init.
+        setContentView(R.layout.dictionary_manager_activity);
 
-  }
+        dictionariesOnDevice = (LinearLayout) findViewById(R.id.dictionariesOnDeviceGoHere);
+        downloadableDictionaries = (LinearLayout) findViewById(R.id.downloadableDictionariesGoHere);
 
-  private void dictionaryConfigsChanged() {
-    PersistentObjectCache.getInstance().write(C.DICTIONARY_CONFIGS, quickDicConfig);
-    setListAdapter(getListAdapter());
-  }
+        // filterText = (EditText) findViewById(R.id.filterText);
+        //
+        // filterText.addTextChangedListener(new TextWatcher() {
+        // @Override
+        // public void onTextChanged(CharSequence s, int start, int before, int
+        // count) {
+        // }
+        //
+        // @Override
+        // public void beforeTextChanged(CharSequence s, int start, int count,
+        // int after) {
+        // }
+        //
+        // @Override
+        // public void afterTextChanged(Editable s) {
+        // onFilterTextChanged();
+        // }
+        // });
+
+        // final ImageButton clearSearchText = (ImageButton)
+        // findViewById(R.id.ClearSearchTextButton);
+        // clearSearchText.setOnClickListener(new View.OnClickListener() {
+        // @Override
+        // public void onClick(View arg0) {
+        // filterText.setText("");
+        // filterText.requestFocus();
+        // }
+        // });
+
+        showDownloadable = (ToggleButton) findViewById(R.id.hideDownloadable);
+        showDownloadable.setOnCheckedChangeListener(new OnCheckedChangeListener() {
+            @Override
+            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
+                onShowLocalChanged();
+            }
+        });
 
-  class Adapter extends BaseAdapter {
+        // ContextMenu.
+        // registerForContextMenu(getListView());
+
+        blockAutoLaunch = false;
+        final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
+        final String thanksForUpdatingLatestVersion = getString(R.string.thanksForUpdatingVersion);
+        if (!prefs.getString(C.THANKS_FOR_UPDATING_VERSION, "").equals(
+                thanksForUpdatingLatestVersion)) {
+            blockAutoLaunch = true;
+            startActivity(HtmlDisplayActivity.getWhatsNewLaunchIntent());
+            prefs.edit().putString(C.THANKS_FOR_UPDATING_VERSION, thanksForUpdatingLatestVersion)
+                    .commit();
+        }
+    }
 
     @Override
-    public int getCount() {
-      return quickDicConfig.dictionaryConfigs.size();
+    protected void onStart() {
+        super.onStart();
+        uiHandler = new Handler();
     }
 
     @Override
-    public DictionaryInfo getItem(int position) {
-      return quickDicConfig.dictionaryConfigs.get(position);
+    protected void onStop() {
+        super.onStop();
+        uiHandler = null;
     }
 
     @Override
-    public long getItemId(int position) {
-      return position;
+    protected void onResume() {
+        super.onResume();
+
+        if (PreferenceActivity.prefsMightHaveChanged) {
+            PreferenceActivity.prefsMightHaveChanged = false;
+            finish();
+            startActivity(getIntent());
+        }
+
+        final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
+        showDownloadable.setChecked(prefs.getBoolean(C.SHOW_DOWNLOADABLE, false));
+
+        if (!blockAutoLaunch &&
+                getIntent().getBooleanExtra(C.CAN_AUTO_LAUNCH_DICT, true) &&
+                prefs.contains(C.DICT_FILE) &&
+                prefs.contains(C.INDEX_SHORT_NAME)) {
+            Log.d(LOG, "Skipping Dictionary List, going straight to dictionary.");
+            startActivity(DictionaryActivity.getLaunchIntent(
+                    new File(prefs.getString(C.DICT_FILE, "")), prefs.getString(C.INDEX_SHORT_NAME, ""),
+                    prefs.getString(C.SEARCH_TOKEN, "")));
+            finish();
+            return;
+        }
+
+        application.backgroundUpdateDictionaries(new Runnable() {
+            @Override
+            public void run() {
+                if (uiHandler == null) {
+                    return;
+                }
+                uiHandler.post(new Runnable() {
+                    @Override
+                    public void run() {
+                        populateDictionaryLists("");
+                    }
+                });
+            }
+        });
+
+        populateDictionaryLists("");
     }
-    
+
     @Override
-    public View getView(int position, View convertView, ViewGroup parent) {
-      final DictionaryInfo dictionaryConfig = getItem(position);
-      final TableLayout tableLayout = new TableLayout(parent.getContext());
-      final TextView view = new TextView(parent.getContext());
-      
-      String name = dictionaryConfig.name;
-      if (!new File(dictionaryConfig.localFile).canRead()) {
-        name = getString(R.string.notOnDevice, dictionaryConfig.name);
-      }
-
-      view.setText(name);
-      view.setTextSize(TypedValue.COMPLEX_UNIT_SP, 22);
-      tableLayout.addView(view);
-
-      return tableLayout;
+    public boolean onCreateOptionsMenu(final Menu menu) {
+        MenuInflater inflater = getSupportMenuInflater();
+        inflater.inflate(R.menu.dictionary_manager_options_menu, menu);
+        
+        filterSearchView = (SearchView) menu.findItem(R.id.filterText).getActionView();
+        filterSearchView.setOnQueryTextListener(new OnQueryTextListener() {
+            @Override
+            public boolean onQueryTextSubmit(String query) {
+                return true;
+            }
+            
+            @Override
+            public boolean onQueryTextChange(String filterText) {
+                populateDictionaryLists(filterText);
+                return true;
+            }
+        });
+
+        application.onCreateGlobalOptionsMenu(this, menu);
+        return true;
+    }
+
+        // @Override
+        // public void onCreateContextMenu(final ContextMenu menu, final View
+        // view,
+        // final ContextMenuInfo menuInfo) {
+        // super.onCreateContextMenu(menu, view, menuInfo);
+        //
+        // final AdapterContextMenuInfo adapterContextMenuInfo =
+        // (AdapterContextMenuInfo) menuInfo;
+        // final int position = adapterContextMenuInfo.position;
+        // final DictionaryInfo dictionaryInfo = adapter.getItem(position);
+        //
+        // if (position > 0 &&
+        // application.isDictionaryOnDevice(dictionaryInfo.uncompressedFilename))
+        // {
+        // final android.view.MenuItem moveToTopMenuItem =
+        // menu.add(R.string.moveToTop);
+        // moveToTopMenuItem.setOnMenuItemClickListener(new
+        // android.view.MenuItem.OnMenuItemClickListener() {
+        // @Override
+        // public boolean onMenuItemClick(android.view.MenuItem item) {
+        // application.moveDictionaryToTop(dictionaryInfo);
+        // setListAdapter(adapter = new Adapter());
+        // return true;
+        // }
+        // });
+        // }
+//
+//        final android.view.MenuItem deleteMenuItem = menu.add(R.string.deleteDictionary);
+//        deleteMenuItem
+//                .setOnMenuItemClickListener(new android.view.MenuItem.OnMenuItemClickListener() {
+//                    @Override
+//                    public boolean onMenuItemClick(android.view.MenuItem item) {
+//                        application.deleteDictionary(dictionaryInfo);
+//                        setListAdapter(adapter = new Adapter());
+//                        return true;
+//                    }
+//                });
+//
+//        final DictionaryInfo downloadable = application
+//                .getDownloadable(dictionaryInfo.uncompressedFilename);
+//        if (downloadable != null) {
+//            final android.view.MenuItem downloadMenuItem = menu.add(getString(
+//                    R.string.downloadButton, downloadable.zipBytes / 1024.0 / 1024.0));
+//            downloadMenuItem
+//                    .setOnMenuItemClickListener(new android.view.MenuItem.OnMenuItemClickListener() {
+//                        @Override
+//                        public boolean onMenuItemClick(android.view.MenuItem item) {
+//                            final Intent intent = getDownloadIntent(downloadable);
+//                            startActivity(intent);
+//                            setListAdapter(adapter = new Adapter());
+//                            return true;
+//                        }
+//                    });
+//        }
+//
+//    }
+
+    private Intent getDownloadIntent(final DictionaryInfo downloadable) {
+        // DownloadManager downloadManager = (DownloadManager)
+        // getSystemService(DOWNLOAD_SERVICE);
+        // DownloadManager.Request request = new
+        // DownloadManager.Request(Uri.parse(""));
+        // long id = downloadManager.enqueue(request);
+        // DownloadManager.Query query;
+        return null;
+    }
+
+    private void onShowLocalChanged() {
+//        downloadableDictionaries.setVisibility(showDownloadable.isChecked() ? View.GONE
+//                : View.VISIBLE);
+        if (filterSearchView != null) {
+            populateDictionaryLists(filterSearchView.getQuery().toString());
+        } else {
+            populateDictionaryLists("");
+        }
+        Editor prefs = PreferenceManager.getDefaultSharedPreferences(this).edit();
+        prefs.putBoolean(C.SHOW_DOWNLOADABLE, showDownloadable.isChecked());
+        prefs.commit();
+    }
+
+    // private void onClick(int index) {
+    // final DictionaryInfo dictionaryInfo = adapter.getItem(index);
+    // final DictionaryInfo downloadable =
+    // application.getDownloadable(dictionaryInfo.uncompressedFilename);
+    // if
+    // (!application.isDictionaryOnDevice(dictionaryInfo.uncompressedFilename)
+    // && downloadable != null) {
+    // final Intent intent = getDownloadIntent(downloadable);
+    // startActivity(intent);
+    // } else {
+    // final Intent intent =
+    // DictionaryActivity.getLaunchIntent(application.getPath(dictionaryInfo.uncompressedFilename),
+    // 0, "");
+    // startActivity(intent);
+    // }
+    // }
+
+    private void populateDictionaryLists(String filterText) {
+        // On device.
+        dictionariesOnDevice.removeAllViews();
+        {
+            final List<DictionaryInfo> dictionaryInfos = application.getDictionariesOnDevice();
+            for (final DictionaryInfo dictionaryInfo : dictionaryInfos) {
+                View row = LayoutInflater.from(dictionariesOnDevice.getContext()).inflate(
+                        R.layout.dictionary_on_device_row, dictionariesOnDevice, false);
+                final TextView name = (TextView) row.findViewById(R.id.dictionaryName);
+                name.setText(application.getDictionaryName(dictionaryInfo.uncompressedFilename));
+                
+                LinearLayout buttons = (LinearLayout) row.findViewById(R.id.dictionaryLauncherButtons);
+                final List<IndexInfo> sortedIndexInfos = application.sortedIndexInfos(dictionaryInfo.indexInfos);
+                for (IndexInfo indexInfo : sortedIndexInfos) {
+                    final View button = application.createButton(buttons.getContext(), dictionaryInfo, indexInfo);
+                    buttons.addView(button);
+                }
+                
+                dictionariesOnDevice.addView(row);
+            }
+        }
+
+        // Downloadable.
+        downloadableDictionaries.removeAllViews();
+        if (showDownloadable.isChecked()) {
+            final List<DictionaryInfo> dictionaryInfos = application.getDownloadableDictionaries();
+            for (final DictionaryInfo dictionaryInfo : dictionaryInfos) {
+                View row = LayoutInflater.from(dictionariesOnDevice.getContext()).inflate(
+                        R.layout.dictionary_on_device_row, dictionariesOnDevice, false);
+                final TextView name = (TextView) row.findViewById(R.id.dictionaryName);
+                name.setText(application.getDictionaryName(dictionaryInfo.uncompressedFilename));
+                
+                LinearLayout buttons = (LinearLayout) row.findViewById(R.id.dictionaryLauncherButtons);
+                final List<IndexInfo> sortedIndexInfos = application.sortedIndexInfos(dictionaryInfo.indexInfos);
+                for (IndexInfo indexInfo : sortedIndexInfos) {
+                    final View button = application.createButton(buttons.getContext(), dictionaryInfo, indexInfo);
+                    buttons.addView(button);
+                }
+                downloadableDictionaries.addView(row);
+            }
+        }
     }
-    
-  }
-
-  public static Intent getIntent(final Context context) {
-    DictionaryActivity.clearDictionaryPrefs(context);
-    final Intent intent = new Intent();
-    intent.setClassName(DictionaryManagerActivity.class.getPackage().getName(),
-        DictionaryManagerActivity.class.getName());
-    return intent;
-  }
 
 }