NekoX/TMessagesProj/src/main/java/org/telegram/ui/Components/EditTextCaption.java

366 lines
14 KiB
Java
Raw Normal View History

2017-03-31 01:58:05 +02:00
/*
2019-01-23 18:03:33 +01:00
* This is the source code of Telegram for Android v. 5.x.x.
2017-03-31 01:58:05 +02:00
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
2019-01-23 18:03:33 +01:00
* Copyright Nikolai Kudashov, 2013-2018.
2017-03-31 01:58:05 +02:00
*/
package org.telegram.ui.Components;
import android.annotation.SuppressLint;
import android.content.Context;
2018-07-30 04:07:02 +02:00
import android.content.DialogInterface;
2017-03-31 01:58:05 +02:00
import android.graphics.Canvas;
import android.graphics.Paint;
2018-07-30 04:07:02 +02:00
import android.graphics.Typeface;
2017-03-31 01:58:05 +02:00
import android.os.Build;
import android.text.Editable;
import android.text.Layout;
import android.text.Spanned;
import android.text.StaticLayout;
import android.text.TextPaint;
import android.text.TextUtils;
2018-07-30 04:07:02 +02:00
import android.text.style.CharacterStyle;
import android.util.TypedValue;
2017-03-31 01:58:05 +02:00
import android.view.ActionMode;
2018-07-30 04:07:02 +02:00
import android.view.Gravity;
2017-03-31 01:58:05 +02:00
import android.view.Menu;
import android.view.MenuItem;
2018-07-30 04:07:02 +02:00
import android.view.ViewGroup;
2019-05-14 14:08:05 +02:00
import android.view.accessibility.AccessibilityNodeInfo;
2018-07-30 04:07:02 +02:00
import android.view.inputmethod.EditorInfo;
import android.widget.FrameLayout;
2017-03-31 01:58:05 +02:00
import org.telegram.messenger.AndroidUtilities;
import org.telegram.messenger.FileLog;
2018-07-30 04:07:02 +02:00
import org.telegram.messenger.LocaleController;
2017-03-31 01:58:05 +02:00
import org.telegram.messenger.R;
2018-07-30 04:07:02 +02:00
import org.telegram.ui.ActionBar.AlertDialog;
import org.telegram.ui.ActionBar.Theme;
2017-03-31 01:58:05 +02:00
public class EditTextCaption extends EditTextBoldCursor {
private String caption;
private StaticLayout captionLayout;
private int userNameLength;
private int xOffset;
private int yOffset;
private int triesCount = 0;
private boolean copyPasteShowed;
private int hintColor;
2018-07-30 04:07:02 +02:00
private EditTextCaptionDelegate delegate;
private int selectionStart = -1;
private int selectionEnd = -1;
public interface EditTextCaptionDelegate {
void onSpansChanged();
}
2017-03-31 01:58:05 +02:00
public EditTextCaption(Context context) {
super(context);
}
public void setCaption(String value) {
if ((caption == null || caption.length() == 0) && (value == null || value.length() == 0) || caption != null && value != null && caption.equals(value)) {
return;
}
caption = value;
if (caption != null) {
caption = caption.replace('\n', ' ');
}
requestLayout();
}
2018-07-30 04:07:02 +02:00
public void setDelegate(EditTextCaptionDelegate editTextCaptionDelegate) {
delegate = editTextCaptionDelegate;
}
public void makeSelectedBold() {
2017-03-31 01:58:05 +02:00
applyTextStyleToSelection(new TypefaceSpan(AndroidUtilities.getTypeface("fonts/rmedium.ttf")));
}
2018-07-30 04:07:02 +02:00
public void makeSelectedItalic() {
2017-03-31 01:58:05 +02:00
applyTextStyleToSelection(new TypefaceSpan(AndroidUtilities.getTypeface("fonts/ritalic.ttf")));
}
2018-07-30 04:07:02 +02:00
public void makeSelectedMono() {
applyTextStyleToSelection(new TypefaceSpan(Typeface.MONOSPACE));
}
public void makeSelectedUrl() {
AlertDialog.Builder builder = new AlertDialog.Builder(getContext());
builder.setTitle(LocaleController.getString("CreateLink", R.string.CreateLink));
final EditTextBoldCursor editText = new EditTextBoldCursor(getContext()) {
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(AndroidUtilities.dp(64), MeasureSpec.EXACTLY));
}
};
editText.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 18);
editText.setText("http://");
editText.setTextColor(Theme.getColor(Theme.key_dialogTextBlack));
editText.setHintText(LocaleController.getString("URL", R.string.URL));
editText.setHeaderHintColor(Theme.getColor(Theme.key_windowBackgroundWhiteBlueHeader));
editText.setSingleLine(true);
editText.setFocusable(true);
editText.setTransformHintToHeader(true);
editText.setLineColors(Theme.getColor(Theme.key_windowBackgroundWhiteInputField), Theme.getColor(Theme.key_windowBackgroundWhiteInputFieldActivated), Theme.getColor(Theme.key_windowBackgroundWhiteRedText3));
editText.setImeOptions(EditorInfo.IME_ACTION_DONE);
editText.setBackgroundDrawable(null);
editText.requestFocus();
editText.setPadding(0, 0, 0, 0);
builder.setView(editText);
final int start;
final int end;
if (selectionStart >= 0 && selectionEnd >= 0) {
start = selectionStart;
end = selectionEnd;
selectionStart = selectionEnd = -1;
} else {
start = getSelectionStart();
end = getSelectionEnd();
}
2019-01-23 18:03:33 +01:00
builder.setPositiveButton(LocaleController.getString("OK", R.string.OK), (dialogInterface, i) -> {
Editable editable = getText();
CharacterStyle spans[] = editable.getSpans(start, end, CharacterStyle.class);
if (spans != null && spans.length > 0) {
for (int a = 0; a < spans.length; a++) {
CharacterStyle oldSpan = spans[a];
int spanStart = editable.getSpanStart(oldSpan);
int spanEnd = editable.getSpanEnd(oldSpan);
editable.removeSpan(oldSpan);
if (spanStart < start) {
editable.setSpan(oldSpan, spanStart, start, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
}
if (spanEnd > end) {
editable.setSpan(oldSpan, end, spanEnd, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
2018-07-30 04:07:02 +02:00
}
}
2019-01-23 18:03:33 +01:00
}
try {
2018-07-30 04:07:02 +02:00
editable.setSpan(new URLSpanReplacement(editText.getText().toString()), start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
2019-01-23 18:03:33 +01:00
} catch (Exception ingore) {
}
if (delegate != null) {
delegate.onSpansChanged();
2018-07-30 04:07:02 +02:00
}
});
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
2019-01-23 18:03:33 +01:00
builder.show().setOnShowListener(dialog -> {
editText.requestFocus();
AndroidUtilities.showKeyboard(editText);
2018-07-30 04:07:02 +02:00
});
if (editText != null) {
ViewGroup.MarginLayoutParams layoutParams = (ViewGroup.MarginLayoutParams) editText.getLayoutParams();
if (layoutParams != null) {
if (layoutParams instanceof FrameLayout.LayoutParams) {
((FrameLayout.LayoutParams) layoutParams).gravity = Gravity.CENTER_HORIZONTAL;
}
layoutParams.rightMargin = layoutParams.leftMargin = AndroidUtilities.dp(24);
layoutParams.height = AndroidUtilities.dp(36);
editText.setLayoutParams(layoutParams);
}
editText.setSelection(0, editText.getText().length());
}
}
public void makeSelectedRegular() {
2017-03-31 01:58:05 +02:00
applyTextStyleToSelection(null);
}
2018-07-30 04:07:02 +02:00
public void setSelectionOverride(int start, int end) {
selectionStart = start;
selectionEnd = end;
}
2017-03-31 01:58:05 +02:00
2018-07-30 04:07:02 +02:00
private void applyTextStyleToSelection(TypefaceSpan span) {
int start;
int end;
if (selectionStart >= 0 && selectionEnd >= 0) {
start = selectionStart;
end = selectionEnd;
selectionStart = selectionEnd = -1;
} else {
start = getSelectionStart();
end = getSelectionEnd();
2017-03-31 01:58:05 +02:00
}
2018-07-30 04:07:02 +02:00
Editable editable = getText();
2017-03-31 01:58:05 +02:00
2018-07-30 04:07:02 +02:00
CharacterStyle spans[] = editable.getSpans(start, end, CharacterStyle.class);
2017-03-31 01:58:05 +02:00
if (spans != null && spans.length > 0) {
for (int a = 0; a < spans.length; a++) {
2018-07-30 04:07:02 +02:00
CharacterStyle oldSpan = spans[a];
2017-03-31 01:58:05 +02:00
int spanStart = editable.getSpanStart(oldSpan);
int spanEnd = editable.getSpanEnd(oldSpan);
editable.removeSpan(oldSpan);
if (spanStart < start) {
2018-07-30 04:07:02 +02:00
editable.setSpan(oldSpan, spanStart, start, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
2017-03-31 01:58:05 +02:00
}
if (spanEnd > end) {
2018-07-30 04:07:02 +02:00
editable.setSpan(oldSpan, end, spanEnd, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
2017-03-31 01:58:05 +02:00
}
}
}
if (span != null) {
editable.setSpan(span, start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
}
2018-07-30 04:07:02 +02:00
if (delegate != null) {
delegate.onSpansChanged();
}
2017-03-31 01:58:05 +02:00
}
@Override
public void onWindowFocusChanged(boolean hasWindowFocus) {
if (Build.VERSION.SDK_INT < 23 && !hasWindowFocus && copyPasteShowed) {
return;
}
super.onWindowFocusChanged(hasWindowFocus);
}
private ActionMode.Callback overrideCallback(final ActionMode.Callback callback) {
return new ActionMode.Callback() {
@Override
public boolean onCreateActionMode(ActionMode mode, Menu menu) {
copyPasteShowed = true;
return callback.onCreateActionMode(mode, menu);
}
@Override
public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
return callback.onPrepareActionMode(mode, menu);
}
@Override
public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
if (item.getItemId() == R.id.menu_regular) {
makeSelectedRegular();
mode.finish();
return true;
} else if (item.getItemId() == R.id.menu_bold) {
makeSelectedBold();
mode.finish();
return true;
} else if (item.getItemId() == R.id.menu_italic) {
makeSelectedItalic();
mode.finish();
return true;
2018-07-30 04:07:02 +02:00
} else if (item.getItemId() == R.id.menu_mono) {
makeSelectedMono();
mode.finish();
return true;
} else if (item.getItemId() == R.id.menu_link) {
makeSelectedUrl();
mode.finish();
return true;
2017-03-31 01:58:05 +02:00
}
2017-12-08 18:35:59 +01:00
try {
return callback.onActionItemClicked(mode, item);
} catch (Exception ignore) {
}
return true;
2017-03-31 01:58:05 +02:00
}
@Override
public void onDestroyActionMode(ActionMode mode) {
copyPasteShowed = false;
callback.onDestroyActionMode(mode);
}
};
}
@Override
public ActionMode startActionMode(final ActionMode.Callback callback, int type) {
return super.startActionMode(overrideCallback(callback), type);
}
@Override
public ActionMode startActionMode(final ActionMode.Callback callback) {
return super.startActionMode(overrideCallback(callback));
}
@SuppressLint("DrawAllocation")
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
try {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
} catch (Exception e) {
setMeasuredDimension(MeasureSpec.getSize(widthMeasureSpec), AndroidUtilities.dp(51));
FileLog.e(e);
}
captionLayout = null;
if (caption != null && caption.length() > 0) {
CharSequence text = getText();
if (text.length() > 1 && text.charAt(0) == '@') {
int index = TextUtils.indexOf(text, ' ');
if (index != -1) {
TextPaint paint = getPaint();
CharSequence str = text.subSequence(0, index + 1);
int size = (int) Math.ceil(paint.measureText(text, 0, index + 1));
int width = getMeasuredWidth() - getPaddingLeft() - getPaddingRight();
userNameLength = str.length();
CharSequence captionFinal = TextUtils.ellipsize(caption, paint, width - size, TextUtils.TruncateAt.END);
xOffset = size;
try {
captionLayout = new StaticLayout(captionFinal, getPaint(), width - size, Layout.Alignment.ALIGN_NORMAL, 1.0f, 0.0f, false);
if (captionLayout.getLineCount() > 0) {
xOffset += -captionLayout.getLineLeft(0);
}
yOffset = (getMeasuredHeight() - captionLayout.getLineBottom(0)) / 2 + AndroidUtilities.dp(0.5f);
} catch (Exception e) {
FileLog.e(e);
}
}
}
}
}
public String getCaption() {
return caption;
}
@Override
public void setHintColor(int value) {
super.setHintColor(value);
hintColor = value;
invalidate();
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
try {
if (captionLayout != null && userNameLength == length()) {
Paint paint = getPaint();
int oldColor = getPaint().getColor();
paint.setColor(hintColor);
canvas.save();
canvas.translate(xOffset, yOffset);
captionLayout.draw(canvas);
canvas.restore();
paint.setColor(oldColor);
}
} catch (Exception e) {
FileLog.e(e);
}
}
2019-05-14 14:08:05 +02:00
@Override
public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) {
super.onInitializeAccessibilityNodeInfo(info);
if (!TextUtils.isEmpty(caption)) {
if (Build.VERSION.SDK_INT >= 26)
info.setHintText(caption);
else
info.setText(info.getText()+", "+caption);
}
}
2017-03-31 01:58:05 +02:00
}