Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(574)

Unified Diff: chrome/android/testshell/java/src/org/chromium/chrome/testshell/TestShellToolbar.java

Issue 10968003: Add rendering support to the TestShell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed nits, rebased. Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/testshell/java/src/org/chromium/chrome/testshell/TestShellToolbar.java
diff --git a/chrome/android/testshell/java/src/org/chromium/chrome/testshell/TestShellToolbar.java b/chrome/android/testshell/java/src/org/chromium/chrome/testshell/TestShellToolbar.java
new file mode 100644
index 0000000000000000000000000000000000000000..8ad65529f6c21578d134624018a76b2eef4dc493
--- /dev/null
+++ b/chrome/android/testshell/java/src/org/chromium/chrome/testshell/TestShellToolbar.java
@@ -0,0 +1,150 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package org.chromium.chrome.testshell;
+
+import android.content.Context;
+import android.graphics.drawable.ClipDrawable;
+import android.text.TextUtils;
+import android.util.AttributeSet;
+import android.view.KeyEvent;
+import android.view.View;
+import android.view.View.OnClickListener;
+import android.view.inputmethod.EditorInfo;
+import android.view.inputmethod.InputMethodManager;
+import android.widget.EditText;
+import android.widget.ImageButton;
+import android.widget.LinearLayout;
+import android.widget.TextView;
+import android.widget.TextView.OnEditorActionListener;
+
+import org.chromium.chrome.browser.TabBase;
+import org.chromium.content.browser.LoadUrlParams;
+
+/**
+ * A Toolbar {@link View} that shows the URL and navigation buttons.
+ */
+public class TestShellToolbar extends LinearLayout {
+ private static final long COMPLETED_PROGRESS_TIMEOUT_MS = 200;
+
+ private Runnable mClearProgressRunnable = new Runnable() {
+ @Override
+ public void run() {
+ mProgressDrawable.setLevel(0);
+ }
+ };
+
+ private EditText mUrlTextView;
+ private ImageButton mPrevButton;
+ private ImageButton mNextButton;
+
+ private ClipDrawable mProgressDrawable;
+
+ private TabBase mTab;
+
+ /**
+ * @param context The Context the view is running in.
+ * @param attrs The attributes of the XML tag that is inflating the view.
+ */
+ public TestShellToolbar(Context context, AttributeSet attrs) {
+ super(context, attrs);
+ }
+
+ /**
+ * The toolbar will visually represent the state of {@code tab}.
+ * @param tab The TabBase that should be represented.
+ */
+ public void showTab(TabBase tab) {
+ mTab = tab;
+ mUrlTextView.setText(mTab.getContentView().getUrl());
+ }
+
+ /**
+ * To be called when the URL of the represented {@link TabBase} updates.
+ *
+ * @param url The new URL of the currently represented {@link TabBase}.
+ */
+ public void onUpdateUrl(String url) {
+ mUrlTextView.setText(url);
+ }
+
+ /**
+ * To be called when the load progress of the represented {@link TabBase} updates.
+ *
+ * @param progress The current load progress. Should be a number between 0 and 100.
+ */
+ public void onLoadProgressChanged(int progress) {
+ removeCallbacks(mClearProgressRunnable);
+ mProgressDrawable.setLevel((int) (100.0 * progress));
+ if (progress == 100) postDelayed(mClearProgressRunnable, COMPLETED_PROGRESS_TIMEOUT_MS);
+ }
+
+ @Override
+ protected void onFinishInflate() {
+ super.onFinishInflate();
+
+ mProgressDrawable = (ClipDrawable) findViewById(R.id.toolbar).getBackground();
+ initializeUrlField();
+ initializeNavigationButtons();
+ }
+
+ private void initializeUrlField() {
+ mUrlTextView = (EditText) findViewById(R.id.url);
+ mUrlTextView.setOnEditorActionListener(new OnEditorActionListener() {
+ @Override
+ public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
+ if ((actionId != EditorInfo.IME_ACTION_GO) && (event == null ||
+ event.getKeyCode() != KeyEvent.KEYCODE_ENTER ||
+ event.getKeyCode() != KeyEvent.ACTION_UP)) {
+ return false;
+ }
+
+ mTab.loadUrlWithSanitization(mUrlTextView.getText().toString());
+ mUrlTextView.clearFocus();
+ setKeyboardVisibilityForUrl(false);
+ mTab.getContentView().requestFocus();
+ return true;
+ }
+ });
+ mUrlTextView.setOnFocusChangeListener(new OnFocusChangeListener() {
+ @Override
+ public void onFocusChange(View v, boolean hasFocus) {
+ setKeyboardVisibilityForUrl(hasFocus);
+ mNextButton.setVisibility(hasFocus ? GONE : VISIBLE);
+ mPrevButton.setVisibility(hasFocus ? GONE : VISIBLE);
+ if (!hasFocus) {
+ mUrlTextView.setText(mTab.getContentView().getUrl());
+ }
+ }
+ });
+ }
+
+ private void initializeNavigationButtons() {
+ mPrevButton = (ImageButton) findViewById(R.id.prev);
+ mPrevButton.setOnClickListener(new OnClickListener() {
+ @Override
+ public void onClick(View arg0) {
+ if (mTab.getContentView().canGoBack()) mTab.getContentView().goBack();
+ }
+ });
+
+ mNextButton = (ImageButton) findViewById(R.id.next);
+ mNextButton.setOnClickListener(new OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ if (mTab.getContentView().canGoForward()) mTab.getContentView().goForward();
+ }
+ });
+ }
+
+ private void setKeyboardVisibilityForUrl(boolean visible) {
+ InputMethodManager imm = (InputMethodManager) getContext().getSystemService(
+ Context.INPUT_METHOD_SERVICE);
+ if (visible) {
+ imm.showSoftInput(mUrlTextView, InputMethodManager.SHOW_IMPLICIT);
+ } else {
+ imm.hideSoftInputFromWindow(mUrlTextView.getWindowToken(), 0);
+ }
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698