xulrunner

Building Cross Platform app - recommendation

扶醉桌前 提交于 2019-12-01 05:49:22
I need to build a fairly simple app but it needs to work on both PC and Mac. It also needs to be redistributable on a disc or usb drive as a standalone desktop app. Initially I thought AIR would be perfect for this (it ticks all the API requirements), but the difficulty is making it distributable, as the app would require the AIR runtime to be installed to run. I came across Shu Player as an option as it seems to be able to package the AIR runtime with the app and do a (silent?) install. However this seems to break the T&C from Adobe ( as outlined here ) so I'm not sure about the legality.

Using the 64bit XulRunner in Eclipse SWT under Windows

故事扮演 提交于 2019-12-01 04:20:33
问题 Is it possible to use the 64bit XulRunner for Windows (available from here) with the Eclipse browser widget? It works fine under 32bit Windows and the answer to this question explains how this works. But when I try this under 64bit Windows I get the following exception: org.eclipse.swt.SWTError: No more handles (java.lang.UnsatisfiedLinkError: Could not load SWT library. Reasons: no swt-xulrunner-win32-3834 in java.library.path no swt-xulrunner-win32 in java.library.path Can't load library: C

What is the simplest way to set up a BIRT report viewer for a xulrunner application?

。_饼干妹妹 提交于 2019-12-01 04:04:13
I recently began using BIRT and have developed a report to use with my xulrunner application. What I haven't yet figured out is how I should deploy the viewer. It seems like BIRT mostly targets Java applications, so there are instructions for deploying on J2EE, JBoss, and other technologies -- with which I am not familiar (but I'm not developing in Java anyway). Reviewing this article on deploying BIRT and reviewing the deployment details on BIRT's web site, I'm not sure where to go. I wasn't expecting to have to add some large Java dependency for the xulrunner application --is there no way I

RCP with SWT.Browser and XULRunner

ε祈祈猫儿з 提交于 2019-11-30 12:17:18
问题 I'm developing an RCP application (Windows) with SWT.Browser ( SWT.MOZILLA ): Browser browser = new Browser(parent, SWT.MOZILLA); It's working fine with the old XULRunner 3.6.23 and the installation described here: xulrunner.exe --register-global I want to use the new XULRunner 8.x, but as mentioned here the old way to install XULRunner was removed. So I added the XULRunner-Path programmatically: System.setProperty("org.eclipse.swt.browser.XULRunnerPath", "Path\\To\\xulrunner_8.x"); But when

Embedding XULRunner application on Java

和自甴很熟 提交于 2019-11-30 10:19:38
My goal is to get Limewire(JAVA) and Songbird(XULRunner) to run together. I was thinking the best way is to run the XUL application(songbird) inside a JAVA swing panel. Is there another way? Would it be better or possible to have the GUI entirely in XUL, and then access my JAVA objects somehow? How would I go about doing this? Thanks Take a look at JRex , as it might let you peek into a couple of ideas. Other than that, I'd also research about Rhinohide as well. Take a look at DJ Native Swing , a native Swing implementation using SWT and Xulrunner. I am currently researching XUL for a new

RCP with SWT.Browser and XULRunner

一笑奈何 提交于 2019-11-30 02:26:38
I'm developing an RCP application (Windows) with SWT.Browser ( SWT.MOZILLA ): Browser browser = new Browser(parent, SWT.MOZILLA); It's working fine with the old XULRunner 3.6.23 and the installation described here : xulrunner.exe --register-global I want to use the new XULRunner 8.x, but as mentioned here the old way to install XULRunner was removed. So I added the XULRunner-Path programmatically: System.setProperty("org.eclipse.swt.browser.XULRunnerPath", "Path\\To\\xulrunner_8.x"); But when I start my application, I'll get the following error org.eclipse.swt.SWTError: XPCOM error -2147467261

Is there an xhtml.xsd equivalent available for HTML5?

梦想与她 提交于 2019-11-29 17:37:14
问题 I am developing an appplication based on Mozilla XULRunner. I am using the xhmtl1-strict.xsd provided by the W3C to fetch the attribute. Now the requirement came to add the <video> tag to my application, but my application is not supporting any HTML5 elements or attributes. So, any suggestions? 回答1: HTML5 does not have a doctype definition or an XML schema definition. This is because, although it shares the same syntax as its predecessor HTML 4, HTML5 itself is neither based on SGML nor XML.

Is history.replaceState broken for XUL applications and plugins?

谁都会走 提交于 2019-11-29 16:54:29
I have a browser object in my XUL application like so: <?xml version="1.0"?> <?xml-stylesheet href="chrome://global/skin" type="text/css"?> <window title="Students" xmlns:html="http://www.w3.org/1999/xhtml" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" width="800px" height="500px"> <groupbox flex="1"> <caption label="Students"/> <browser type="chrome" src="chrome://myapp/content/index.html" flex="1"/> </groupbox> </window> And the index.html is: <!DOCTYPE html> <html> <head> <title>Student page</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

Embedding XULRunner application on Java

有些话、适合烂在心里 提交于 2019-11-29 14:56:55
问题 My goal is to get Limewire(JAVA) and Songbird(XULRunner) to run together. I was thinking the best way is to run the XUL application(songbird) inside a JAVA swing panel. Is there another way? Would it be better or possible to have the GUI entirely in XUL, and then access my JAVA objects somehow? How would I go about doing this? Thanks 回答1: Take a look at JRex, as it might let you peek into a couple of ideas. Other than that, I'd also research about Rhinohide as well. 回答2: Take a look at DJ

How to handle downloading in GeckoFX 29

只谈情不闲聊 提交于 2019-11-29 12:17:40
How can I handle downloading in GeckoFx I'm using version 29 I've found some ways like adding event of LauncherDialog_Download(object sender, LauncherDialogEvent e) But, I'm not able to add handler for this event I tried this for handler LauncherDialogFactory.Register(); LauncherDialog.Download += LauncherDialog_Download; But, it is showing as error, how can i add handler and is there any other ways to handle downloading in GeckoFx 29 ? In form load after your browser.navigate("http://www.domain.com"); Use this: LauncherDialog.Download += LauncherDialog_Download; Create LauncherDialog_Download