Image l = new Image(null, new ThemeResource("img/palette-text.png"));
wrap.addComponent(l);
Label caption = new Label("Text Block");
caption.setSizeUndefined();
wrap.addComponent(caption);
DragAndDropWrapper rte = new DragAndDropWrapper(wrap);
rte.setSizeUndefined();
rte.setCaption("text");
paletteLayout.addComponent(rte);
rte.setDragStartMode(DragStartMode.WRAPPER);
wrap = new CssLayout();
l = new Image(null, new ThemeResource("img/palette-grid.png"));
wrap.addComponent(l);
caption = new Label("Top 10 Movies");
caption.setSizeUndefined();
wrap.addComponent(caption);
DragAndDropWrapper grid = new DragAndDropWrapper(wrap);
grid.setCaption("grid");
grid.setSizeUndefined();
paletteLayout.addComponent(grid);
grid.setDragStartMode(DragStartMode.WRAPPER);
wrap = new CssLayout();
l = new Image(null, new ThemeResource("img/palette-chart.png"));
wrap.addComponent(l);
caption = new Label("Top 4 Revenue");
caption.setSizeUndefined();
wrap.addComponent(caption);
DragAndDropWrapper chart = new DragAndDropWrapper(wrap);
chart.setCaption("chart");
chart.setSizeUndefined();
paletteLayout.addComponent(chart);
chart.setDragStartMode(DragStartMode.WRAPPER);
return editor;
}