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 40557 jjdelcerro
/**
2
 * gvSIG. Desktop Geographic Information System.
3 40435 jjdelcerro
 *
4 40557 jjdelcerro
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6 40435 jjdelcerro
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8 40557 jjdelcerro
 * as published by the Free Software Foundation; either version 3
9 40435 jjdelcerro
 * of the License, or (at your option) any later version.
10 40557 jjdelcerro
 *
11 40435 jjdelcerro
 * 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 40557 jjdelcerro
 *
16 40435 jjdelcerro
 * 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 40557 jjdelcerro
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 40435 jjdelcerro
 * MA  02110-1301, USA.
20 40557 jjdelcerro
 *
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 40435 jjdelcerro
 */
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 43126 jjdelcerro
import org.gvsig.installer.swing.api.SwingInstallerManager;
43 40435 jjdelcerro
import org.gvsig.installer.swing.api.execution.InstallPackageWizardException;
44 43126 jjdelcerro
import org.gvsig.installer.swing.api.execution.InstallWizardPanel;
45 40435 jjdelcerro
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 41620 jjdelcerro
        public InstallPackageWindow(File applicationFolder, File installFolder,
56
                boolean skipBundleSelection)
57 40435 jjdelcerro
                        throws LocatorException, InstallPackageWizardException {
58
                super();
59 43126 jjdelcerro
                SwingInstallerManager manager = SwingInstallerLocator.getSwingInstallerManager();
60
                InstallWizardPanel installPackageWizard = manager.createInstallPackageWizard(
61
                        applicationFolder, installFolder
62
                );
63 41620 jjdelcerro
                installPackageWizard.setWizardActionListener(new WindowInstallerListener(this));
64 40435 jjdelcerro
                this.setLayout(new BorderLayout());
65 43126 jjdelcerro
                installPackageWizard.setSkipSelectBundleWizardPage(skipBundleSelection);
66
                installPackageWizard.setSkipTypicalOrAdvancedWizardPage(true);
67
68
                add(installPackageWizard.asJComponent(), BorderLayout.CENTER);
69 40435 jjdelcerro
        }
70
71 43126 jjdelcerro
        @Override
72 40435 jjdelcerro
        public WindowInfo getWindowInfo() {
73
                if (windowInfo == null) {
74 41620 jjdelcerro
                        windowInfo = new WindowInfo(WindowInfo.MAXIMIZABLE
75 40435 jjdelcerro
                                        | 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 43126 jjdelcerro
        @Override
85 40435 jjdelcerro
        public Object getWindowProfile() {
86
                return WindowInfo.DIALOG_PROFILE;
87
        }
88
89
}