SWT(JFace)체험 의 RowLayout 레이아웃

4352 단어 SWTRowLayout배치
RowLayout 레이아웃 
FillLayout 에 비해 RowLayout 는 유연 하고 기능 도 강하 다.사용 자 는 레이아웃 중성자 요소 의 크기,여백,줄 바 꿈 과 간격 등 속성 을 설정 할 수 있 습 니 다.
Row Layout 의 스타일.
RowLayout 에 서 는 관련 속성 으로 레이아웃 스타일 을 설정 할 수 있 습 니 다.사용 자 는'RowLayout.속성'방식 으로 RowLayout 의 레이아웃 스타일 을 설정 할 수 있 습 니 다.RowLayout 에서 자주 사용 하 는 속성 은 다음 과 같 습 니 다.Wrap:하위 구성 요소 가 줄 을 바 꿀 수 있 는 지 여부 입 니 다(true 는 줄 을 바 꿀 수 있 습 니 다).Pack:하위 구성 요소 가 원래 크기 를 유지 하 는 지 여부 입 니 다(true 는 원래 크기 를 유지 합 니 다).Justify:하위 구성 요소 가 부모 구성 요소 정보 에 따라 조정 되 는 지 여부 입 니 다.MarginLeft:현재 구성 요소 가 부모 구성 요소 왼쪽 에서 떨 어 진 픽 셀 점 개 수 를 표시 합 니 다.Margin Top:현재 구성 요소 가 부모 구성 요소 의 상단 거 리 를 나타 내 는 픽 셀 점 갯 수 입 니 다.MarginRight:현재 구성 요소 가 부모 구성 요소 오른쪽 에서 떨 어 진 픽 셀 점 개 수 를 표시 합 니 다.MarginBottom:현재 구성 요소 가 부모 구성 요소 아래 에서 떨 어 진 픽 셀 점 개 수 를 표시 합 니 다.Spacing:하위 구성 요소 간 의 간격 픽 셀 갯 수 를 표시 합 니 다.
또한 RowLayout 는 Rowdata 를 통 해 각 하위 구성 요소 의 크기 를 설정 할 수 있 습 니 다.예 를 들 어'button.setLayoutData(new Rowdata(60,60)'는 button 의 크기 를(60,60)로 설정 할 수 있 습 니 다.테스트 코드:

package swt_jface.demo2;
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.Display;
import org.eclipse.swt.widgets.List;
import org.eclipse.swt.widgets.Shell;
public class RowLayoutSample {

Display display = new Display();
Shell shell = new Shell(display);
public RowLayoutSample() {

RowLayout rowLayout = new RowLayout();
// rowLayout.fill = true;
// rowLayout.justify = true;
// rowLayout.pack = false;
// rowLayout.type = SWT.VERTICAL;
// rowLayout.wrap = false;
shell.setLayout(rowLayout);

Button button1 = new Button(shell, SWT.PUSH);
button1.setText("button1");
button1.setLayoutData(new RowData(100, 35));

List list = new List(shell, SWT.BORDER);
list.add("item 1");
list.add("item 2");
list.add("item 3");

Button button2 = new Button(shell, SWT.PUSH);
button2.setText("button #2");

//shell.setSize(120, 120);
shell.pack();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
public static void main(String[] args) {
new RowLayoutSample();
}
}
다음 동적(Composite 결합)

package swt_jface.demo2;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.ControlEvent;
import org.eclipse.swt.events.ControlListener;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.RowLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class Layouting {
Display display = new Display();
Shell shell = new Shell(display);
int count = 0;
public Layouting() {
shell.setLayout(new RowLayout());

final Composite composite = new Composite(shell, SWT.BORDER);
composite.setLayout(new RowLayout());
composite.setBackground(display.getSystemColor(SWT.COLOR_YELLOW));
composite.addControlListener(new ControlListener() {
public void controlMoved(ControlEvent e) {
}
public void controlResized(ControlEvent e) {
System.out.println("Composite resize.");
}
});

Button buttonAdd = new Button(shell, SWT.PUSH);
buttonAdd.setText("Add new button");
buttonAdd.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
Button button = new Button(composite, SWT.PUSH);
button.setText("Button #" + (count++));
composite.layout(true);
composite.pack();
shell.layout(true);
shell.pack(true);
}
});

shell.pack();
//shell.setSize(450, 100);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
public static void main(String[] args) {
new Layouting();
}
}

좋은 웹페이지 즐겨찾기