blob: 7250fcb16456239498b008d20e39111a65ce517e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.impl.gui.customcontrols;
import java.awt.*;
import net.java.sip.communicator.plugin.desktoputil.*;
/**
* The <tt>MsgToolbarButton</tt> is a <tt>SIPCommButton</tt> that has
* specific background and rollover images. It is used in the chat window
* toolbar.
*
* @author Yana Stamcheva
*/
public class ChatToolbarButton extends SIPCommButton
{
private static final long serialVersionUID = 0L;
/**
* Creates an instance of <tt>MsgToolbarButton</tt>.
* @param iconImage The icon to display on this button.
*/
public ChatToolbarButton(Image iconImage)
{
super(null, iconImage);
this.setPreferredSize(new Dimension(25, 25));
}
}
|