Examples of HelpButton


Examples of de.sciss.gui.HelpButton

    panel    = new JPanel( new FlowLayout( FlowLayout.TRAILING, 4, 2 ));
    ggClose    = new JButton( new CloseAction( getResourceString( "buttonClose" )));
    GUIUtil.createKeyAction( ggClose, KeyStroke.getKeyStroke( KeyEvent.VK_ESCAPE, 0 ));
    ggClose.setFocusable( false );
    panel.add( ggClose );
    panel.add( new HelpButton( "Blending" ));
    panel.add( CoverGrowBox.create() );

    return panel;
  }
View Full Code Here

Examples of de.sciss.gui.HelpButton

    butPane.setLayout( new BoxLayout( butPane, BoxLayout.X_AXIS ));
    actionRecord    = new ActionRecord();
    actionStop      = new ActionStop();
    actionAbort      = new ActionAbort();
    actionClose      = new ActionClose();
    butPane.add( new HelpButton( "RecorderDialog" ));
    butPane.add( Box.createHorizontalGlue() );
    ggAbort        = new JButton( actionAbort );
    ggAbort.setFocusable( false );
    butPane.add( ggAbort );
    ggRecord      = new JButton( actionRecord );
View Full Code Here

Examples of de.sciss.gui.HelpButton

    // ---------- generic gadgets ----------

        buttonPanel = Box.createHorizontalBox(); // new JPanel( new FlowLayout( FlowLayout.RIGHT, 4, 4 ));
    buttonPanel.setBorder( BorderFactory.createEmptyBorder( 0, 0, 2, 0 ));
    buttonPanel.add( new HelpButton( "IOSetup" ));
    buttonPanel.add( Box.createHorizontalGlue() );
        ggButton  = new JButton( app.getResourceString( "buttonOk" ));
        ggButton.addActionListener( new ActionListener() {
      public void actionPerformed( ActionEvent e )
      {
View Full Code Here

Examples of de.sciss.gui.HelpButton

    ggClose      = new JButton( actionClose );
    GUIUtil.createKeyAction( ggClose, KeyStroke.getKeyStroke( KeyEvent.VK_ESCAPE, 0 ));
    ggRender    = new JButton( actionRender );
    GUIUtil.createKeyAction( ggRender, KeyStroke.getKeyStroke( KeyEvent.VK_ENTER, 0 ));
//    ggRender.setEnabled( false );
    ggHelp      = new HelpButton();
    panel.add( ggClose );
    panel.add( ggRender );
    panel.add( ggHelp );
    panel.add( CoverGrowBox.create() );
View Full Code Here

Examples of de.sciss.gui.HelpButton

     
    tab.makeCompactGrid();
    tabWrap = new JPanel( new BorderLayout() );
    tabWrap.add( tab, BorderLayout.NORTH );
    p    = new JPanel( new FlowLayout( FlowLayout.RIGHT ));
    p.add( new HelpButton( key ));
    tabWrap.add( p, BorderLayout.SOUTH );
    ggTabPane.addTab( getResourceString( key ), null, tabWrap, null );
    }
View Full Code Here

Examples of de.sciss.gui.HelpButton

     
    tab.makeCompactGrid();
    tabWrap = new JPanel( new BorderLayout() );
    tabWrap.add( tab, BorderLayout.NORTH );
    p    = new JPanel( new FlowLayout( FlowLayout.RIGHT ));
    p.add( new HelpButton( key ));
    tabWrap.add( p, BorderLayout.SOUTH );
    ggTabPane.addTab( getResourceString( key ), null, tabWrap, null );
    }
View Full Code Here

Examples of de.sciss.gui.HelpButton

    panel    = new JPanel( new FlowLayout( FlowLayout.TRAILING, 4, 2 ));
    ggClose    = new JButton( new CloseAction( getResourceString( "buttonClose" )));
    GUIUtil.createKeyAction( ggClose, KeyStroke.getKeyStroke( KeyEvent.VK_ESCAPE, 0 ));
    ggClose.setFocusable( false );
    panel.add( ggClose );
    panel.add( new HelpButton( "Blending" ));
    panel.add( CoverGrowBox.create() );

    return panel;
  }
View Full Code Here

Examples of net.sf.mzmine.util.components.HelpButton

    btnOK = GUIUtils.addButton(pnlButtons, "OK", null, this);
    btnCancel = GUIUtils.addButton(pnlButtons, "Cancel", null, this);

    if (helpID != null) {
      btnHelp = new HelpButton(helpID);
      pnlButtons.add(btnHelp);
    }

    // Create a JScrollPane to house the GridBagPanel if the dialog box is
    // too large (> 3/4 of screen height)
View Full Code Here

Examples of org.jboss.as.cli.gui.component.HelpButton

            }
        });

        buttonPanel.add(ok);
        buttonPanel.add(cancel);
        buttonPanel.add(new HelpButton("deploy.txt"));
        return buttonPanel;
    }
View Full Code Here

Examples of org.jboss.as.cli.gui.component.HelpButton

        if (deploymentChooser.hasDeployments()) {
            buttonPanel.add(ok);
        }

        buttonPanel.add(cancel);
        buttonPanel.add(new HelpButton("undeploy.txt"));
        return buttonPanel;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.