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
/**
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.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
                add(makePluginPackageWizard.asJComponent(), BorderLayout.CENTER);
64
        }
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
                        windowInfo.setTitle(Messages.getText("Create_installation_package"));
74
                }
75
                return windowInfo;
76
        }
77

    
78
        public Object getWindowProfile() {
79
                return WindowInfo.DIALOG_PROFILE;
80
        }
81
}