Package org.jdesktop.swingx

Examples of org.jdesktop.swingx.JXTaskPaneContainer


    * @author andreas.pörtner
    */
  @SuppressWarnings("deprecation")
  void initializeUI() {

    JXTaskPaneContainer tpc = new JXTaskPaneContainer();

    _statisticPanel = new StatisticPanel();
    _graphicViewPanel = new DiagramPanel();
    _top10TablePanel = new Top10ListPanel();

    JXTaskPane p = new JXTaskPane("Statistik");
    p.add(_statisticPanel);
    p.setCollapsed(false);

    JXTaskPane p2 = new JXTaskPane("Diagramm");
    p2.add(_graphicViewPanel);
    p2.setCollapsed(true);

    JXTaskPane p3 = new JXTaskPane("Top 10 Liste");
    p3.add(_top10TablePanel);
    p3.setCollapsed(true);

    tpc.add(p);
    tpc.add(p2);
    tpc.add(p3);

    // add the task-panes to a scrollpane and allow
    // it to scroll vertically only.
    JScrollPane scrollPane = new JScrollPane(tpc,
        JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
View Full Code Here


    public class ScriptMenu {
//        private JTaskPane taskPane = new JTaskPane();
        private JXTaskPaneContainer taskPane;
       
        private ScriptMenu() {
            taskPane = new JXTaskPaneContainer();
            taskPane.applyComponentOrientation(getComponentOrientation());
        }
View Full Code Here

        return this.modificado;
    }
   
    private void initComponents() {
        setTitle("Configuraci�n");
        JXTaskPaneContainer taskPaneContainer = new JXTaskPaneContainer();
        taskPanePrincipal.setTitle("B�sico");
        taskPanePrincipal.add(new JXHyperlink(new SampleAction("Par�metros","Establecer par�metros aplicaci�n","param")));
        taskPanePrincipal.add(new JXHyperlink(new SampleAction("Palabras clave", "Palabras clave y colores","claves")));
       
        taskPaneMenu.setTitle("Menus");
        taskPaneMenu.add(new JXHyperlink(new SampleAction("Men� explorador", "Edici�n del menu de usuario","menu")));
       
        JXTaskPane taskPaneAyuda = new JXTaskPane();
        taskPaneAyuda.setTitle("Ayuda");
        taskPaneAyuda.add(new JXHyperlink(new SampleAction("Menus", "Configuraci�n menus","help:Menus")) );
        taskPaneAyuda.add(new JXHyperlink(new SampleAction("Comandos", "Configuraci�n de comandos","help:Comandos")));
        taskPaneAyuda.add(new JXHyperlink(new SampleAction("About", "Ayuda sobre explorador","about")));
       
       
       
       
       
        taskPaneContainer.add(taskPanePrincipal);
        taskPaneContainer.add(taskPaneMenu);
        taskPaneContainer.add(taskPaneAyuda);
       
        //taskPaneContainer.add(detailsPane);
        add(new JScrollPane(taskPaneContainer), BorderLayout.EAST);
        showPanelPalabrasClave();
        add(panelDatos, BorderLayout.CENTER);
View Full Code Here

    setContentPane(this.contentPane);
   
    this.tabbedPane = new JTabbedPane(JTabbedPane.TOP);
    this.contentPane.add(this.tabbedPane, BorderLayout.CENTER);
   
    this.taskPaneContainer = new JXTaskPaneContainer();
    this.contentPane.add(this.taskPaneContainer, BorderLayout.EAST);
   
   
    this.taskPane = new JXTaskPane();
    this.taskPane.setTitle(BUNDLE_MAIN_FRAME.getString("MainAppFrame.taskPane.title")); //$NON-NLS-1$
View Full Code Here

  }


  @Override
  public Component buildMainPanel() {   
    setMainPanel(new JXTaskPaneContainer());
    getMainPanel().setLayout(new BorderLayout(0, 10));
   
    JToolBar searchToolBar = new JToolBar();

    taskpane = new JXTaskPane();
View Full Code Here

    return this.table;
  }
 
  @Override
  public Component buildMainPanel(){
    mainPanel = new JXTaskPaneContainer();
   
    mainPanel.setLayout(new BorderLayout(0, 10));
   
    this.tableMouseListener = new TableMouseListener(this);
   
View Full Code Here

    return this.table;
  }
 
  @Override
  public Component buildMainPanel(){
    mainPanel = new JXTaskPaneContainer();
   
    mainPanel.setLayout(new BorderLayout(0, 10));
   
    this.tableMouseListener = new TableMouseListener(this);
   
View Full Code Here

    return this.table;
  }

  public Component buildMainPanel() {

    mainPanel = new JXTaskPaneContainer();
    mainPanel.setLayout(new BorderLayout(0, 10));

    taskpane = new JXTaskPane();
    taskpane.setTitle("Informa��es");
    taskpane.setIcon(IconFactory.createAbout());
View Full Code Here

   * Constructor.
   */
  public TaskPaneDemo() {
    super(new BorderLayout());

    tpc = new JXTaskPaneContainer();

    // "System" GROUP
    JXTaskPane systemGroup = new JXTaskPane();
    systemGroup.setTitle("System");
    systemGroup.setIcon(new ImageIcon("MS.JPG"));
View Full Code Here

    };
  }

  @Override
  public Component buildMainPanel() {   
    setMainPanel(new JXTaskPaneContainer());
    getMainPanel().setLayout(new BorderLayout(0, 10));
   
    JToolBar searchToolBar = new JToolBar();

    taskpane = new JXTaskPane();
View Full Code Here

TOP

Related Classes of org.jdesktop.swingx.JXTaskPaneContainer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.