01: /*
02: * Copyright 2005-2008 Kirill Grouchnikov, based on work by
03: * Sun Microsystems, Inc. All rights reserved.
04: *
05: * This library is free software; you can redistribute it and/or
06: * modify it under the terms of the GNU Lesser General Public
07: * License as published by the Free Software Foundation; either
08: * version 2.1 of the License, or (at your option) any later version.
09: *
10: * This library is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: * Lesser General Public License for more details.
14: *
15: * You should have received a copy of the GNU Lesser General Public
16: * License along with this library; if not, write to the Free Software
17: * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18: */
19: package docrobot;
20:
21: import java.awt.BorderLayout;
22: import java.awt.GridLayout;
23:
24: import javax.swing.*;
25:
26: import org.jdesktop.swingx.JXTitledPanel;
27: import org.jvnet.substance.skin.SubstanceBusinessBlackSteelLookAndFeel;
28:
29: public class TitledPanelFrame extends JFrame {
30: public TitledPanelFrame() {
31: super ("JXTitledPanel example");
32:
33: this .setLayout(new BorderLayout());
34:
35: this .add(new JXTitledPanel("Left panel"), BorderLayout.WEST);
36: JPanel center = new JPanel(new GridLayout(2, 1, 0, 0));
37: center.add(new JXTitledPanel("Top panel"));
38: center.add(new JXTitledPanel("Bottom panel"));
39: this .add(center, BorderLayout.CENTER);
40:
41: this .setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
42: this .setSize(500, 350);
43: this .setLocationRelativeTo(null);
44: }
45:
46: public static void main(String[] args) throws Exception {
47: JFrame.setDefaultLookAndFeelDecorated(true);
48: UIManager
49: .setLookAndFeel(new SubstanceBusinessBlackSteelLookAndFeel());
50: // UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
51: SwingUtilities.invokeLater(new Runnable() {
52: public void run() {
53: new TitledPanelFrame().setVisible(true);
54: }
55: });
56: }
57: }
|