HomeSort by relevance Sort by last modified time
    Searched refs:Toolbar (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/remoting/webapp/
toolbar.js 16 * @param {HTMLElement} toolbar The HTML element representing the tool-bar.
19 remoting.Toolbar = function(toolbar) {
24 this.toolbar_ = toolbar;
29 this.stub_ = /** @type {HTMLElement} */toolbar.querySelector('.toolbar-stub');
46 window.addEventListener('mousemove', remoting.Toolbar.onMouseMove, false);
60 registerEventListener('toolbar-disconnect', 'click', remoting.disconnect);
61 registerEventListener('toolbar-stub', 'click',
62 function() { remoting.toolbar.toggle(); })
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
BarProp.cpp 56 case Toolbar:
BarProp.h 44 enum Type { Locationbar, Menubar, Personalbar, Scrollbars, Statusbar, Toolbar };
  /frameworks/base/core/java/com/android/internal/widget/
ToolbarWidgetWrapper.java 42 import android.widget.Toolbar;
49 * Internal class used to interact with the Toolbar widget without
52 * <p>ToolbarWidgetWrapper manages the differences between Toolbar and ActionBarView
65 private Toolbar mToolbar;
89 public ToolbarWidgetWrapper(Toolbar toolbar, boolean style) {
90 this(toolbar, style, R.string.action_bar_up_description);
93 public ToolbarWidgetWrapper(Toolbar toolbar, boolean style,
95 mToolbar = toolbar;
    [all...]
ActionBarOverlayLayout.java 43 import android.widget.Toolbar;
584 } else if (view instanceof Toolbar) {
585 return ((Toolbar) view).getWrapper();
587 throw new IllegalStateException("Can't make a decor toolbar out of " +
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ToolbarWidgetWrapper.java 32 import android.support.v7.widget.Toolbar;
45 * Internal class used to interact with the Toolbar widget without
48 * <p>ToolbarWidgetWrapper manages the differences between Toolbar and ActionBarView
61 private Toolbar mToolbar;
87 public ToolbarWidgetWrapper(Toolbar toolbar, boolean style) {
88 this(toolbar, style, R.string.abc_action_bar_up_description,
92 public ToolbarWidgetWrapper(Toolbar toolbar, boolean style,
94 mToolbar = toolbar;
    [all...]
ActionBarOverlayLayout.java 36 import android.support.v7.widget.Toolbar;
591 } else if (view instanceof Toolbar) {
592 return ((Toolbar) view).getWrapper();
594 throw new IllegalStateException("Can't make a decor toolbar out of " +
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
ActionBarDrawerToggle.java 30 import android.support.v7.widget.Toolbar;
126 // used in toolbar mode when DrawerToggle is disabled
155 * Construct a new ActionBarDrawerToggle with a Toolbar.
158 * the Toolbar's navigation icon will be set to a custom drawable. Using this constructor
159 * will set Toolbar's navigation click listener to toggle the drawer when it is clicked.
168 * setting the Toolbar as the ActionBar of your activity.
171 * @param toolbar The toolbar to use if you have an independent Toolbar.
179 Toolbar toolbar, @StringRes int openDrawerContentDescRes
    [all...]
ActionBarActivityDelegate.java 33 import android.support.v7.widget.Toolbar;
133 abstract void setSupportActionBar(Toolbar toolbar);
ActionBarActivity.java 34 import android.support.v7.widget.Toolbar;
77 * Set a {@link android.widget.Toolbar Toolbar} to act as the {@link ActionBar} for this
81 * an {@link ActionBar} object that can be used to control the given toolbar as if it were
82 * a traditional window decor action bar. The toolbar's menu will be populated with the
86 * <p>In order to use a Toolbar within the Activity's window content the application
89 * @param toolbar Toolbar to set as the Activity's action bar
91 public void setSupportActionBar(@Nullable Toolbar toolbar) {
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/image_editor/
image_adjust.js 146 * @param {ImageEditor.Toolbar} toolbar The toolbar to populate.
148 ImageEditor.Mode.Exposure.prototype.createTools = function(toolbar) {
149 toolbar.addRange('brightness', 'GALLERY_BRIGHTNESS', -1, 0, 1, 100);
150 toolbar.addRange('contrast', 'GALLERY_CONTRAST', -1, 0, 1, 100);
167 * @param {ImageEditor.Toolbar} toolbar The toolbar to populate.
169 ImageEditor.Mode.Autofix.prototype.createTools = function(toolbar) {
    [all...]
image_editor.js 49 this.mainToolbar_ = new ImageEditor.Toolbar(
50 DOMContainers.toolbar, displayStringFunction);
52 this.modeToolbar_ = new ImageEditor.Toolbar(
256 * Handle the toolbar controls update.
330 * @param {ImageEditor.Toolbar} toolbar The toolbar to populate.
332 ImageEditor.Mode.prototype.createTools = function(toolbar) {};
407 * Populate the toolbar.
893 * A toolbar for the ImageEditor
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
image_adjust.js 146 * @param {ImageEditor.Toolbar} toolbar The toolbar to populate.
148 ImageEditor.Mode.Exposure.prototype.createTools = function(toolbar) {
149 toolbar.addRange('brightness', 'GALLERY_BRIGHTNESS', -1, 0, 1, 100);
150 toolbar.addRange('contrast', 'GALLERY_CONTRAST', -1, 0, 1, 100);
167 * @param {ImageEditor.Toolbar} toolbar The toolbar to populate.
169 ImageEditor.Mode.Autofix.prototype.createTools = function(toolbar) {
    [all...]
image_editor.js 49 this.mainToolbar_ = new ImageEditor.Toolbar(
50 DOMContainers.toolbar, displayStringFunction);
52 this.modeToolbar_ = new ImageEditor.Toolbar(
256 * Handle the toolbar controls update.
330 * @param {ImageEditor.Toolbar} toolbar The toolbar to populate.
332 ImageEditor.Mode.prototype.createTools = function(toolbar) {};
407 * Populate the toolbar.
893 * A toolbar for the ImageEditor
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
ToolbarActionBar.java 34 import android.widget.Toolbar;
43 private Toolbar mToolbar;
60 private final Toolbar.OnMenuItemClickListener mMenuClicker =
61 new Toolbar.OnMenuItemClickListener() {
68 public ToolbarActionBar(Toolbar toolbar, CharSequence title, Window.Callback windowCallback) {
69 mToolbar = toolbar;
70 mDecorToolbar = new ToolbarWidgetWrapper(toolbar, false);
73 toolbar.setOnMenuItemClickListener(mMenuClicker);
130 // If the nav button on a Toolbar is present, it's enabled. No-op
    [all...]
WindowDecorActionBar.java 22 import android.widget.Toolbar;
235 } else if (view instanceof Toolbar) {
236 return ((Toolbar) view).getWrapper();
238 throw new IllegalStateException("Can't make a decor toolbar out of " +
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
ToolbarActionBar.java 35 import android.support.v7.widget.Toolbar;
53 private Toolbar mToolbar;
73 private final Toolbar.OnMenuItemClickListener mMenuClicker =
74 new Toolbar.OnMenuItemClickListener() {
81 public ToolbarActionBar(Toolbar toolbar, CharSequence title, Window window,
83 mToolbar = toolbar;
84 mDecorToolbar = new ToolbarWidgetWrapper(toolbar, false);
87 toolbar.setOnMenuItemClickListener(mMenuClicker);
146 // If the nav button on a Toolbar is present, it's enabled. No-op
    [all...]
WindowDecorActionBar.java 49 import android.support.v7.widget.Toolbar;
245 } else if (view instanceof Toolbar) {
246 return ((Toolbar) view).getWrapper();
248 throw new IllegalStateException("Can't make a decor toolbar out of " +
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
ActionBarAdapter.java 37 import android.widget.Toolbar;
91 private final Toolbar mToolbar;
106 View portraitTabs, View landscapeTabs, Toolbar toolbar) {
113 mToolbar = toolbar;
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MailActivity.java 32 import android.support.v7.widget.Toolbar;
173 final Toolbar toolbar = (Toolbar) findViewById(R.id.mail_toolbar); local
174 // Toolbar is currently only used on phone layout, so this is expected to be null
176 if (toolbar != null) {
177 setSupportActionBar(toolbar);
178 toolbar.setNavigationOnClickListener(mController.getNavigationViewClickListener());
  /frameworks/base/core/java/android/widget/
Toolbar.java 53 * A standard toolbar for use within application content.
55 * <p>A Toolbar is a generalization of {@link android.app.ActionBar action bars} for use
58 * a Toolbar may be placed at any arbitrary level of nesting within a view hierarchy.
59 * An application may choose to designate a Toolbar as the action bar for an Activity
60 * using the {@link android.app.Activity#setActionBar(Toolbar) setActionBar()} method.</p>
62 * <p>Toolbar supports a more focused feature set than ActionBar. From start to end, a toolbar
68 * to access other navigational destinations within the container of the Toolbar and
69 * its signified content or otherwise leave the current context signified by the Toolbar.</li>
72 * <li><em>A title and subtitle.</em> The title should be a signpost for the Toolbar's curren
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
Toolbar.java 65 * A standard toolbar for use within application content.
67 * <p>A Toolbar is a generalization of {@link ActionBar action bars} for use
70 * a Toolbar may be placed at any arbitrary level of nesting within a view hierarchy.
71 * An application may choose to designate a Toolbar as the action bar for an Activity
72 * using the {@link android.support.v7.app.ActionBarActivity#setSupportActionBar(Toolbar)
75 * <p>Toolbar supports a more focused feature set than ActionBar. From start to end, a toolbar
81 * to access other navigational destinations within the container of the Toolbar and
82 * its signified content or otherwise leave the current context signified by the Toolbar.</li>
85 * <li><em>A title and subtitle.</em> The title should be a signpost for the Toolbar's curren
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DocumentsActivity.java 74 import android.widget.Toolbar;
105 private Toolbar mToolbar;
108 private Toolbar mRootsToolbar;
169 mToolbar = (Toolbar) findViewById(R.id.toolbar);
176 mRootsToolbar = (Toolbar) findViewById(R.id.roots_toolbar);
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
nav_description.js 31 * that were crossed into, like "Toolbar" or "Menu Bar" or "List with
  /frameworks/base/core/java/android/app/
ActionBar.java 36 import android.widget.Toolbar;
43 * A primary toolbar within the activity that may display the activity title, application-level
55 * Toolbar widget within the application layout. The application may signal to the Activity
56 * which Toolbar should be treated as the Activity's action bar. Activities that use this
107 * toolbar action bars. Consider using other
119 * toolbar action bars. Consider using other
130 * toolbar action bars. Consider using other
337 * toolbar action bars. Consider using other
350 * toolbar action bars. Consider using other
362 * toolbar action bars. Consider using othe
    [all...]

Completed in 1404 milliseconds

1 2