![JAR search and dependency download from the Maven repository](/logo.png)
io.ultreia.gc.ui.GcApplicationUISupport Maven / Gradle / Ivy
package io.ultreia.gc.ui;
/*-
* #%L
* GC toolkit :: API
* %%
* Copyright (C) 2017 Ultreia.io
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program. If not, see
* .
* #L%
*/
import io.ultreia.gc.service.GcAuthService;
import io.ultreia.gc.ui.actions.LogOutAction;
import java.awt.BorderLayout;
import java.awt.Dialog;
import java.awt.Dimension;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.JFrame;
import javax.swing.WindowConstants;
import org.jdesktop.swingx.JXLoginPane;
import org.nuiton.jaxx.runtime.swing.SwingUtil;
/**
* Created by tchemit on 15/04/17.
*
* @author Tony Chemit - [email protected]
*/
public abstract class GcApplicationUISupport, M, Content extends ContentPanelUI> implements AfterLoginUI {
private final Context applicationContext;
private final JFrame frame;
private final ProgressPanelUI progressPanel;
private final GcAuthService authService;
private final Content contentPanel;
private final M model;
protected GcApplicationUISupport(Context applicationContext, M model, String title) {
this.applicationContext = applicationContext;
this.authService = new GcAuthService();
this.authService.setServiceContext(applicationContext);
this.model = model;
this.progressPanel = new ProgressPanelUI();
C config = applicationContext.getConfig();
frame = new JFrame(String.format("%s - v%s (build %s : %s)", title, config.getBuildVersion(), config.getBuildDate(), config.getBuildNumber()));
frame.setModalExclusionType(Dialog.ModalExclusionType.APPLICATION_EXCLUDE);
frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
frame.setLayout(new BorderLayout());
frame.addWindowListener(new WindowAdapter() {
@Override
public void windowClosed(WindowEvent e) {
applicationContext.close();
}
});
contentPanel = createContentPanel(model);
contentPanel.installActions(applicationContext, model);
frame.add(contentPanel, BorderLayout.CENTER);
frame.setMinimumSize(new Dimension(1280, 600));
frame.setModalExclusionType(Dialog.ModalExclusionType.NO_EXCLUDE);
frame.setVisible(true);
frame.add(progressPanel, BorderLayout.SOUTH);
}
public final JFrame getFrame() {
return frame;
}
public final M getModel() {
return model;
}
protected abstract void afterLogOut();
protected abstract Content createContentPanel(M model);
public final void logIn(boolean autoLogin) {
LoginPanelUI loginPanel = LoginPanelUI.create(this, applicationContext.getConfig(), authService);
JXLoginPane.JXLoginDialog loginDialog = new JXLoginPane.JXLoginDialog(frame, loginPanel);
loginPanel.init(autoLogin);
SwingUtil.center(frame, loginDialog);
loginDialog.setVisible(true);
}
@Override
public final Content getContentPanel() {
return contentPanel;
}
public final ProgressPanelUI getProgressPanel() {
return progressPanel;
}
@Override
public final void setBusy(boolean b) {
getContentPanel().setBusy(b);
}
@Override
public void afterLogin(String authId) {
if (applicationContext.getAuthId().isPresent()) {
authService.logout();
}
applicationContext.setAuthId(authId);
getContentPanel().getLogOut().setText("Log out");
getContentPanel().getLogOut().setIcon(LogOutAction.ICON_LOGOUT);
}
@Override
public final void logOut() {
try {
authService.logout();
applicationContext.setAuthId(null);
} finally {
getContentPanel().getLogOut().setText("Log in");
getContentPanel().getLogOut().setIcon(LogOutAction.ICON_LOGIN);
afterLogOut();
logIn(false);
}
}
@Override
public final void quit() {
frame.dispose();
}
@Override
public final Context getApplicationContext() {
return applicationContext;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy