HorizontalLayout buttons = new HorizontalLayout();
buttons.addStyleName("v-window-bottom-toolbar");
buttons.setWidth("100%");
buttons.setSpacing(true);
buttons.addComponent(deleteEventButton);
buttons.addComponent(applyEventButton);
buttons.setExpandRatio(applyEventButton, 1);
buttons.setComponentAlignment(applyEventButton, Alignment.TOP_RIGHT);
buttons.addComponent(cancel);
layout.addComponent(buttons);