com.evolveum.midpoint.web.component.dialog.MainPopupDialog.java Source code

Java tutorial

Introduction

Here is the source code for com.evolveum.midpoint.web.component.dialog.MainPopupDialog.java

Source

/*
 * Copyright (c) 2010-2016 Evolveum
 *
 * 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 com.evolveum.midpoint.web.component.dialog;

import org.apache.wicket.Component;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow;
import org.apache.wicket.markup.html.WebMarkupContainer;
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.model.Model;

/**
 * @author Viliam Repan (lazyman)
 * @author katkav
 */
public class MainPopupDialog extends ModalWindow {
    private static final long serialVersionUID = 1L;

    private static final String ID_MAIN_POPUP_BODY = "popupBody";

    private boolean initialized;

    public MainPopupDialog(String id) {
        super(id);

        setCssClassName(ModalWindow.CSS_CLASS_GRAY);
        showUnloadConfirmation(false);
        setResizable(false);
        setInitialWidth(350);
        setInitialHeight(150);
        setWidthUnit("px");

        setCloseButtonCallback(new ModalWindow.CloseButtonCallback() {
            private static final long serialVersionUID = 1L;

            @Override
            public boolean onCloseButtonClicked(AjaxRequestTarget target) {
                return true;
            }
        });

        setWindowClosedCallback(new ModalWindow.WindowClosedCallback() {
            private static final long serialVersionUID = 1L;

            @Override
            public void onClose(AjaxRequestTarget target) {
                MainPopupDialog.this.close(target);
            }
        });

        WebMarkupContainer content = new WebMarkupContainer(getContentId());
        setContent(content);
    }

    @Override
    protected void onBeforeRender() {
        super.onBeforeRender();

        if (initialized) {
            return;
        }

        setBody(new Label(ID_MAIN_POPUP_BODY, new Model<String>("Not initialized")));
        initialized = true;
    }

    private void setBody(Component component) {
        WebMarkupContainer content = (WebMarkupContainer) get(getContentId());
        content.addOrReplace(component);
    }

    public void setBody(Popupable popupable) {
        setTitle(popupable.getTitle());
        setInitialHeight(popupable.getHeight());
        setInitialWidth(popupable.getWidth());
        WebMarkupContainer content = (WebMarkupContainer) get(getContentId());
        popupable.getComponent().setOutputMarkupId(true);
        content.addOrReplace(popupable.getComponent());
    }

}