Re: [qooxdoo-devel] Problem disposing of a dialog on "OK" in Firefox

2007-02-15 Thread Sebastian Werner
Hi Hugh! To use a timeout in these cases is always a good idea. This is because otherwise you would break the internal state handling of qooxdoo. There occour a mousedown but never a mouseout again over this button (capturing problem). I don't see another way how to workaround this. Sebas

[qooxdoo-devel] Problem disposing of a dialog on "OK" in Firefox

2007-02-15 Thread Hugh Gibson
We just hit a problem in disposing of a dialog when OK was pressed, in FF 2. When OK was pressed we got the information we wanted from it, then called .close and .dispose. However, we got an error report: ERROR: qx.event.handler.EventHandler[30]: Failed to handle mouse event: TypeError - vStates

Re: [qooxdoo-devel] Disable/Enable Debug PopUp Window

2007-02-15 Thread Fabian Jakobs
Nick Glencross schrieb: > Hugh Gibson wrote: > >>> Yes, you an control it in the HTML itself, so for instance, I have: >>> >> For 0.6.5 this is: >> >>// >>// Set up logging as appropriate >>// >>if (qx.IS_SOURCE) >> { >> qx.log.Logger.ROOT_LOGGER.setMinLevel(qx

Re: [qooxdoo-devel] Method broken by make build?

2007-02-15 Thread Simon Bull
Hi Fabian, Thanks -- I tested your solution and it works perfectly :) Simon - Original Message From: Fabian Jakobs <[EMAIL PROTECTED]> To: qooxdoo Development Sent: Thursday, 15 February, 2007 6:15:03 PM Subject: Re: [qooxdoo-devel] Method broken by make build? Hi Simon, the proble

Re: [qooxdoo-devel] Disable/Enable Debug PopUp Window

2007-02-15 Thread Nick Glencross
Hugh Gibson wrote: >> Yes, you an control it in the HTML itself, so for instance, I have: > > For 0.6.5 this is: > >// >// Set up logging as appropriate >// >if (qx.IS_SOURCE) > { > qx.log.Logger.ROOT_LOGGER.setMinLevel(qx.log.Logger.LEVEL_DEBUG); > } >else >

[qooxdoo-devel] Question about Eclipse RAP

2007-02-15 Thread carlos
Hi ppl, First off, sorry if this is a silly question. Will Eclipse RAP Project provide a visual editor to Qooxdoo UIs? Or maybe it is already providing? We're working on some serious projects based on Qooxdoo, and thats implies in making complex interfaces. Any help on developing UIs would

Re: [qooxdoo-devel] Disable/Enable Debug PopUp Window

2007-02-15 Thread Hugh Gibson
> Yes, you an control it in the HTML itself, so for instance, I have: For 0.6.5 this is: // // Set up logging as appropriate // if (qx.IS_SOURCE) { qx.log.Logger.ROOT_LOGGER.setMinLevel(qx.log.Logger.LEVEL_DEBUG); } else { qx.log.Logger.ROOT_LOGGER.set

Re: [qooxdoo-devel] A couple of unresolved problems

2007-02-15 Thread Nick Glencross
On 13/02/07, Dietrich Streifert <[EMAIL PROTECTED]> wrote: > > The excerpt from this is that in the keydown listener first set the focus > to the button (by calling setFocused(true)) and then reuse the event by > calling dispatchEvent(event). > The call to setFocused should move the focus away fr

Re: [qooxdoo-devel] A couple of unresolved problems

2007-02-15 Thread Nick Glencross
On 13/02/07, Fabian Jakobs <[EMAIL PROTECTED]> wrote: > Hi Nick, > We have turned IS_SOURCE into the setting "qx.isSource" to make it more > consistent. You can use > > if (qx.core.Setting.get("qx.isSource")) {... } > > One other alternative os using the "qx.debug" variant > (http://qooxdoo.org/do

Re: [qooxdoo-devel] Copying multiple icon theme resources with "make build"

2007-02-15 Thread Erich Konicek
In your Applcation class include: /* #use(qx.theme.icon.Nuvola) #use(qx.theme.icon.NuoveXT) #use(qx.theme.icon.CrystalClear) #use(qx.theme.icon.VistaInspirate) ***

Re: [qooxdoo-devel] Proposing exciting new OO features

2007-02-15 Thread Fabian Jakobs
Hi David, > I also am very happy and excited with the new features. > > I have read this in the wiki: > > "this.base(arguments, x) is internally mapped to arguments.callee.call(this, > x). The latter form can be handled by JavaScript natively, which means it is > very efficient. Therefore it is pla

Re: [qooxdoo-devel] Proposing exciting new OO features

2007-02-15 Thread dperez
I also am very happy and excited with the new features. I have read this in the wiki: "this.base(arguments, x) is internally mapped to arguments.callee.call(this, x). The latter form can be handled by JavaScript natively, which means it is very efficient. Therefore it is planned to convert the s