Skip to main content



      Home
Home » Eclipse Projects » Rich Client Platform (RCP) » WindowBuilder Bug. Control position in Designer View is opposite(windowbuilder sashform control position opposite)
WindowBuilder Bug. Control position in Designer View is opposite [message #1058405] Mon, 13 May 2013 20:46 Go to next message
Eclipse UserFriend
Eclipse: Juno

- Design Program Coding
: EditorPart , SashForm, Composite(Fill)
- open Windowbuilder Design
- Shown Design Control is deployed by opposite
RightComposite <-> LeftComposite Position is opposite in Windowbuilder Design View
Label, Text Position is opposite
- ViewPart, EditorPart is same result.
- Show my attached capture file

My Coding

@Override
public void createPartControl(Composite parent) {
FillLayout fl_parent = new FillLayout(SWT.HORIZONTAL);
parent.setLayout(fl_parent);
Composite container = new Composite(parent, SWT.NONE);
container.setTouchEnabled(true);
container.setLayout(new GridLayout(1, false));

SashForm sashForm = new SashForm(container, SWT.NONE);
sashForm.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));

Composite compositeLeft = new Composite(sashForm, SWT.BORDER);
compositeLeft.setLayout(new GridLayout(1, false));

Label lblNewLabel_1 = new Label(compositeLeft, SWT.NONE);
lblNewLabel_1.setText("Left");

Composite compositeRight = new Composite(sashForm, SWT.BORDER);
compositeRight.setLayout(new GridLayout(2, false));

Label lblNewLabel = new Label(compositeRight, SWT.NONE);
lblNewLabel.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false, 1, 1));
lblNewLabel.setText("Right");

textRight = new Text(compositeRight, SWT.BORDER);
textRight.setText("rightText");
textRight.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
sashForm.setWeights(new int[] {1, 1});
}
Re: WindowBuilder Bug. Control position in Designer View is opposite [message #1062694 is a reply to message #1058405] Mon, 10 June 2013 08:07 Go to previous message
Eclipse UserFriend
Any news/solution on this topic? I am facing the exact same problem since updating to Juno and WindowBuilder 1.5.2. . Pretty frustrating bug...
Previous Topic:Missing required plug-in com.ibm.pvc.tools.portlet_0.0.0.
Next Topic:EditorPart: getClientArea() before Control is painted
Goto Forum:
  


Current Time: Wed Mar 19 13:34:34 EDT 2025

Powered by FUDForum. Page generated in 0.02319 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top