All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.wicket.jquery.ui.widget.dialog.MessageFormDialog Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 com.googlecode.wicket.jquery.ui.widget.dialog;

import java.util.List;

import org.apache.wicket.AttributeModifier;
import org.apache.wicket.Component;
import org.apache.wicket.core.request.handler.IPartialPageRequestHandler;
import org.apache.wicket.markup.html.WebMarkupContainer;
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.markup.html.panel.EmptyPanel;
import org.apache.wicket.model.IModel;
import org.apache.wicket.model.Model;
import org.apache.wicket.util.lang.Args;

/**
 * Provides a modal dialog box that displays a specific message, with a predefined icon and a predefined button set.
* Note: {@link MessageDialog} & {@link MessageFormDialog} are sharing the same code, they just does not extend the same class. * * @author Sebastien Briquet - sebfz1 */ public abstract class MessageFormDialog extends AbstractFormDialog { private static final long serialVersionUID = 1L; private Component label; private List buttons; private final WebMarkupContainer container; /** * Constructor. * * @param id the markup id, an html div suffice to host a dialog. * @param title the title of the dialog * @param message the message to be displayed * @param buttons button set to be displayed */ public MessageFormDialog(String id, String title, String message, DialogButtons buttons) { this(id, title, message, buttons.toList(), DialogIcon.NONE); } /** * Constructor. * * @param id the markup id, an html div suffice to host a dialog. * @param title the title of the dialog * @param message the message to be displayed * @param buttons list of buttons to be displayed */ public MessageFormDialog(String id, String title, String message, List buttons) { this(id, title, message, buttons, DialogIcon.NONE); } /** * Constructor. * * @param id the markup id, an html div suffice to host a dialog. * @param title the title of the dialog * @param message the message to be displayed * @param buttons button set to be displayed * @param icon the predefined icon to display */ public MessageFormDialog(String id, String title, String message, DialogButtons buttons, DialogIcon icon) { this(id, Model.of(title), Model.of(message), buttons.toList(), icon); } /** * Constructor. * * @param id the markup id, an html div suffice to host a dialog. * @param title the title of the dialog * @param message the message to be displayed * @param buttons list of buttons to be displayed * @param icon the predefined icon to display */ public MessageFormDialog(String id, String title, String message, List buttons, DialogIcon icon) { this(id, Model.of(title), Model.of(message), buttons, icon); } /** * Constructor. * * @param id the markup id, an html div suffice to host a dialog. * @param title the title of the dialog * @param message the message to be displayed * @param buttons button set to be displayed */ public MessageFormDialog(String id, IModel title, IModel message, DialogButtons buttons) { this(id, title, message, buttons.toList(), DialogIcon.NONE); } /** * Constructor. * * @param id the markup id, an html div suffice to host a dialog. * @param title the title of the dialog * @param message the message to be displayed * @param buttons list of buttons to be displayed */ public MessageFormDialog(String id, IModel title, IModel message, List buttons) { this(id, title, message, buttons, DialogIcon.NONE); } /** * Constructor. * * @param id the markup id, an html div suffice to host a dialog. * @param title the title of the dialog * @param message the message to be displayed * @param buttons button set to be displayed * @param icon the predefined icon to display */ public MessageFormDialog(String id, IModel title, IModel message, DialogButtons buttons, DialogIcon icon) { this(id, title, message, buttons.toList(), icon); } /** * Constructor. * * @param id the markup id, an html div suffice to host a dialog. * @param title the title of the dialog * @param message the message to be displayed * @param buttons list of buttons to be displayed * @param icon the predefined icon to display */ public MessageFormDialog(String id, IModel title, IModel message, List buttons, DialogIcon icon) { super(id, title, message, true); // buttons // this.buttons = Args.notNull(buttons, "buttons"); // container // this.container = new WebMarkupContainer("container"); this.add(this.container); this.container.add(AttributeModifier.append("class", icon.getStyle())); this.container.add(new EmptyPanel("icon").add(AttributeModifier.replace("class", icon))); } // Properties // @Override protected final List getButtons() { return this.buttons; } // Events // @Override protected void onInitialize() { super.onInitialize(); // label // this.label = this.newLabel("message", this.getModel()); this.container.add(this.label.setOutputMarkupId(true)); } @Override protected void onOpen(IPartialPageRequestHandler handler) { handler.add(this.label); } @Override public void onClose(IPartialPageRequestHandler handler, DialogButton button) { // not mandatory to override } // Factories // /** * Gets a new {@link Component} that will be used as a label in the dialog.
* Override this method when you need to show formatted label. * * @param id the markup id * @param model the label {@link IModel} * @return the new label component. */ protected Component newLabel(String id, IModel model) { return new Label(id, model); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy