/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Copyright @ 2015 Atlassian Pty Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.java.sip.communicator.service.customcontactactions;
import net.java.sip.communicator.service.protocol.*;
/**
* A custom contact action, used to define an action that can be represented in
* the contact list entry in the user interface.
*
* @author Damian Minkov
* @author Yana Stamcheva
*/
public interface ContactAction<T>
{
/**
* Invoked when an action occurs.
*
* @param actionSource the source of the action
* @param x the x coordinate of the action
* @param y the y coordinate of the action
*/
public void actionPerformed(T actionSource, int x, int y)
throws OperationFailedException;
/**
* The icon used by the UI to visualize this action.
* @return the button icon.
*/
public byte[] getIcon();
/**
* The icon used by the UI to visualize the roll over state of the button.
* @return the button icon.
*/
public byte[] getRolloverIcon();
/**
* The icon used by the UI to visualize the pressed state of the button
* @return the button icon.
*/
public byte[] getPressedIcon();
/**
* Returns the tool tip text of the component to create for this contact
* action.
*
* @return the tool tip text of the component to create for this contact
* action
*/
public String getToolTipText();
/**
* Indicates if this action is visible for the given <tt>actionSource</tt>.
*
* @param actionSource the action source for which we're verifying the
* action.
* @return <tt>true</tt> if the action should be visible for the given
* <tt>actionSource</tt>, <tt>false</tt> - otherwise
*/
public boolean isVisible(T actionSource);
}