Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.installer.app / org.gvsig.installer.app.mainplugin / src / main / java / org / gvsig / installer / app / extension / execution / InstallPackageWindow.java @ 43126

History | View | Annotate | Download (3.22 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
/*
25
 * AUTHORS (In addition to CIT):
26
 * 2010 {Prodevelop}   {Task}
27
 */
28

    
29
package org.gvsig.installer.app.extension.execution;
30

    
31
import java.awt.BorderLayout;
32
import java.awt.Dimension;
33
import java.io.File;
34

    
35
import javax.swing.JPanel;
36

    
37
import org.gvsig.andami.ui.mdiManager.IWindow;
38
import org.gvsig.andami.ui.mdiManager.WindowInfo;
39
import org.gvsig.i18n.Messages;
40
import org.gvsig.installer.app.extension.utils.WindowInstallerListener;
41
import org.gvsig.installer.swing.api.SwingInstallerLocator;
42
import org.gvsig.installer.swing.api.SwingInstallerManager;
43
import org.gvsig.installer.swing.api.execution.InstallPackageWizardException;
44
import org.gvsig.installer.swing.api.execution.InstallWizardPanel;
45
import org.gvsig.tools.locator.LocatorException;
46

    
47
/**
48
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera Llodr&aacute;</a>
49
 */
50
public class InstallPackageWindow extends JPanel implements IWindow {
51

    
52
        private static final long serialVersionUID = 4719868181091291809L;
53
        WindowInfo windowInfo = null;
54

    
55
        public InstallPackageWindow(File applicationFolder, File installFolder, 
56
                boolean skipBundleSelection)
57
                        throws LocatorException, InstallPackageWizardException {
58
                super();
59
                SwingInstallerManager manager = SwingInstallerLocator.getSwingInstallerManager();
60
                InstallWizardPanel installPackageWizard = manager.createInstallPackageWizard(
61
                        applicationFolder, installFolder
62
                );
63
                installPackageWizard.setWizardActionListener(new WindowInstallerListener(this));
64
                this.setLayout(new BorderLayout());
65
                installPackageWizard.setSkipSelectBundleWizardPage(skipBundleSelection);
66
                installPackageWizard.setSkipTypicalOrAdvancedWizardPage(true);
67
                        
68
                add(installPackageWizard.asJComponent(), BorderLayout.CENTER);
69
        }
70

    
71
        @Override
72
        public WindowInfo getWindowInfo() {
73
                if (windowInfo == null) {
74
                        windowInfo = new WindowInfo(WindowInfo.MAXIMIZABLE
75
                                        | WindowInfo.ICONIFIABLE | WindowInfo.RESIZABLE);
76
                        Dimension dim = getPreferredSize();
77
                        windowInfo.setWidth((int) dim.getWidth());
78
                        windowInfo.setHeight((int) dim.getHeight());
79
                        windowInfo.setTitle(Messages.getText("install_package"));
80
                }
81
                return windowInfo;
82
        }
83

    
84
        @Override
85
        public Object getWindowProfile() {
86
                return WindowInfo.DIALOG_PROFILE;
87
        }
88

    
89
}