All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.teamapps.ux.component.dialogue.Dialogue Maven / Gradle / Ivy
/*-
* ========================LICENSE_START=================================
* TeamApps
* ---
* Copyright (C) 2014 - 2023 TeamApps.org
* ---
* 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.
* =========================LICENSE_END==================================
*/
package org.teamapps.ux.component.dialogue;
import org.teamapps.event.Event;
import org.teamapps.icon.material.MaterialIcon;
import org.teamapps.icons.Icon;
import org.teamapps.ux.component.field.Button;
import org.teamapps.ux.component.field.FieldEditingMode;
import org.teamapps.ux.component.field.combobox.ComboBox;
import org.teamapps.ux.component.form.ResponsiveForm;
import org.teamapps.ux.component.form.ResponsiveFormConfigurationTemplate;
import org.teamapps.ux.component.form.ResponsiveFormLayout;
import org.teamapps.ux.component.format.HorizontalElementAlignment;
import org.teamapps.ux.component.format.SizingPolicy;
import org.teamapps.ux.component.format.Spacing;
import org.teamapps.ux.component.grid.layout.GridColumn;
import org.teamapps.ux.component.grid.layout.GridRow;
import org.teamapps.ux.component.template.BaseTemplate;
import org.teamapps.ux.component.template.BaseTemplateRecord;
import org.teamapps.ux.component.window.Window;
import org.teamapps.ux.i18n.TeamAppsDictionary;
public class Dialogue extends Window {
public Event onResult = new Event<>();
private final ComboBox> comboBox;
private final Button> okButton;
private final Button> cancelButton;
public static Event showOkCancel(Icon icon, String title, String text) {
return showOkCancel(new BaseTemplateRecord<>(icon, title, text));
}
public static Event showOkCancel(BaseTemplateRecord> record) {
Dialogue dialogue = new Dialogue();
dialogue.setValues(record);
dialogue.setIcon(record.getIcon());
dialogue.setTitle(record.getCaption());
dialogue.setModal(true);
dialogue.show(250);
return dialogue.onResult;
}
public static Dialogue createOkCancel(Icon icon, String title) {
return createOkCancel(icon, title, title);
}
public static Dialogue createOkCancel(Icon icon, String title, String text) {
Dialogue dialogue = new Dialogue();
dialogue.setValues(icon, title, text);
dialogue.setIcon(icon);
dialogue.setTitle(title);
dialogue.setModal(true);
return dialogue;
}
public static Event showOk(Icon icon, String title) {
return showOk(icon, title, title);
}
public static Event showOk(Icon icon, String title, String text) {
Dialogue dialogue = new Dialogue();
dialogue.getCancelButton().setVisible(false);
dialogue.setValues(icon, title, text);
dialogue.setIcon(icon);
dialogue.setTitle(title);
dialogue.setModal(false);
dialogue.show(250);
return dialogue.onResult;
}
public Dialogue() {
ResponsiveFormConfigurationTemplate template = new ResponsiveFormConfigurationTemplate();
template.setRowTemplate(new GridRow().setHeightPolicy(SizingPolicy.AUTO));
template.setColumnTemplate(new GridColumn(SizingPolicy.AUTO));
ResponsiveForm> responsiveForm = new ResponsiveForm<>(template);
setContent(responsiveForm);
setWidth(500);
setHeight(200);
ResponsiveFormLayout formLayout = responsiveForm.addResponsiveFormLayout(200);
formLayout.addSection().setDrawHeaderLine(false).setMargin(new Spacing(10)).setGridGap(20);
comboBox = new ComboBox<>();
comboBox.setTemplate(BaseTemplate.LIST_ITEM_VERY_LARGE_ICON_TWO_LINES);
comboBox.setEditingMode(FieldEditingMode.READONLY);
formLayout.addField(0, 0, "data", comboBox).setHorizontalAlignment(HorizontalElementAlignment.CENTER).setColSpan(3);
okButton = Button.create(MaterialIcon.CHECK, getSessionContext().getLocalized(TeamAppsDictionary.OK.getKey()));
okButton.onClicked.addListener(() -> {
close(250);
onResult.fire(true);
});
cancelButton = Button.create(MaterialIcon.CANCEL, getSessionContext().getLocalized(TeamAppsDictionary.CANCEL.getKey()));
cancelButton.onClicked.addListener(() -> {
close(250);
onResult.fire(false);
});
formLayout.addComponent(1, 1, okButton);
formLayout.addComponent(1, 2, cancelButton);
}
public void setValues(BaseTemplateRecord> record) {
comboBox.setValue(record);
}
public void setValues(Icon icon, String title, String text) {
comboBox.setValue(new BaseTemplateRecord<>(icon, title, text));
}
public ComboBox> getComboBox() {
return comboBox;
}
public Button> getOkButton() {
return okButton;
}
public Button> getCancelButton() {
return cancelButton;
}
}