Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 209427 Details for
Bug 368428
cyclical setTimeout from qx.ui.core.Widget._autoFlushHelper
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
Simplified snipped.
Simple.java (text/plain), 1.33 KB, created by
Andrei Neshcheret
on 2012-01-13 00:40:59 EST
(
hide
)
Description:
Simplified snipped.
Filename:
MIME Type:
Creator:
Andrei Neshcheret
Created:
2012-01-13 00:40:59 EST
Size:
1.33 KB
patch
obsolete
>package ru.infinet; > >import org.eclipse.rwt.lifecycle.IEntryPoint; >import org.eclipse.swt.SWT; >import org.eclipse.swt.layout.GridData; >import org.eclipse.swt.layout.GridLayout; >import org.eclipse.swt.widgets.Composite; >import org.eclipse.swt.widgets.Display; >import org.eclipse.swt.widgets.Shell; >import org.eclipse.swt.widgets.ToolBar; >import org.eclipse.swt.widgets.ToolItem; > >// RunIt with themeId="org.eclipse.rap.design.example.business.theme" >public class Simple implements IEntryPoint >{ > /** > * @wbp.parser.entryPoint > */ > @Override > public int createUI() > { > Display display = Display.getDefault(); > Shell shell = new Shell( display ); > shell.setSize( 449, 472 ); > shell.setLayout( new GridLayout( 1, false ) ); > > { > final Composite composite = new Composite( shell, SWT.NONE ); > composite.setLayoutData( new GridData( SWT.FILL, SWT.FILL, true, true, 1, 1 ) ); > composite.setLayout( new GridLayout( 1, false ) ); > { > final ToolBar toolBar = new ToolBar( composite, SWT.FLAT | SWT.RIGHT ); > final ToolItem toolItem = new ToolItem(toolBar, SWT.DROP_DOWN); > toolItem.setText("DoIt"); > } > } > shell.open(); > while ( !shell.isDisposed() ) > if ( !display.readAndDispatch() ) display.sleep(); > display.dispose(); > return 0; > } >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 368428
:
209357
|
209371
|
209372
| 209427