Package org.jdesktop.swingx

Examples of org.jdesktop.swingx.JXTaskPane


   
    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$
    this.taskPaneContainer.add(this.taskPane);
   
    this.hprlnkCustomersList = new JXHyperlink();
    this.hprlnkCustomersList.addActionListener(new ActionListener() {
      public void actionPerformed(final ActionEvent e) {
        doHprlnkCustomersListActionPerformed(e);
      }
    });
   
    this.hprlnkNewCustomer = new JXHyperlink();
    this.hprlnkNewCustomer.addActionListener(new ActionListener() {
      public void actionPerformed(final ActionEvent e) {
        doHprlnkNewCustomerActionPerformed(e);
      }
    });
    this.hprlnkNewCustomer.setText(BUNDLE_MAIN_FRAME.getString("MainAppFrame.hprlnkNewCustomer.text")); //$NON-NLS-1$
    this.taskPane.add(this.hprlnkNewCustomer, BorderLayout.NORTH);
    this.hprlnkCustomersList.setText(BUNDLE_MAIN_FRAME.getString("MainAppFrame.hprlnkCustomersList.text")); //$NON-NLS-1$
    this.taskPane.add(this.hprlnkCustomersList, BorderLayout.NORTH);
   
    this.taskPane_1 = new JXTaskPane();
    this.taskPane_1.setTitle(BUNDLE_MAIN_FRAME.getString("MainAppFrame.taskPane_1.title")); //$NON-NLS-1$
    this.taskPaneContainer.add(this.taskPane_1);
   
    this.hprlnkNewThoub = new JXHyperlink();
    this.hprlnkNewThoub.addActionListener(new ActionListener() {
View Full Code Here


    setMainPanel(new JXTaskPaneContainer());
    getMainPanel().setLayout(new BorderLayout(0, 10));
   
    JToolBar searchToolBar = new JToolBar();

    taskpane = new JXTaskPane();
    taskpane.setTitle("Par�metros");
    taskpane.setIcon(IconFactory.createAbout());
    taskpane.setLayout(new BorderLayout());
   
    JButton okButton = new JButton();
View Full Code Here

   
    this.tableMouseListener = new TableMouseListener(this);
   
    build();
   
    taskpane = new JXTaskPane();
    taskpane.setTitle("Informa��es");
    taskpane.setIcon(IconFactory.createAbout());
    taskpane.setLayout(new BorderLayout());
   
    panelHead = new SimpleInternalFrame("");
View Full Code Here

   
    this.tableMouseListener = new TableMouseListener(this);
   
    build();
   
    taskpane = new JXTaskPane();
    taskpane.setTitle("Informa��es");
    taskpane.setIcon(IconFactory.createAbout());
    taskpane.setLayout(new BorderLayout());
   
    panelHead = new SimpleInternalFrame("");
View Full Code Here

  public Component buildMainPanel() {

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

    taskpane = new JXTaskPane();
    taskpane.setTitle("Informa��es");
    taskpane.setIcon(IconFactory.createAbout());
    taskpane.setLayout(new BorderLayout());

    panelHead = new SimpleInternalFrame("");
View Full Code Here

    super(new BorderLayout());

    tpc = new JXTaskPaneContainer();

    // "System" GROUP
    JXTaskPane systemGroup = new JXTaskPane();
    systemGroup.setTitle("System");
    systemGroup.setIcon(new ImageIcon("MS.JPG"));
    systemGroup.add(new JButton("email"));
    systemGroup.add(new JButton("delete"));
    tpc.add(systemGroup);

    // "Office" GROUP
    JXTaskPane officeGroup = new JXTaskPane();
    officeGroup.setName("officeGroup");
    officeGroup.add(new JButton("write"));
    tpc.add(officeGroup);

    // "SEE ALSO" GROUP and ACTIONS
    JXTaskPane seeAlsoGroup = new JXTaskPane();
    seeAlsoGroup.setName("seeAlsoGroup");
    seeAlsoGroup.add(new JButton("exploreInternet"));
    JButton moreButton = new JButton("more");
    moreButton.addActionListener(this);
    seeAlsoGroup.add(moreButton);
    tpc.add(seeAlsoGroup);

    add(new JScrollPane(tpc));
  }
View Full Code Here

  /**
   * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
   */
  @Override
  public void actionPerformed(ActionEvent e) {
    JXTaskPane moreGroup = new JXTaskPane();
    moreGroup.setTitle("---MORE---");
    moreGroup.setIcon(new ImageIcon("MS.JPG"));
    moreGroup.add(new JButton("more1"));
    moreGroup.add(new JButton("more2"));
    tpc.add(moreGroup);
    tpc.validate();
  }
View Full Code Here

    setMainPanel(new JXTaskPaneContainer());
    getMainPanel().setLayout(new BorderLayout(0, 10));
   
    JToolBar searchToolBar = new JToolBar();

    taskpane = new JXTaskPane();
    taskpane.setTitle("Par�metros");
    taskpane.setIcon(IconFactory.createAbout());
    taskpane.setLayout(new BorderLayout());
   
    JButton okButton = new JButton();
View Full Code Here

    setMainPanel(new JXTaskPaneContainer());
    getMainPanel().setLayout(new BorderLayout(0, 10));
   
    JToolBar searchToolBar = new JToolBar();

    taskpane = new JXTaskPane();
    taskpane.setTitle("Per�odo");
    taskpane.setIcon(IconFactory.createAbout());
    taskpane.setLayout(new BorderLayout());
   
    JButton okButton = new JButton();
View Full Code Here

    setMainPanel(new JXTaskPaneContainer());
    getMainPanel().setLayout(new BorderLayout(0, 10));
   
    JToolBar searchToolBar = new JToolBar();

    taskpane = new JXTaskPane();
    taskpane.setTitle("Par�metros");
    taskpane.setIcon(IconFactory.createAbout());
    taskpane.setLayout(new BorderLayout());
   
    JButton okButton = new JButton();
View Full Code Here

TOP

Related Classes of org.jdesktop.swingx.JXTaskPane

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.