/** * Copyright (C) 2010 Asterios Raptis * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package de.alpharogroup.wicket.components.labeled.checkbox.img; import org.apache.wicket.markup.html.form.CheckBox; import org.apache.wicket.markup.html.image.Image; import org.apache.wicket.model.IModel; import org.apache.wicket.model.PropertyModel; import de.alpharogroup.wicket.base.BasePanel; import de.alpharogroup.wicket.components.factory.ComponentFactory; import lombok.Getter; /** * The Class LabeledImageCheckboxPanel. */ public class LabeledImageCheckboxPanel extends BasePanel<LabeledImageCheckboxModelBean> { /** The serialVersionUID. */ private static final long serialVersionUID = 1L; /** The CheckBox component. */ @Getter private final CheckBox checkBox; /** The image. */ @Getter private final Image image; /** * Instantiates a new {@link LabeledImageCheckboxPanel}. * * @param id * the id * @param model * the model */ public LabeledImageCheckboxPanel(final String id, final IModel<LabeledImageCheckboxModelBean> model) { super(id, model); setOutputMarkupId(true); add(checkBox = newCheckBox("checkBox", model)); add(image = newImage("image", model)); } /** * Factory method for create a new {@link CheckBox}. This method is invoked in the constructor * from this class and can be overridden so users can provide their own version of a new * {@link CheckBox}. * * @param id * the id * @param model * the model * @return the new {@link CheckBox}. */ protected CheckBox newCheckBox(final String id, final IModel<LabeledImageCheckboxModelBean> model) { return ComponentFactory.newCheckBox(id, new PropertyModel<>(model.getObject(), "checked")); } /** * Factory method for create a new {@link Image}. This method is invoked in the constructor from * this class and can be overridden so users can provide their own version of a new * {@link Image}. * * @param id * the id * @param model * the model that contains the IResource object * @return the new {@link Image}. */ protected Image newImage(final String id, final IModel<LabeledImageCheckboxModelBean> model) { return ComponentFactory.newImage(id, model.getObject().getImageResource()); } }