Menubar.js 515 字节
Newer Older
M
Mr.doob 已提交
1
var Menubar = function ( signals ) {
2 3 4 5 6 7 8

	var container = new UI.Panel( 'absolute' );
	container.setBackgroundColor( '#eee' );

	var options = new UI.Panel();
	options.setMargin( '8px' );
	options.add( new UI.Text().setText( 'File' ).setColor( '#666' ).setMarginRight( '10px' ) );
M
Mr.doob 已提交
9
	options.add( new UI.Text().setText( 'Edit' ).setColor( '#666' ).setMarginRight( '10px' ) );
10 11 12 13 14 15
	options.add( new UI.Text().setText( 'About' ).setColor( '#666' ).setMarginRight( '10px' ) );
	container.add( options );

	return container;

}