Package de.sciss.gui

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


    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

    // ---------- 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

    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

     
    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

     
    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

    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

TOP

Related Classes of de.sciss.gui.HelpButton

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.