mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
73 lines
2.1 KiB
Java
73 lines
2.1 KiB
Java
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko.menu;
|
|
|
|
import org.mozilla.gecko.NewTabletUI;
|
|
import org.mozilla.gecko.R;
|
|
|
|
import android.content.Context;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.util.AttributeSet;
|
|
import android.widget.ImageButton;
|
|
|
|
public class MenuItemActionBar extends ImageButton
|
|
implements GeckoMenuItem.Layout {
|
|
private static final String LOGTAG = "GeckoMenuItemActionBar";
|
|
|
|
public MenuItemActionBar(Context context) {
|
|
this(context, null);
|
|
}
|
|
|
|
public MenuItemActionBar(Context context, AttributeSet attrs) {
|
|
// TODO: Remove this branch (and associated attr) when old tablet is removed.
|
|
this(context, attrs, (NewTabletUI.isEnabled(context)) ?
|
|
R.attr.menuItemActionBarStyleNewTablet : R.attr.menuItemActionBarStyle);
|
|
}
|
|
|
|
public MenuItemActionBar(Context context, AttributeSet attrs, int defStyle) {
|
|
super(context, attrs, defStyle);
|
|
}
|
|
|
|
@Override
|
|
public void initialize(GeckoMenuItem item) {
|
|
if (item == null)
|
|
return;
|
|
|
|
setIcon(item.getIcon());
|
|
setTitle(item.getTitle());
|
|
setEnabled(item.isEnabled());
|
|
setId(item.getItemId());
|
|
}
|
|
|
|
void setIcon(Drawable icon) {
|
|
if (icon == null) {
|
|
setVisibility(GONE);
|
|
} else {
|
|
setVisibility(VISIBLE);
|
|
setImageDrawable(icon);
|
|
}
|
|
}
|
|
|
|
void setIcon(int icon) {
|
|
setIcon((icon == 0) ? null : getResources().getDrawable(icon));
|
|
}
|
|
|
|
void setTitle(CharSequence title) {
|
|
// set accessibility contentDescription here
|
|
setContentDescription(title);
|
|
}
|
|
|
|
@Override
|
|
public void setEnabled(boolean enabled) {
|
|
super.setEnabled(enabled);
|
|
setColorFilter(enabled ? 0 : 0xFF999999);
|
|
}
|
|
|
|
@Override
|
|
public void setShowIcon(boolean show) {
|
|
// Do nothing.
|
|
}
|
|
}
|