2014-01-22 5 views
0

ScrolledComposite를 올바르게 사용하는 방법은 무엇입니까?ScrolledComposite 콘텐츠를 두 번 설정해야합니까? ScrolledComposite를 올바르게 사용하는 방법은 무엇입니까?

다음 약간 Snipped166 수정 : 나는 그것을 가로 스크롤 막대 표시의 긴 가로 행을 표시 할 것

import org.eclipse.swt.*; 
import org.eclipse.swt.custom.*; 
import org.eclipse.swt.events.*; 
import org.eclipse.swt.graphics.*; 
import org.eclipse.swt.layout.*; 
import org.eclipse.swt.widgets.*; 

public class Snippet166 { 

public static void main(String[] args) { 
    Display display = new Display(); 
    Image image1 = display.getSystemImage(SWT.ICON_WORKING); 
    Image image2 = display.getSystemImage(SWT.ICON_QUESTION); 
    Image image3 = display.getSystemImage(SWT.ICON_ERROR); 

    Shell shell = new Shell(display); 
    shell.setLayout(new FillLayout()); 

    final ScrolledComposite scrollComposite = new ScrolledComposite(shell, SWT.H_SCROLL | SWT.BORDER); 

    final Composite parent = new Composite(scrollComposite, SWT.NONE); 
    for(int i = 0; i <= 50; i++) { 
     Label label = new Label(parent, SWT.NONE); 
     if (i % 3 == 0) label.setImage(image1); 
     if (i % 3 == 1) label.setImage(image2); 
     if (i % 3 == 2) label.setImage(image3); 
    } 
    RowLayout layout = new RowLayout(SWT.HORIZONTAL); 
    layout.wrap = false; 
    parent.setLayout(layout); 

    scrollComposite.setContent(parent); 
    scrollComposite.setExpandVertical(true); 
    scrollComposite.setExpandHorizontal(true); 
    scrollComposite.addControlListener(new ControlAdapter() { 
     @Override 
     public void controlResized(ControlEvent e) { 
      Rectangle r = scrollComposite.getClientArea(); 
      scrollComposite.setMinSize(parent.computeSize(r.width, SWT.DEFAULT)); 
     } 
    }); 

    shell.open(); 
    while (!shell.isDisposed()) { 
     if (!display.readAndDispatch()) { 
      display.sleep(); 
     } 
    } 
    display.dispose(); 
} 
} 

.

불행히도 스크롤 막대를 그리지 않습니다.

또한이 예제가 왜 그렇게 복잡해야하는지 이해할 수 없습니까? ScrolledComposite에 큰 것을 집어 넣고 굴릴 수없는 이유는 무엇입니까?

콘텐츠가 항상 SWT의 생성자에 설정되므로 setContent() 메서드가 필요하지 않습니다.

UPDATE는 내가 수동으로 크기를 설정할 수 있습니다 및 스크롤 한 후 나타납니다 것을 발견했다.

public class Snippet166_mod01 { 

public static void main(String[] args) { 
    Display display = new Display(); 
    Image image1 = display.getSystemImage(SWT.ICON_WORKING); 
    Image image2 = display.getSystemImage(SWT.ICON_QUESTION); 
    Image image3 = display.getSystemImage(SWT.ICON_ERROR); 

    Shell shell = new Shell(display); 
    shell.setLayout(new FillLayout()); 

    final ScrolledComposite scrollComposite = new ScrolledComposite(shell, SWT.H_SCROLL | SWT.BORDER); 

    final Composite parent = new Composite(scrollComposite, SWT.NONE); 
    for(int i = 0; i <= 50; i++) { 
     Label label = new Label(parent, SWT.NONE); 
     if (i % 3 == 0) label.setImage(image1); 
     if (i % 3 == 1) label.setImage(image2); 
     if (i % 3 == 2) label.setImage(image3); 
    } 
    RowLayout layout = new RowLayout(SWT.HORIZONTAL); 
    layout.wrap = false; 
    parent.setLayout(layout); 

    // how to calculate actual size? 
    parent.setSize(1000, 100); 


    // what this is for? 
    scrollComposite.setContent(parent); 

    shell.open(); 
    while (!shell.isDisposed()) { 
     if (!display.readAndDispatch()) { 
      display.sleep(); 
     } 
    } 
    display.dispose(); 
} 
} 

크기가 자동으로 설정되는 이유는 무엇입니까? parent 컨트롤의 크기를 내부의 51 이미지 너비와 정확히 맞출 수 있습니까?

scrolled.setMinSize(group.computeSize(SWT.DEFAULT, SWT.DEFAULT)); 
scrolled.setExpandHorizontal(true); 
scrolled.setExpandVertical(true); 

그룹에 모든 자녀를 추가 한 후이 작업을 수행합니다 :

+0

내 대답이 문제를 해결 했습니까? – Baz

답변

1

또한 ScrolledComposite의 최소 크기를 말해야한다.