blob: 1afce04b8130f64122e61ebfdc2053ddf611191f (
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
35
36
37
38
39
40
41
42
43
44
45
46
|
/*
* 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.util.swing;
import javax.swing.*;
import net.java.sip.communicator.util.skin.*;
import net.java.sip.communicator.util.swing.plaf.*;
/**
* The SIPCommMenuBar is a <tt>JMenuBar</tt> without border decoration that can
* be used as a container for other components, like selector boxes that won't
* need a menu decoration.
*
* @author Yana Stamcheva
* @author Adam Netocny
*/
public class SIPCommMenuBar
extends JMenuBar
implements Skinnable
{
/**
* Serial version UID.
*/
private static final long serialVersionUID = 0L;
/**
* Creates an instance of <tt>SIPCommMenuBar</tt>.
*/
public SIPCommMenuBar()
{
loadSkin();
}
/**
* Reload UI defs.
*/
public void loadSkin()
{
this.setBorder(BorderFactory.createEmptyBorder());
this.setUI(new SIPCommMenuBarUI());
}
}
|