|
|
@ -10,6 +10,7 @@ import com.fr.design.update.ui.dialog.UpdateMainDialog; |
|
|
|
import com.fr.event.Event; |
|
|
|
import com.fr.event.Event; |
|
|
|
import com.fr.event.EventDispatcher; |
|
|
|
import com.fr.event.EventDispatcher; |
|
|
|
import com.fr.event.Listener; |
|
|
|
import com.fr.event.Listener; |
|
|
|
|
|
|
|
import com.fr.general.GeneralContext; |
|
|
|
import com.fr.log.FineLoggerFactory; |
|
|
|
import com.fr.log.FineLoggerFactory; |
|
|
|
import com.fr.stable.StableUtils; |
|
|
|
import com.fr.stable.StableUtils; |
|
|
|
import com.fr.workspace.Workspace; |
|
|
|
import com.fr.workspace.Workspace; |
|
|
@ -17,6 +18,7 @@ import com.fr.workspace.WorkspaceEvent; |
|
|
|
|
|
|
|
|
|
|
|
import javax.swing.*; |
|
|
|
import javax.swing.*; |
|
|
|
import java.io.File; |
|
|
|
import java.io.File; |
|
|
|
|
|
|
|
import java.util.Locale; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* @author richie |
|
|
|
* @author richie |
|
|
@ -27,6 +29,7 @@ public class UpmFinder { |
|
|
|
|
|
|
|
|
|
|
|
private static final String UPM_DIR = "/upm"; |
|
|
|
private static final String UPM_DIR = "/upm"; |
|
|
|
private static final String MAIN_RESOURCE_PATH = UPM_DIR + "/plugin_design.html"; |
|
|
|
private static final String MAIN_RESOURCE_PATH = UPM_DIR + "/plugin_design.html"; |
|
|
|
|
|
|
|
private static final String JXBROWSER = "com.teamdev.jxbrowser.chromium.Browser"; |
|
|
|
|
|
|
|
|
|
|
|
public static String installHome = FRContext.getCommonOperator().getWebRootPath(); |
|
|
|
public static String installHome = FRContext.getCommonOperator().getWebRootPath(); |
|
|
|
|
|
|
|
|
|
|
@ -56,13 +59,20 @@ public class UpmFinder { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static void showUPMDialog() { |
|
|
|
public static void showUPMDialog() { |
|
|
|
boolean flag = true; |
|
|
|
boolean hasJxBrowser = true; |
|
|
|
try { |
|
|
|
try { |
|
|
|
Class.forName("com.teamdev.jxbrowser.chromium.Browser"); |
|
|
|
Class.forName(JXBROWSER); |
|
|
|
} catch (ClassNotFoundException e) { |
|
|
|
} catch (ClassNotFoundException e) { |
|
|
|
flag = false; |
|
|
|
hasJxBrowser = false; |
|
|
|
} |
|
|
|
} |
|
|
|
if (flag) { |
|
|
|
if (hasJxBrowser) { |
|
|
|
|
|
|
|
showUpmPane(); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
showUpdatePane(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static void showUpmPane() { |
|
|
|
if (!checkUPMResourcesExist()){ |
|
|
|
if (!checkUPMResourcesExist()){ |
|
|
|
// upm下载
|
|
|
|
// upm下载
|
|
|
|
int val = FineJOptionPane.showConfirmDialog(null, Toolkit.i18nText("Fine-Design_Basic_Plugin_Shop_Need_Install"), |
|
|
|
int val = FineJOptionPane.showConfirmDialog(null, Toolkit.i18nText("Fine-Design_Basic_Plugin_Shop_Need_Install"), |
|
|
@ -87,8 +97,11 @@ public class UpmFinder { |
|
|
|
} |
|
|
|
} |
|
|
|
dialog.setVisible(true); |
|
|
|
dialog.setVisible(true); |
|
|
|
} |
|
|
|
} |
|
|
|
} else { |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static void showUpdatePane() { |
|
|
|
JOptionPane.showMessageDialog(DesignerContext.getDesignerFrame(), Toolkit.i18nText("Fine-Design_Update_Info_Plugin_Message")); |
|
|
|
JOptionPane.showMessageDialog(DesignerContext.getDesignerFrame(), Toolkit.i18nText("Fine-Design_Update_Info_Plugin_Message")); |
|
|
|
|
|
|
|
if (!GeneralContext.getLocale().equals(Locale.JAPAN)) { |
|
|
|
UpdateMainDialog dialog = new UpdateMainDialog(DesignerContext.getDesignerFrame()); |
|
|
|
UpdateMainDialog dialog = new UpdateMainDialog(DesignerContext.getDesignerFrame()); |
|
|
|
dialog.setAutoUpdateAfterInit(); |
|
|
|
dialog.setAutoUpdateAfterInit(); |
|
|
|
dialog.showDialog(); |
|
|
|
dialog.showDialog(); |
|
|
|