com.vaadin.v7.client.ui.calendar.schedule.SimpleDayToolbar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-compatibility-client Show documentation
Show all versions of vaadin-compatibility-client Show documentation
Vaadin 7 compatibility package for Vaadin 8
/*
* Copyright (C) 2000-2024 Vaadin Ltd
*
* This program is available under Vaadin Commercial License and Service Terms.
*
* See for the full
* license.
*/
package com.vaadin.v7.client.ui.calendar.schedule;
import com.google.gwt.user.client.ui.HorizontalPanel;
import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.Widget;
/**
*
* @since 7.1.0
* @author Vaadin Ltd.
*
*/
public class SimpleDayToolbar extends HorizontalPanel {
private int width = 0;
private boolean isWidthUndefined = false;
public SimpleDayToolbar() {
setStylePrimaryName("v-calendar-header-month");
}
public void setDayNames(String[] dayNames) {
clear();
for (String dayName : dayNames) {
Label l = new Label(dayName);
l.setStylePrimaryName("v-calendar-header-day");
add(l);
}
updateCellWidth();
}
public void setWidthPX(int width) {
this.width = width;
setWidthUndefined(width == -1);
if (!isWidthUndefined()) {
super.setWidth(this.width + "px");
if (getWidgetCount() == 0) {
return;
}
}
updateCellWidth();
}
private boolean isWidthUndefined() {
return isWidthUndefined;
}
private void setWidthUndefined(boolean isWidthUndefined) {
this.isWidthUndefined = isWidthUndefined;
if (isWidthUndefined) {
addStyleDependentName("Hsized");
} else {
removeStyleDependentName("Hsized");
}
}
private void updateCellWidth() {
int cellw = -1;
int widgetCount = getWidgetCount();
if (widgetCount <= 0) {
return;
}
if (isWidthUndefined()) {
Widget widget = getWidget(0);
String w = widget.getElement().getStyle().getWidth();
if (w.length() > 2) {
cellw = Integer.parseInt(w.substring(0, w.length() - 2));
}
} else {
cellw = width / getWidgetCount();
}
if (cellw > 0) {
for (int i = 0; i < getWidgetCount(); i++) {
Widget widget = getWidget(i);
setCellWidth(widget, cellw + "px");
}
}
}
}