bartolomiew wrote:Hi,
I'm working on my framework based on QxWT and currently it's working very well.
I think there is just some missing helpfull classes like :
public class QxFormAtom extends QxAtom implements IQxForm, IQxNumberForm, IMQxForm { }
usefull to add label + led with color based on numeric value
public class QxFormButton extends QxAtom implements IQxForm, IMQxExecutable { }
So that we can do an QxForm.add(button,"text") and not only QxForm.addButton(button)
File a mantis bug for features and we can try to integrate it into the code base.
bartolomiew wrote:I've also searched for a method like getSelectedIndex() on comboBox, maybe it's just because I don't know so well how QooXDoo works.
It looks like qooxdoo it self doesn't has such a concept. See
http://demo.qooxdoo.org/1.0.x/apiviewer ... m.ComboBox for the API-Documentation.
bartolomiew wrote:Another thing I don't understand is how to use resource.
In my project.gwt.xml I added :
<!-- Other module inherits -->
<inherits name="org.ufacekit.qx.wrapper.QxScript" />
<inherits name="org.ufacekit.qx.QxEngine" />
<inherits name="org.ufacekit.qx.theme.modern.QxTheme" />
<inherits name="org.ufacekit.qx.theme.icon.oxygene.QxIconTheme" />
When compiling, in the war I can see directory :
war\project\qooxdoo-sdk\framework\source\resource\qx\icon\Oxygen
but for example if I want to add an image like "icon\Oxygen\32\actions\help-about.png" to a QxAtom with QxFormButton.setIcon(), is there any way to not refer to the fullpath name ?
Naturally you could use GWT.getModuleBaseUrl() + "qooxdoo-sdk/framework/source/resource/qx/icon/oxygen/32/actions/help-about.png". We need to find a way to plug us self into the qooxdoo-resource framework to use relative urls.
bartolomiew wrote:Last, There are again not mappable characters in latest build, I'll post a patch next week
I think I fixed the remaining once before doing the 1.0.1.0 release today. I had to apply your patches line by line because my eclipse refused to apply them.
Tom