4

我有一个以随机顺序填充复合材料的 GridLayout。现在,我正在对在 List/Collection 中填充 GridLayout 的 Composite 进行排序,并希望像 List/Collection 中的排序结果一样对它们进行排序。我试图通过将它们再次分配给他们的父母来做到这一点,这样它们的顺序就正确了,但由于某种原因什么也没发生。然后我尝试将它们缓存在您看不到的 Composite 中,然后使用与第一次尝试相同的方法将它们带回父级。完全没有变化。有人有指针吗?我按日期订购,以防万一/所以想知道。

这就是我的网格的样子,现在我想像在我的 arrayList() 中一样对它们进行排序;

4

2 回答 2

5

您正在寻找的方法是Control#moveAbove(Control control)Control#moveBelow(Control control)重新排序项目:

private static List<Label>  labels  = new ArrayList<Label>();
private static List<Color>  colors  = new ArrayList<Color>();

public static void main(String[] args)
{
    Display display = new Display();
    final Shell shell = new Shell(display);
    shell.setText("Stackoverflow");
    shell.setLayout(new RowLayout(SWT.VERTICAL));

    colors.add(display.getSystemColor(SWT.COLOR_BLUE));
    colors.add(display.getSystemColor(SWT.COLOR_CYAN));
    colors.add(display.getSystemColor(SWT.COLOR_GREEN));
    colors.add(display.getSystemColor(SWT.COLOR_YELLOW));
    colors.add(display.getSystemColor(SWT.COLOR_RED));

    for (int i = 0; i < 5; i++)
    {
        Label label = new Label(shell, SWT.BORDER);
        label.setText("Button " + i);
        label.setBackground(colors.get(i));

        labels.add(label);
    }

    Button sortButton = new Button(shell, SWT.TOGGLE);
    sortButton.setText("Sort");

    sortButton.addListener(SWT.Selection, new Listener()
    {
        @Override
        public void handleEvent(Event e)
        {
            Button source = (Button) e.widget;

            final boolean asc = source.getSelection();

            Label oldFirst = labels.get(0);

            Collections.sort(labels, new Comparator<Label>()
            {
                @Override
                public int compare(Label o1, Label o2)
                {
                    int result = o1.getText().compareTo(o2.getText());

                    if (asc)
                        result = -result;

                    return result;
                }
            });

            Label label = labels.get(0);
            label.moveAbove(oldFirst);

            for (int i = 1; i < labels.size(); i++)
            {
                labels.get(i).moveBelow(labels.get(i - 1));
            }
            shell.layout();
        }
    });

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

启动后:

在此处输入图像描述

按下按钮后:

在此处输入图像描述

于 2013-10-22T13:26:25.003 回答
2

我找到了解决方案。您必须调用child.moveAbove(otherChild).moveBelow()当您完成重新排序后,只需调用父 Compositeparent.layout()

于 2013-10-22T13:25:14.833 回答