Menubar.Add.js 495 B

1234567891011121314
  1. Menubar.Add = function ( signals ) {
  2. var container = new UI.Panel( 'absolute' );
  3. container.setBackgroundColor( '#ccc' );
  4. container.setWidth( '120px' );
  5. container.setPadding( '10px' );
  6. container.add( new UI.Panel().add( new UI.Text().setValue( 'Sphere' ).setColor( '#666' ) ) );
  7. container.add( new UI.Panel().add( new UI.Text().setValue( 'Cube' ).setColor( '#666' ) ) );
  8. container.add( new UI.Panel().add( new UI.Text().setValue( 'Plane' ).setColor( '#666' ) ) );
  9. return container;
  10. }