Back to project page ParticlePlay.
The source code is released under:
GNU General Public License
If you think the Android project ParticlePlay listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.droidinteractive.particleplay.game; /*/*from w w w . j av a 2s . com*/ * Copyright (c) 2010 Ragdoll Games * Copyright (c) 2010-2014 Droid Interactive * * This file is part of Particle Play. * * Particle Play is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Particle Play is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Particle Play. If not, see <http://www.gnu.org/licenses/>. */ import android.graphics.drawable.Drawable; import android.graphics.Bitmap; /** * Action item, displayed as menu with icon and text. */ public class ActionItem { private Drawable icon; private Bitmap thumb; private String title; private int actionId = -1; private boolean selected; private boolean sticky; /** * Constructor * * @param actionId Action id for case statements * @param title Title * @param icon Icon to use */ public ActionItem(int actionId, String title, Drawable icon) { this.title = title; this.icon = icon; this.actionId = actionId; } /** * Constructor */ public ActionItem() { this(-1, null, null); } /** * Constructor * * @param actionId Action id of the item * @param title Text to show for the item */ public ActionItem(int actionId, String title) { this(actionId, title, null); } /** * Constructor * * @param icon {@link Drawable} action icon */ public ActionItem(Drawable icon) { this(-1, null, icon); } /** * Constructor * * @param actionId Action ID of item * @param icon {@link Drawable} action icon */ public ActionItem(int actionId, Drawable icon) { this(actionId, null, icon); } /** * Set action title * * @param title action title */ public void setTitle(String title) { this.title = title; } /** * Get action title * * @return action title */ public String getTitle() { return this.title; } /** * Set action icon * * @param icon {@link Drawable} action icon */ public void setIcon(Drawable icon) { this.icon = icon; } /** * Get action icon * @return {@link Drawable} action icon */ public Drawable getIcon() { return this.icon; } /** * Set action id * * @param actionId Action id for this action */ public void setActionId(int actionId) { this.actionId = actionId; } /** * @return Our action id */ public int getActionId() { return actionId; } /** * Set sticky status of button * * @param sticky true for sticky, pop up sends event but does not disappear */ public void setSticky(boolean sticky) { this.sticky = sticky; } /** * @return true if button is sticky, menu stays visible after press */ public boolean isSticky() { return sticky; } /** * Set selected flag; * * @param selected Flag to indicate the item is selected */ public void setSelected(boolean selected) { this.selected = selected; } /** * Check if item is selected * * @return true or false */ public boolean isSelected() { return this.selected; } /** * Set thumb * * @param thumb Thumb image */ public void setThumb(Bitmap thumb) { this.thumb = thumb; } /** * Get thumb image * * @return Thumb image */ public Bitmap getThumb() { return this.thumb; } }