use of com.extjs.gxt.ui.client.util.Size in project activityinfo by bedatadriven.
the class LayerOptionsPanel method initializeComponent.
private void initializeComponent() {
setWidth(WIDTH);
setHeight(HEIGHT);
layout = new AccordionLayout() {
@Override
protected void renderComponent(Component component, int index, El target) {
super.renderComponent(component, index, target);
// keep the default style of rounded corners on the content
// panels
El.fly(((ContentPanel) component).getElement("header")).removeStyleName("x-accordion-hd");
}
@Override
protected void setItemSize(Component item, Size size) {
// don't set the height of the panels
ContentPanel cp = (ContentPanel) item;
cp.setWidth(size.width);
}
};
layout.setHideCollapseTool(true);
setLayout(layout);
// setFieldsetHeadingToLayerName();
stylePanel = new ContentPanel();
stylePanel.setHeadingText(I18N.CONSTANTS.style());
stylePanel.setIcon(AbstractImagePrototype.create(MapResources.INSTANCE.styleIcon()));
stylePanel.setCollapsible(true);
stylePanel.setHideCollapseTool(true);
stylePanel.setAnimCollapse(true);
ToolButton closeBtn = new ToolButton("x-tool-close");
closeBtn.addListener(Events.Select, new Listener<ComponentEvent>() {
@Override
public void handleEvent(ComponentEvent ce) {
fadeOut();
}
});
stylePanel.getHeader().addTool(closeBtn);
add(stylePanel);
clusteringPanel = new ContentPanel();
clusteringPanel.setIcon(AbstractImagePrototype.create(MapResources.INSTANCE.clusterIcon()));
clusteringPanel.setHeadingText(I18N.CONSTANTS.clustering());
clusteringPanel.setCollapsible(true);
clusteringPanel.setHideCollapseTool(true);
clusteringPanel.setAnimCollapse(true);
add(clusteringPanel);
}
use of com.extjs.gxt.ui.client.util.Size in project activityinfo by bedatadriven.
the class IndicatorLinkPage method addGalley.
private void addGalley() {
linkButton = new ToggleButton("", IconImageBundle.ICONS.link());
linkButton.disable();
linkButton.setWidth(28);
linkButton.setHeight(40);
linkButton.addSelectionListener(new SelectionListener<ButtonEvent>() {
@Override
public void componentSelected(ButtonEvent ce) {
onToggleLink();
}
});
linkButtonTip = new ToolTip(linkButton);
LayoutContainer container = new LayoutContainer();
container.setWidth(35);
container.add(linkButton);
container.setLayout(new BoxLayout() {
@Override
protected void onLayout(Container<?> container, El target) {
super.onLayout(container, target);
Size size = target.getStyleSize();
innerCt.setSize(size.width, size.height, true);
Component c = container.getItem(0);
int ch = c.getOffsetHeight();
setPosition(c, 5, ((int) (size.height * 0.65)) - (ch / 2));
}
});
add(container);
}
use of com.extjs.gxt.ui.client.util.Size in project activityinfo by bedatadriven.
the class CompositeEditorLayout method onLayout.
@Override
protected void onLayout(Container<?> container, El target) {
super.onLayout(container, target);
Size size = target.getStyleSize();
Component page = container.getItem(0);
int hMargin = (size.width - 650) / 2;
Margins margins = new Margins(25, hMargin, 25, hMargin);
applyMargins(page.el(), margins);
}
Aggregations