タブ フォルダでコンポジットの幅と高さを設定するにはどうすればよいですか?
PS:動作setSize
しsetBounds
ません!
複合サイズをいつ、どこで、どのように設定するかを言っていないので、イベントでサイズを設定していると思いますが、うまくいきsetSize
ます。
私は Win7、Eclipse 4.2、および JDK 1.6_b30 を使用しています。サンプル コードを参照してください。
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.TabFolder;
import org.eclipse.swt.widgets.TabItem;
import org.eclipse.swt.widgets.Text;
public class Test
{
public static void main(String[] args) throws Exception
{
Display display = new Display();
Shell shell = new Shell(display);
shell.setLayout(new GridLayout(1, false));
TabFolder folder = new TabFolder(shell, SWT.TOP);
folder.setLayout(new GridLayout());
folder.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
TabItem item = new TabItem(folder, SWT.NONE);
item.setText("Tab 1");
final Composite composite = new Composite(folder, SWT.BORDER);
composite.setLayout(new GridLayout());
composite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
Text text = new Text(composite, SWT.BORDER);
text.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
text.setText("Tab 1");
Button b = new Button(composite, SWT.PUSH);
b.setText("Press");
b.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
composite.setSize(23, 43);
}
});
item.setControl(composite);
shell.setSize(300, 200);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
}
Before Pressing the Button
After Pressing the Button
引っかかるけど!アプリケーションのサイズを変更するとすぐに、コンポジットは元のサイズに戻ります!!
hack
(ユーザーの操作を必要としない) は、 を使用することPaintListener
です。以下のコードを参照してください。
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.PaintEvent;
import org.eclipse.swt.events.PaintListener;
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.TabFolder;
import org.eclipse.swt.widgets.TabItem;
import org.eclipse.swt.widgets.Text;
public class Test
{
public static void main(String[] args) throws Exception
{
Display display = new Display();
Shell shell = new Shell(display);
shell.setLayout(new GridLayout(1, false));
final TabFolder folder = new TabFolder(shell, SWT.TOP);
folder.setLayout(new GridLayout());
folder.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
TabItem item = new TabItem(folder, SWT.NONE);
item.setText("Tab 1");
final Composite composite = new Composite(folder, SWT.BORDER);
composite.setLayout(new GridLayout());
composite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
Text text = new Text(composite, SWT.BORDER);
text.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
text.setText("Tab 1");
folder.addPaintListener(new PaintListener() {
public void paintControl(PaintEvent e) {
composite.setSize(23, 43);
}
});
item.setControl(composite);
shell.setSize(300, 200);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
}
このPaintListener
ソリューションはあまり洗練されたソリューションではありませんが、私の開発環境では機能します。