JBoss Tools SVN: r4052 - in branches/jbosstools_xulrunner/vpe/plugins/org.jboss.tools.vpe.xulrunner: src/org/jboss/tools/vpe/xulrunner/browser and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: svasilyev
Date: 2007-10-08 04:36:12 -0400 (Mon, 08 Oct 2007)
New Revision: 4052
Modified:
branches/jbosstools_xulrunner/vpe/plugins/org.jboss.tools.vpe.xulrunner/META-INF/MANIFEST.MF
branches/jbosstools_xulrunner/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/browser/XulRunnerBrowser.java
Log:
http://jira.jboss.org/jira/browse/JBIDE-1040
Modified: branches/jbosstools_xulrunner/vpe/plugins/org.jboss.tools.vpe.xulrunner/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools_xulrunner/vpe/plugins/org.jboss.tools.vpe.xulrunner/META-INF/MANIFEST.MF 2007-10-08 08:26:29 UTC (rev 4051)
+++ branches/jbosstools_xulrunner/vpe/plugins/org.jboss.tools.vpe.xulrunner/META-INF/MANIFEST.MF 2007-10-08 08:36:12 UTC (rev 4052)
@@ -7,7 +7,6 @@
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
org.mozilla.xpcom,
- org.jboss.tools.vpe.mozilla.xulrunner,
org.jboss.tools.common
Eclipse-LazyStart: true
Export-Package: org.jboss.tools.vpe.xulrunner;uses:="org.eclipse.jface.resource,org.eclipse.ui.plugin,org.osgi.framework",
Modified: branches/jbosstools_xulrunner/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/browser/XulRunnerBrowser.java
===================================================================
--- branches/jbosstools_xulrunner/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/browser/XulRunnerBrowser.java 2007-10-08 08:26:29 UTC (rev 4051)
+++ branches/jbosstools_xulrunner/vpe/plugins/org.jboss.tools.vpe.xulrunner/src/org/jboss/tools/vpe/xulrunner/browser/XulRunnerBrowser.java 2007-10-08 08:36:12 UTC (rev 4052)
@@ -52,7 +52,7 @@
public class XulRunnerBrowser implements nsIWebBrowserChrome,
nsIWebProgressListener, nsITooltipListener {
- private static String XULRUNNER_BUNDLE = "org.jboss.tools.vpe.mozilla.xulrunner"; //$NON-NLS-1$
+ private static String XULRUNNER_BUNDLE;
private static String XULRUNNER_ENTRY = "/xulrunner";
// TEMPORARY CODE (@see org.eclipse.swt.browser.Mozilla)
@@ -68,105 +68,40 @@
private Browser browser = null;
private nsIWebBrowser webBrowser = null;
private long chrome_flags = nsIWebBrowserChrome.CHROME_ALL;
+
+ static {
+ XULRUNNER_BUNDLE = (new StringBuffer("org.mozilla.xulrunner")) // $NON-NLS-1$
+ .append(".").append(Platform.getWS()) // $NON-NLS-1$
+ .append(".").append(Platform.getOS()) // $NON-NLS-1$
+ .toString();
+
+ if (!Platform.OS_MACOSX.equals(Platform.getOS())) {
+ XULRUNNER_BUNDLE = (new StringBuffer(XULRUNNER_BUNDLE))
+ .append(".").append(Platform.getOSArch())
+ .toString();
+ }
+ }
-// private boolean busyResizeFlag = false;
-
public XulRunnerBrowser(Composite parent) throws XulRunnerException {
mozilla = Mozilla.getInstance();
String xulRunnerPath = getXulRunnerPath();
- Boolean isXulRunnerInitialized = "true".equals(System.getProperty(XULRUNNER_INITIALIZED));
+ Boolean isXulRunnerInitialized = "true".equals(System.getProperty(XULRUNNER_INITIALIZED)); // $NON-NLS-1$
if (!isXulRunnerInitialized) {
File file = new File(xulRunnerPath);
mozilla.initialize(file);
mozilla.initEmbedding(file, file, new AppFileLocProvider(file));
- System.setProperty(XULRUNNER_INITIALIZED, "true");
+ System.setProperty(XULRUNNER_INITIALIZED, "true"); // $NON-NLS-1$
}
browser = new Browser(parent, SWT.MOZILLA);
- // TODO Sergey Vasilyelv insert observer here
-
- // TODO Sergey Vasilyev add localization
setBoolRootPref(PREFERENCE_DISABLEOPENDURINGLOAD, true);
setBoolRootPref(PREFERENCE_DISABLEWINDOWSTATUSCHANGE, true);
-// nsIComponentManager componentManager = mozilla.getComponentManager();
-// nsIAppShell appShell = (nsIAppShell) componentManager.createInstance(XPCOM.NS_IAPPSHELL_CID, null, nsIAppShell.NS_IAPPSHELL_IID);
-// appShell.create(null, null);
-// appShell.spinup();
-//
-// nsIServiceManager serviceManager = mozilla.getServiceManager();
-// nsIWindowWatcher windowWatcher = (nsIWindowWatcher) serviceManager.getServiceByContractID(XPCOM.NS_WINDOWWATCHER_CONTRACTID, nsIWindowWatcher.NS_IWINDOWWATCHER_IID);
-// windowWatcher.setWindowCreator(new WindowCreator());
-
- webBrowser = (nsIWebBrowser) browser.getWebBrowser();
-// webBrowser = (nsIWebBrowser) componentManager.createInstance(XPCOM.NS_IWEBBROWSER_CID, null, nsIWebBrowser.NS_IWEBBROWSER_IID); //$NON-NLS-1$
-// webBrowser.setContainerWindow(this);
-
nsIWebBrowserSetup setup = (nsIWebBrowserSetup) webBrowser.queryInterface(nsIWebBrowserSetup.NS_IWEBBROWSERSETUP_IID);
setup.setProperty(nsIWebBrowserSetup.SETUP_IS_CHROME_WRAPPER, 1);
-// nsIBaseWindow baseWindow = (nsIBaseWindow) webBrowser.queryInterface(nsIBaseWindow.NS_IBASEWINDOW_IID);
-//
-// Rectangle rect = getClientArea();
-// if (rect.isEmpty()) {
-// rect.height = 1;
-// rect.width = 1;
-// }
-// baseWindow.initWindow(handle, 0, 0, 0, rect.height, rect.width);
-// baseWindow.create();
-// baseWindow.setVisibility(true);
-
-// Listener listener = new Listener(){
-// public void handleEvent (Event event) {
-// switch(event.type) {
-// case SWT.Dispose:
-// onDispose();
-// break;
-// case SWT.Activate:
-// case SWT.FocusIn:
-// onFocusGained();
-// break;
-// case SWT.Deactivate:
-// if (browser == event.display.getFocusControl()) {
-// onFocusLost();
-// }
-// break;
-// case SWT.Resize:
-// case SWT.Show:
-// /*
-// * Feature on GTK Mozilla. Mozilla does not show up when
-// * its container (a GTK fixed handle) is made visible
-// * after having been hidden. The workaround is to reset
-// * its size after the container has been made visible.
-// */
-// if (!busyResizeFlag) {
-// busyResizeFlag = true;
-// event.display.asyncExec(new Runnable() {
-// public void run() {
-// if (browser.isDisposed()) return;
-// onResize();
-// busyResizeFlag = false;
-// }
-// });
-// }
-// break;
-// case SWT.KeyDown:
-// onKeyDown();
-// break;
-// }
-// }
-// };
-//
-// browser.addListener(SWT.Dispose, listener);
-// browser.addListener(SWT.Resize, listener);
-// browser.addListener(SWT.FocusIn, listener);
-// browser.addListener(SWT.KeyDown, listener);
-// browser.addListener(SWT.Activate, listener);
-// browser.addListener(SWT.Deactivate, listener);
-// browser.addListener(SWT.Show, listener);
-
webBrowser.addWebBrowserListener(this, nsIWebProgressListener.NS_IWEBPROGRESSLISTENER_IID);
webBrowser.addWebBrowserListener(this, nsITooltipListener.NS_ITOOLTIPLISTENER_IID);
}
@@ -214,38 +149,6 @@
}
- private void onDispose() {
- nsIBaseWindow baseWindow = (nsIBaseWindow) webBrowser.queryInterface(nsIBaseWindow.NS_IBASEWINDOW_IID);
- baseWindow.destroy();
- }
-
- private void onFocusGained() {
- nsIWebBrowserFocus webBrowserFocus = (nsIWebBrowserFocus) webBrowser.queryInterface(nsIWebBrowserFocus.NS_IWEBBROWSERFOCUS_IID);
- webBrowserFocus.activate();
- webBrowserFocus.setFocusAtFirstElement();
- }
-
- private void onFocusLost() {
- nsIWebBrowserFocus webBrowserFocus = (nsIWebBrowserFocus) webBrowser.queryInterface(nsIWebBrowserFocus.NS_IWEBBROWSERFOCUS_IID);
- webBrowserFocus.deactivate();
- }
-
- private void onResize() {
- nsIBaseWindow baseWindow = (nsIBaseWindow) webBrowser.queryInterface(nsIBaseWindow.NS_IBASEWINDOW_IID);
-
- Rectangle rect = browser.getClientArea();
- if (rect.isEmpty()) {
- rect.height = 1;
- rect.width = 1;
- }
-
- baseWindow.setPositionAndSize(rect.x, rect.y, rect.width, rect.height, true);
- }
-
- private void onKeyDown() {
- System.out.println("XulRunnerBrowser.onKeyDown()");
- }
-
public static String getXulRunnerBundle() {
return XULRUNNER_BUNDLE;
}
17 years, 2 months
JBoss Tools SVN: r4045 - in branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source: .settings and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: svasilyev
Date: 2007-10-08 03:52:32 -0400 (Mon, 08 Oct 2007)
New Revision: 4045
Added:
branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/.classpath
branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/.project
branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/.settings/
branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/.settings/org.eclipse.jdt.core.prefs
branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/META-INF/
branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/META-INF/MANIFEST.MF
branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/plugin.xml
branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/src/
branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/src/org.mozilla.xpcom_1.8.1.3-20070904/
branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/src/org.mozilla.xpcom_1.8.1.3-20070904/MozillaInterfaces-src.jar
Log:
http://jira.jboss.org/jira/browse/JBIDE-1040
Added: branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/.classpath
===================================================================
--- branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/.classpath (rev 0)
+++ branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/.classpath 2007-10-08 07:52:32 UTC (rev 4045)
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.4"/>
+ <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
Added: branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/.project
===================================================================
--- branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/.project (rev 0)
+++ branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/.project 2007-10-08 07:52:32 UTC (rev 4045)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.mozilla.xpcom.source</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.ManifestBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.SchemaBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.PluginNature</nature>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ </natures>
+</projectDescription>
Added: branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/.settings/org.eclipse.jdt.core.prefs (rev 0)
+++ branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/.settings/org.eclipse.jdt.core.prefs 2007-10-08 07:52:32 UTC (rev 4045)
@@ -0,0 +1,7 @@
+#Mon Oct 08 10:47:34 EEST 2007
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.2
+org.eclipse.jdt.core.compiler.compliance=1.4
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=warning
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=warning
+org.eclipse.jdt.core.compiler.source=1.3
Added: branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/META-INF/MANIFEST.MF (rev 0)
+++ branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/META-INF/MANIFEST.MF 2007-10-08 07:52:32 UTC (rev 4045)
@@ -0,0 +1,12 @@
+Manifest-Version: 1.0
+Ant-Version: Apache Ant 1.7.0
+Created-By: 1.5.0_07-b03 (Sun Microsystems Inc.)
+Bundle-ManifestVersion: 2
+Bundle-Name: Mozilla XPCOM For Java
+Bundle-SymbolicName: org.mozilla.xpcom.source;singleton:=true
+Bundle-Version: 1.8.1.3-20070904
+Bundle-ClassPath: MozillaInterfaces.jar
+Bundle-Vendor: mozilla.org
+Bundle-RequiredExecutionEnvironment: J2SE-1.4
+Require-Bundle: org.eclipse.pde.ui
+
Added: branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/plugin.xml
===================================================================
--- branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/plugin.xml (rev 0)
+++ branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/plugin.xml 2007-10-08 07:52:32 UTC (rev 4045)
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.2"?>
+<plugin>
+ <extension
+ point="org.eclipse.pde.core.source">
+ <location path="src"/>
+ </extension>
+</plugin>
Added: branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/src/org.mozilla.xpcom_1.8.1.3-20070904/MozillaInterfaces-src.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools_xulrunner/vpe/xul_spike/org.mozilla.xpcom.source/src/org.mozilla.xpcom_1.8.1.3-20070904/MozillaInterfaces-src.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
17 years, 2 months
JBoss Tools SVN: r4043 - in branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom: .settings and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: svasilyev
Date: 2007-10-08 03:51:10 -0400 (Mon, 08 Oct 2007)
New Revision: 4043
Added:
branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/.classpath
branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/.project
branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/.settings/
branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/.settings/org.eclipse.jdt.core.prefs
branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/META-INF/
branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/META-INF/MANIFEST.MF
branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/MozillaInterfaces.jar
Log:
http://jira.jboss.org/jira/browse/JBIDE-1040
Added: branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/.classpath
===================================================================
--- branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/.classpath (rev 0)
+++ branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/.classpath 2007-10-08 07:51:10 UTC (rev 4043)
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry exported="true" kind="lib" path="MozillaInterfaces.jar"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.4"/>
+ <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
Added: branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/.project
===================================================================
--- branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/.project (rev 0)
+++ branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/.project 2007-10-08 07:51:10 UTC (rev 4043)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.mozilla.xpcom</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.ManifestBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.SchemaBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.PluginNature</nature>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ </natures>
+</projectDescription>
Added: branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/.settings/org.eclipse.jdt.core.prefs (rev 0)
+++ branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/.settings/org.eclipse.jdt.core.prefs 2007-10-08 07:51:10 UTC (rev 4043)
@@ -0,0 +1,7 @@
+#Mon Oct 08 10:47:34 EEST 2007
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.2
+org.eclipse.jdt.core.compiler.compliance=1.4
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=warning
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=warning
+org.eclipse.jdt.core.compiler.source=1.3
Added: branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/META-INF/MANIFEST.MF (rev 0)
+++ branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/META-INF/MANIFEST.MF 2007-10-08 07:51:10 UTC (rev 4043)
@@ -0,0 +1,11 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: Mozilla XPCOM For Java
+Bundle-SymbolicName: org.mozilla.xpcom
+Bundle-Version: 1.8.1.3-20070904
+Bundle-ClassPath: MozillaInterfaces.jar
+Export-Package: org.mozilla.interfaces,
+ org.mozilla.xpcom
+Bundle-Vendor: mozilla.org
+Eclipse-BuddyPolicy: registered
+Bundle-RequiredExecutionEnvironment: J2SE-1.4
Added: branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/MozillaInterfaces.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools_xulrunner/vpe/plugins/org.mozilla.xpcom/MozillaInterfaces.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
17 years, 2 months
JBoss Tools SVN: r4040 - trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/internal/project/facet.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2007-10-05 19:01:47 -0400 (Fri, 05 Oct 2007)
New Revision: 4040
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/internal/project/facet/SeamInstallWizardPage.java
Log:
I'm trying to fix http://jira.jboss.org/jira/browse/JBIDE-1031
I assume, that there is no problems with first Seam Web Project wizard page that also have combos. So I find only one difference between WTP and Seam wizard pages, here it is:
Dialog.applyDialogFont(parent);
I've added this line to Seam Facet Wizard page.
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/internal/project/facet/SeamInstallWizardPage.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/internal/project/facet/SeamInstallWizardPage.java 2007-10-05 16:31:26 UTC (rev 4039)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/internal/project/facet/SeamInstallWizardPage.java 2007-10-05 23:01:47 UTC (rev 4040)
@@ -29,6 +29,7 @@
import org.eclipse.datatools.connectivity.internal.ui.wizards.NewCPWizardCategoryFilter;
import org.eclipse.jdt.core.JavaConventions;
import org.eclipse.jdt.internal.compiler.impl.CompilerOptions;
+import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.wizard.IWizard;
import org.eclipse.jface.wizard.Wizard;
@@ -368,6 +369,7 @@
}
}
);
+ Dialog.applyDialogFont(parent);
}
/**
@@ -570,7 +572,6 @@
WizardDialog dialog = new WizardDialog(Display.getCurrent().getActiveShell(), wiz);
dialog.open();
-
if (added.size()>0) {
SeamRuntimeManager.getInstance().addRuntime(added.get(0));
getFieldEditor().setValue(added.get(0).getName());
17 years, 3 months