我正在升级RCP应用程序以使用Eclipse 4.2.1。我遇到的一个问题是工具栏中文本的对齐方式已经改变。
我可以使用从标准SWT snippet改编的以下代码段重现此问题。它只是创建一个带有3个ToolItems的垂直工具栏。每个项目都有一个图像和一些文本。
当我在Eclipse 3.7.2中运行此代码段时,每个ToolItem的文本都是左对齐的。在Eclipse 4.2.1中,它是中心对齐的。我希望文本保持左对齐。将样式设置为SWT.LEFT没有帮助。有什么建议吗?
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.ToolBar;
import org.eclipse.swt.widgets.ToolItem;
public class Snippet36 {
public static void main (final String [] args) {
Display display = new Display();
Image image = new Image (display, 16, 16);
Color color = display.getSystemColor (SWT.COLOR_RED);
GC gc = new GC (image);
gc.setBackground (color);
gc.fillRectangle (image.getBounds ());
gc.dispose ();
Shell shell = new Shell (display);
ToolBar toolBar = new ToolBar (shell, SWT.FLAT | SWT.BORDER | SWT.VERTICAL | SWT.RIGHT);
Rectangle clientArea = shell.getClientArea ();
toolBar.setLocation (clientArea.x, clientArea.y);
String[] labels = new String[] {"Short", "Quite a bit longer", "OK"};
for (int i=0; i<3; i++) {
ToolItem item = new ToolItem (toolBar, SWT.PUSH);
item.setText(labels[i]);
item.setImage (image);
}
toolBar.pack ();
shell.open ();
while (!shell.isDisposed()) {
if (!display.readAndDispatch ()) {
display.sleep ();
}
}
image.dispose ();
display.dispose ();
}
}
答案 0 :(得分:0)
刚刚尝试使用Eclipse 4.2.1,这就是我得到的:
一切正常。
您使用的是哪个版本的SWT?