QxWT 1.0.1.0-rc1

Support forum for QxWT
Forum rules
All source posted to this group is dual licensed under EPL and LGPL by default beside stated otherwise

QxWT 1.0.1.0-rc1

Postby bartolomiew » Sun Feb 14, 2010 5:16 pm

Hi tom & all,

I'm just testing your great work with 1.0.0.1 and I can just say Woooooooooooooooow
So I decided to grab your svn sources, currently 1.0.1.0-rc1.
When compiling I've a lot of errors about not mappable characters in UTF-8. Many single-quote are displayed as Ò, Ó,Ô,Õ or Ö and other symbols.
I'm using Eclipse 3.5 on Windows XP french. After having replaced all those characters everything compile fine.

Anyways I can't find words to reflect how I'm impressed by your work.
bartolomiew
 
Posts: 4
Joined: Sun Feb 14, 2010 4:24 pm

Re: QxWT 1.0.1.0-rc1

Postby tom » Thu Feb 18, 2010 11:00 pm

Do you have pointers to classes with this problem?
tom
Site Admin
 
Posts: 16
Joined: Thu Dec 17, 2009 12:16 pm

Re: QxWT 1.0.1.0-rc1

Postby bartolomiew » Fri Feb 19, 2010 6:21 am

As there is a lot of changes, I've made an SVN patch on trunk and uploaded it as attachment
Attachments
qxwt_patch.zip
(30.86 KiB) Downloaded 53 times
bartolomiew
 
Posts: 4
Joined: Sun Feb 14, 2010 4:24 pm

Re: QxWT 1.0.1.0-rc1

Postby tom » Sat Feb 20, 2010 4:28 pm

tom
Site Admin
 
Posts: 16
Joined: Thu Dec 17, 2009 12:16 pm

Re: QxWT 1.0.1.0-rc1

Postby tom » Sat Feb 20, 2010 6:22 pm

thanks for the patch - i checked the changes with attributions to you into the repo
tom
Site Admin
 
Posts: 16
Joined: Thu Dec 17, 2009 12:16 pm

Re: QxWT 1.0.1.0-rc1

Postby bartolomiew » Sun Feb 21, 2010 12:04 pm

This is really nothing compared to your work.
During the next 2 or 3 weeks I'll translate a framework using GXT 2.1.1 to QxWT for testing.
I use all the basic widgets and gwt-rpc, gwt-xmlrpc, ejb, gchart and I want to see if QxWT is a better soltution.
I think so but I must do the assessment. Especially on the graphics of Raphael, I must be able to reproduce what I did here: http://gwt-monitoring.appspot.com/

I've register on your mantis but haven't receive mail confirmation.

Regards
bartolomiew
 
Posts: 4
Joined: Sun Feb 14, 2010 4:24 pm

Re: QxWT 1.0.1.0-rc1

Postby tom » Mon Feb 22, 2010 8:03 pm

ok. I'll take a look.
tom
Site Admin
 
Posts: 16
Joined: Thu Dec 17, 2009 12:16 pm

Re: QxWT 1.0.1.0-rc1

Postby bartolomiew » Sun Feb 28, 2010 5:36 pm

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)

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.

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 ?

Last, There are again not mappable characters in latest build, I'll post a patch next week
bartolomiew
 
Posts: 4
Joined: Sun Feb 14, 2010 4:24 pm

Re: QxWT 1.0.1.0-rc1

Postby tom » Sun Feb 28, 2010 7:58 pm

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
tom
Site Admin
 
Posts: 16
Joined: Thu Dec 17, 2009 12:16 pm


Return to QxWT

Who is online

Users browsing this forum: No registered users and 1 guest

cron