Compound dockable window : Dockable « Swing Components « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Swing Components » Dockable 




Compound dockable window
Compound dockable window

package net.eleritec.docking.demos;

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Insets;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.border.LineBorder;

import net.eleritec.docking.Dockable;
import net.eleritec.docking.DockableAdapter;
import net.eleritec.docking.DockingManager;
import net.eleritec.docking.DockingPort;
import net.eleritec.docking.defaults.DefaultDockingPort;

public class CompoundDemo extends JPanel {
  private JLabel titlebar;
  private Dockable dockableImpl;
  
  public CompoundDemo(String title) {
    super();
    titlebar = createTitlebar(" " + title);
    add(titlebar);
    setBorder(new LineBorder(Color.black));
    dockableImpl = new DockableImpl();
  }
  
  private JLabel createTitlebar(String title) {
    JLabel lbl = new JLabel(title);
    lbl.setForeground(Color.white);
    lbl.setBackground(Color.blue);
    lbl.setOpaque(true);
    return lbl;
  }
  
  public void doLayout() {
    Insets in = getInsets();
    titlebar.setBounds(in.left, in.top, getWidth()-in.left-in.right, 25);
  }
  
  private CompoundDemo getThis() {
    return this;
  }
  
  
  private Dockable getDockable() {
    return dockableImpl;
  }
  
  private class DockableImpl extends DockableAdapter {
    public Component getDockable() {
      return getThis();
    }
    public String getDockableDesc() {
      return titlebar.getText().trim();
    }

    public Component getInitiator() {
      // the titlebar will the the 'hot' component that initiates dragging
      return titlebar;
    }
  }
  
  private static JPanel createContentPane() {
    JPanel p = new JPanel(new BorderLayout(55));
    p.add(buildDockingPort("North"), BorderLayout.NORTH);
    p.add(buildDockingPort("South"), BorderLayout.SOUTH);
    p.add(buildDockingPort("East"), BorderLayout.EAST);
    p.add(buildDockingPort("West"), BorderLayout.WEST);
    p.add(createDockingPort(), BorderLayout.CENTER);
    return p;
  }
  
  private static DefaultDockingPort buildDockingPort(String desc) {
    // create the DockingPort
    DefaultDockingPort port = createDockingPort();
    
    // create the Dockable panel
    CompoundDemo cd = new CompoundDemo(desc);
    DockingManager.registerDockable(cd.getDockable());

    // dock the panel and return the DockingPort
    port.dock(cd.getDockable(), DockingPort.CENTER_REGION);
    return port;
  }
  
  private static DefaultDockingPort createDockingPort() {
    DefaultDockingPort port = new DefaultDockingPort();
    port.setBackground(Color.gray);
    port.setPreferredSize(new Dimension(100100));
    return port;
  }
  
  public static void main(String[] args) {
    JFrame f = new JFrame("Compound Docking Demo");
    f.setContentPane(createContentPane());
    f.setSize(600400);
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.setVisible(true);
  }
}


           
       














dockingSrc-0.3.zip( 57 k)
Related examples in the same category
1.Swing dockable windowSwing dockable window
2.Simple demo for dockable windowsSimple demo for dockable windows
3.Cursor indication for dockable componentCursor indication for dockable component
4.SplitPane and dockable componentSplitPane and dockable component
5.Elegant Dockable frameworkElegant Dockable framework
6.Add border for dockable componentAdd border for dockable component
7.TabbedPane and dockable component 2TabbedPane and dockable component 2
8.Swing dock framework
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.