package me.texx.Texx import android.content.Context import android.graphics.Color.RED import android.graphics.Typeface import android.net.Uri import android.os.Bundle import android.support.v4.content.ContextCompat import android.support.v7.app.AppCompatActivity import android.view.View import android.view.Window import android.view.WindowManager import android.view.inputmethod.EditorInfo import android.view.inputmethod.InputMethodManager import daio.io.dresscode.dressCodeName import daio.io.dresscode.matchDressCode import ja.burhanrashid52.photoeditor.OnPhotoEditorListener import ja.burhanrashid52.photoeditor.PhotoEditor import ja.burhanrashid52.photoeditor.PhotoEditorView import ja.burhanrashid52.photoeditor.ViewType import kotlinx.android.synthetic.main.activity_photo_editor.* import me.texx.Texx.util.ThemeUtil.getThemeName /** * Activity which will be shown after you've taken a picture * Previews the taken picture and posts it if you want */ class PhotoEditorActivity : AppCompatActivity() { /** * Set initial configuration */ override fun onCreate(savedInstanceState: Bundle?) { matchDressCode() super.onCreate(savedInstanceState) dressCodeName = getThemeName(this) requestWindowFeature(Window.FEATURE_NO_TITLE) window.setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN) setContentView(R.layout.activity_photo_editor) initPhotoEditor() } private var currentlyDrawing = false private var currentlyTyping = false private var typingColor = RED private fun initPhotoEditor() { val filepath = intent.getStringExtra("filepath") val imageEditorView = findViewById(R.id.imageEditor) imageEditorView.source.setImageURI(Uri.parse(filepath)) val photoEditor = PhotoEditor.Builder(this, imageEditorView) .setPinchTextScalable(true) .setDefaultTextTypeface(Typeface.DEFAULT) .build() setButtonListeners(photoEditor) } private fun setButtonListeners(photoEditor: PhotoEditor) { // undo button undoButton.setOnClickListener { photoEditor.undo() } // redo button redoButton.setOnClickListener { photoEditor.redo() } // draw button drawButton.setOnClickListener { currentlyDrawing = !currentlyDrawing photoEditor.setBrushDrawingMode(currentlyDrawing) if (currentlyDrawing) colorSeekbar.visibility = View.VISIBLE else { colorSeekbar.visibility = View.GONE drawButton.background = ContextCompat.getDrawable(this, R.drawable.ic_mode_edit_white_24dp) } } // type button typeButton.setOnClickListener { currentlyTyping = !currentlyTyping if (currentlyTyping) showTextEditor("") else hideTextEditor() } // text editing "view" for on photo typing editText.setOnEditorActionListener { _, actionId, _ -> if (actionId == EditorInfo.IME_ACTION_DONE) { photoEditor.addText(editText.text.toString(), typingColor) editText.visibility = View.GONE } return@setOnEditorActionListener true } // text editing box on photo (long click) photoEditor.setOnPhotoEditorListener(object : OnPhotoEditorListener { override fun onEditTextChangeListener(rootView: View, text: String, colorCode: Int) { currentlyTyping = !currentlyTyping if (!currentlyTyping) showTextEditor("") // TODO: Fix editing of text else hideTextEditor() } override fun onAddViewListener(viewType: ViewType, numberOfAddedViews: Int) {} override fun onRemoveViewListener(numberOfAddedViews: Int) {} override fun onRemoveViewListener(viewType: ViewType, numberOfAddedViews: Int) {} override fun onStartViewChangeListener(viewType: ViewType) {} override fun onStopViewChangeListener(viewType: ViewType) {} }) // color seekbar colorSeekbar.setOnColorChangeListener { _, _, color -> if (currentlyDrawing) { photoEditor.brushColor = color drawButton.setBackgroundColor(color) } else if (currentlyTyping) { typingColor = color typeButton.setBackgroundColor(color) } } } private fun showTextEditor(text: String) { colorSeekbar.visibility = View.VISIBLE editText.visibility = View.VISIBLE editText.imeOptions = EditorInfo.IME_ACTION_DONE editText.setText(text) editText.requestFocusFromTouch() // set focus val inputManager = this@PhotoEditorActivity.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager inputManager.showSoftInput(editText, 0) } private fun hideTextEditor() { typeButton.background = ContextCompat.getDrawable(this, R.drawable.ic_text_fields_white_24dp) colorSeekbar.visibility = View.GONE editText.visibility = View.GONE } }