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 / creation / MakePluginPackageWindow.java @ 43126

History | View | Annotate | Download (2.86 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.creation;
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.creation.MakePluginPackageWizard;
43
import org.gvsig.installer.swing.api.creation.MakePluginPackageWizardException;
44
import org.gvsig.tools.locator.LocatorException;
45
46
/**
47
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera Llodr&aacute;</a>
48
 */
49
public class MakePluginPackageWindow extends JPanel implements IWindow {
50
51
        private static final long serialVersionUID = 3423389124323013058L;
52
        WindowInfo windowInfo = null;
53
54
        public MakePluginPackageWindow(File applicationFolder, File installFolder)
55
                        throws LocatorException, MakePluginPackageWizardException {
56
                super();
57
                MakePluginPackageWizard makePluginPackageWizard = SwingInstallerLocator
58
                                .getSwingInstallerManager().createMakePluginPackageWizard(
59
                                                applicationFolder, installFolder);
60
                makePluginPackageWizard
61
                                .setWizardActionListener(new WindowInstallerListener(this));
62
                this.setLayout(new BorderLayout());
63 43126 jjdelcerro
                add(makePluginPackageWizard.asJComponent(), BorderLayout.CENTER);
64 40435 jjdelcerro
        }
65
66
        public WindowInfo getWindowInfo() {
67
                if (windowInfo == null) {
68
                        windowInfo = new WindowInfo(WindowInfo.MODELESSDIALOG
69
                                        | WindowInfo.ICONIFIABLE | WindowInfo.RESIZABLE);
70
                        Dimension dim = getPreferredSize();
71
                        windowInfo.setWidth((int) dim.getWidth());
72
                        windowInfo.setHeight((int) dim.getHeight());
73 41620 jjdelcerro
                        windowInfo.setTitle(Messages.getText("Create_installation_package"));
74 40435 jjdelcerro
                }
75
                return windowInfo;
76
        }
77
78
        public Object getWindowProfile() {
79
                return WindowInfo.DIALOG_PROFILE;
80
        }
81
}