From bf3b9c374e1e68b1244da392666b571ab37e51fb Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Sat, 6 Jul 2024 22:16:37 +0200 Subject: Clipboard pane (#681) This adds the clipboard pane, which allows to save an arbitrary number of clipboards and to paste them later. The key can be disabled in settings. Checking the "Recently copied text" checkbox will cause the keyboard to keep a temporary history of copied text. This history can only contain 3 elements which expire after 5 minutes. If this is unchecked, no history is collected. History entries can be pinned into the persisted list of pins. --- srcs/juloo.keyboard2/ClipboardHistoryView.java | 125 +++++++++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 srcs/juloo.keyboard2/ClipboardHistoryView.java (limited to 'srcs/juloo.keyboard2/ClipboardHistoryView.java') diff --git a/srcs/juloo.keyboard2/ClipboardHistoryView.java b/srcs/juloo.keyboard2/ClipboardHistoryView.java new file mode 100644 index 0000000..b4eb6fe --- /dev/null +++ b/srcs/juloo.keyboard2/ClipboardHistoryView.java @@ -0,0 +1,125 @@ +package juloo.keyboard2; + +import android.app.AlertDialog; +import android.content.Context; +import android.content.DialogInterface; +import android.util.AttributeSet; +import android.view.View; +import android.view.ViewGroup; +import android.widget.BaseAdapter; +import android.widget.TextView; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +public final class ClipboardHistoryView extends NonScrollListView + implements ClipboardHistoryService.OnClipboardHistoryChange +{ + List _history; + ClipboardHistoryService _service; + ClipboardEntriesAdapter _adapter; + + public ClipboardHistoryView(Context ctx, AttributeSet attrs) + { + super(ctx, attrs); + _history = Collections.EMPTY_LIST; + _adapter = this.new ClipboardEntriesAdapter(); + _service = ClipboardHistoryService.get_service(ctx); + if (_service != null) + { + _service.set_on_clipboard_history_change(this); + _history = _service.clear_expired_and_get_history(); + } + setAdapter(_adapter); + } + + /** The history entry at index [pos] is removed from the history and added to + the list of pinned clipboards. */ + public void pin_entry(int pos) + { + ClipboardPinView v = (ClipboardPinView)((ViewGroup)getParent().getParent()).findViewById(R.id.clipboard_pin_view); + String clip = _history.get(pos); + v.add_entry(clip); + _service.remove_history_entry(clip); + } + + /** Send the specified entry to the editor. */ + public void paste_entry(int pos) + { + ClipboardHistoryService.paste(_history.get(pos)); + } + + @Override + public void on_clipboard_history_change() + { + update_data(); + } + + @Override + protected void onWindowVisibilityChanged(int visibility) + { + if (visibility == View.VISIBLE) + update_data(); + } + + void update_data() + { + _history = _service.clear_expired_and_get_history(); + _adapter.notifyDataSetChanged(); + invalidate(); + } + + class ClipboardEntriesAdapter extends BaseAdapter + { + public ClipboardEntriesAdapter() {} + + @Override + public int getCount() { return _history.size(); } + @Override + public Object getItem(int pos) { return _history.get(pos); } + @Override + public long getItemId(int pos) { return _history.get(pos).hashCode(); } + + @Override + public View getView(final int pos, View v, ViewGroup _parent) + { + if (v == null) + v = View.inflate(getContext(), R.layout.clipboard_history_entry, null); + ((TextView)v.findViewById(R.id.clipboard_entry_text)) + .setText(_history.get(pos)); + v.findViewById(R.id.clipboard_entry_addpin).setOnClickListener( + new View.OnClickListener() + { + @Override + public void onClick(View v) { pin_entry(pos); } + }); + v.findViewById(R.id.clipboard_entry_paste).setOnClickListener( + new View.OnClickListener() + { + @Override + public void onClick(View v) { paste_entry(pos); } + }); + // v.findViewById(R.id.clipboard_entry_removehist).setOnClickListener( + // new View.OnClickListener() + // { + // @Override + // public void onClick(View v) + // { + // AlertDialog d = new AlertDialog.Builder(getContext()) + // .setTitle(R.string.clipboard_remove_confirm) + // .setPositiveButton(R.string.clipboard_remove_confirmed, + // new DialogInterface.OnClickListener(){ + // public void onClick(DialogInterface _dialog, int _which) + // { + // _service.remove_history_entry(_history.get(pos)); + // } + // }) + // .setNegativeButton(android.R.string.cancel, null) + // .create(); + // Utils.show_dialog_on_ime(d, v.getWindowToken()); + // } + // }); + return v; + } + } +} -- cgit v1.2.3