Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.app / org.gvsig.app.mainplugin / src / main / java / org / gvsig / app / extension / TranslationsPackageExtension.java @ 44172

History | View | Annotate | Download (2.9 KB)

1 40558 jjdelcerro
/**
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 41280 jjdelcerro
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 40558 jjdelcerro
 * 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 41280 jjdelcerro
 * MA 02110-1301, USA.
20 40558 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
 */
24 40435 jjdelcerro
package org.gvsig.app.extension;
25
26 42528 jjdelcerro
import javax.swing.JPanel;
27 40435 jjdelcerro
import org.gvsig.andami.PluginsLocator;
28 41280 jjdelcerro
import org.gvsig.andami.PluginsManager;
29
import org.gvsig.andami.installer.translations.TranslationsInstallerFactory;
30 40435 jjdelcerro
import org.gvsig.andami.plugins.Extension;
31 41280 jjdelcerro
import org.gvsig.app.ApplicationLocator;
32
import org.gvsig.app.ApplicationManager;
33 42528 jjdelcerro
import org.gvsig.installer.lib.api.InstallerManager;
34
import org.gvsig.installer.swing.api.SwingInstallerLocator;
35
import org.gvsig.installer.swing.api.SwingInstallerManager;
36
import org.gvsig.tools.swing.api.Component;
37 41280 jjdelcerro
import org.gvsig.tools.swing.api.windowmanager.WindowManager;
38 40435 jjdelcerro
import org.slf4j.Logger;
39
import org.slf4j.LoggerFactory;
40
41 41280 jjdelcerro
public class TranslationsPackageExtension extends Extension {
42 40435 jjdelcerro
43 41280 jjdelcerro
    private static Logger logger = LoggerFactory
44
            .getLogger(TranslationsPackageExtension.class);
45 40435 jjdelcerro
46 41280 jjdelcerro
    public void initialize() {
47
        // Do nothing
48
    }
49 40435 jjdelcerro
50 41280 jjdelcerro
    public void postInitialize() {
51
        super.postInitialize();
52
    }
53 40435 jjdelcerro
54 41280 jjdelcerro
    public void execute(String actionCommand) {
55
        if ( "tools-devel-translations-package".equalsIgnoreCase(actionCommand) ) {
56
            ApplicationManager application = ApplicationLocator.getManager();
57 42528 jjdelcerro
            PluginsManager pluginsManager = PluginsLocator.getManager();
58
            SwingInstallerManager installerManager = SwingInstallerLocator.getSwingInstallerManager();
59
            Component packager = installerManager.createPackagerPanel(
60
                    TranslationsInstallerFactory.PROVIDER_NAME,
61
                    pluginsManager.getApplicationI18nFolder(),
62 42699 dmartinezizquierdo
                    pluginsManager.getInstallFolder()
63 42528 jjdelcerro
            );
64 41280 jjdelcerro
            application.getUIManager().showWindow(
65 42528 jjdelcerro
                    (JPanel)packager.asJComponent(),
66 41280 jjdelcerro
                    application.translate("_Translations_package"),
67
                    WindowManager.MODE.WINDOW
68
            );
69
        }
70
    }
71 40435 jjdelcerro
72 41280 jjdelcerro
    public boolean isEnabled() {
73
        return true;
74
    }
75 40435 jjdelcerro
76 41280 jjdelcerro
    public boolean isVisible() {
77
        return true;
78
    }
79 40435 jjdelcerro
}