행 레이아웃(RowLayout)
행 레이아웃은 여러개의 선반처럼 여러 줄로 구성할 수 있습니다. 디폴트는 자식 컨트롤을 하나의 줄에 넣습니다. 여러 줄로 사용하려면 SWT.WRAP 을 인자로 넣어줘야 합니다.
레이아웃의 자식 컨트롤의 크기를 제어하려면 RowData 클래스를 이용할 수 있습니다. 자식 컨트롤의 setLayoutData() 메서드는 LayoutData의 인스턴스를 취하는데, RowData는 LayoutData로부터 파생되었습니다.
아래의 예제는 RowLayout에 컨트롤의 크기를 규칙적으로 변화시켜 어떻게 배치되는지 보여주는 예제입니다.
▶ 예제코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package com.swtjface.Ch6;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.RowData;
import org.eclipse.swt.layout.RowLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
public class Ch6RowLayoutComposite extends Composite {
public Ch6RowLayoutComposite(Composite parent) {
super(parent, SWT.NONE);
/*
* RowLayout 생성자의 default 는 1행으로 버튼들을 추가한다.
* SWT.WRAP 속성을 추가하면 1열로 버튼들을 추가한다.
*/
RowLayout layout = new RowLayout(SWT.HORIZONTAL|SWT.WRAP);
setLayout(layout);
for (int i = 0; i < 16; ++i) {
Button button = new Button(this, SWT.NONE);
button.setText("Sample Text");
button.setLayoutData(new RowData(200 + 5 * i, 20 + i));
}
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package com.swtjface.Ch6;
import org.eclipse.jface.window.ApplicationWindow;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
public class RowLayoutTest extends ApplicationWindow {
public RowLayoutTest() {
super(null);
}
protected Control createContents(Composite parent) {
Ch6RowLayoutComposite ca = new Ch6RowLayoutComposite(parent);
getShell().setText("Widget Window");
return parent;
}
public static void main(String[] args) {
RowLayoutTest tc = new RowLayoutTest();
tc.setBlockOnOpen(true);
tc.open();
Display.getCurrent().dispose();
}
}
|
▶ 실행결과
결과 창의 아래 부분을 줄이면 자식 컨트롤들이 동적으로 위치를 바꿔 배열됩니다.
댓글 없음:
댓글 쓰기