[qooxdoo-devel] Re: Cleaning up objects...

2006-02-01 Thread bobmanc
> To complete the cycle (after a close) you can also dispose a window, if > you are really sure, that you don't need it anymore. The problem in this > case is, that JS itself has no possibilities to do a real garbage > collection. The only thing the qooxdoo disposer do, is to decouple > object

[qooxdoo-devel] superclass event propagation (easy question)

2006-02-01 Thread Michael Wilson
I've sub-classed a QxListView and written my own event handler for keypress. My question is after I look at the event how do I propagate the event up to the parent widget? Seems simple but I can't seem to figure it out. --- This SF.net email

Re: [qooxdoo-devel] How to set the cursor into a text field revisited (renderer branch)

2006-02-01 Thread Dietrich Streifert
Here is the patch Best regards... Sebastian Werner schrieb: Dietrich Streifert schrieb: OK I had a look through the sources and got (hopefully) the place where the focus is set. It is in QxWidget.js: proto._visualizeFocus = function() { if (!QxFocusManager.mouseFocus && this.getEnableEleme

Re: [qooxdoo-devel] Focus

2006-02-01 Thread Stefano Marocco
Sebastian Werner ha scritto: Stefano Marocco schrieb: Hi, how I can get the currently focused widget? yourWidget.setFocused(true); Sorry, I not explained well my problem: I need to retrieve the widget that has focus. Stefano --- This

Re: [qooxdoo-devel] How to set the cursor into a text field revisited (renderer branch)

2006-02-01 Thread Dietrich Streifert
Well me temporary solution is to overwrite the _visualizeFocus method for QxTextField (somewhere after qooxdoo.js is included): QxTextField.prototype._visualizeFocus = function() { if (this.getEnableElementFocus()) { try { this.getElement().focus(); } catch(ex) {}; }; this.setFoc

Re: [qooxdoo-devel] Tabs move when you click on them - feature?

2006-02-01 Thread Hugh Gibson
> >> This should completely be configurable using the appearance layer of > >> qooxdoo. We could probably code some tab behavior which behaves more > >> like the native ones. Have you some time to help? ;) > > > > Point me at the code, give me a spec, and I'll take a look :-) > > I meant appear

Re: [qooxdoo-devel] How to set the cursor into a text field revisited (renderer branch)

2006-02-01 Thread Sebastian Werner
Dietrich Streifert schrieb: OK I had a look through the sources and got (hopefully) the place where the focus is set. It is in QxWidget.js: proto._visualizeFocus = function() { if (!QxFocusManager.mouseFocus && this.getEnableElementFocus()) { try { this.getElement().focus(); } catc

Re: [qooxdoo-devel] Focus

2006-02-01 Thread Sebastian Werner
Stefano Marocco schrieb: Hi, how I can get the currently focused widget? yourWidget.setFocused(true); Sebastian Thanks Stefano --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop!

[qooxdoo-devel] Focus

2006-02-01 Thread Stefano Marocco
Hi, how I can get the currently focused widget? Thanks Stefano --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files a

Re: [qooxdoo-devel] qooxdoo job offers

2006-02-01 Thread Dietrich Streifert
Hallo Andreas, gibt es die Möglichkeit auch "out of office" zur arbeiten? Also im Home-Office. Leider bin ich familiär sehr an die Gegend um Nürnberg gebunden. Falls die Möglichkeit existiert gib mir kurz Bescheid. Grüße Andreas Ecker schrieb: Howdy! To further improve qooxdoo we are

Re: [qooxdoo-devel] How to set the cursor into a text field revisited (renderer branch)

2006-02-01 Thread Dietrich Streifert
OK I had a look through the sources and got (hopefully) the place where the focus is set. It is in QxWidget.js: proto._visualizeFocus = function() { if (!QxFocusManager.mouseFocus && this.getEnableElementFocus()) { try { this.getElement().focus(); } catch(ex) {}; }; this.setFocus

Re: [qooxdoo-devel] How to set the cursor into a text field revisited (renderer branch)

2006-02-01 Thread Sebastian Werner
Dietrich Streifert schrieb: I modified the Window_4 example in two ways: 1) the first text field has an event listener "beforeAppear" which sets the focus to the field via setFocused(true). 2) the "Set Focus To First Field" button has an execute event listener which sets the focus to the field

Re: [qooxdoo-devel] qooxdoo job offers

2006-02-01 Thread Dietrich Streifert
OOPS This should go private to Andreas! sorry for the traffic. Dietrich Streifert schrieb: Hallo Andreas, gibt es die Möglichkeit auch "out of office" zur arbeiten? Also im Home-Office. Leider bin ich familiär sehr an die Gegend um Nürnberg gebunden. Falls die Möglichkeit existiert gib m

[qooxdoo-devel] qooxdoo job offers

2006-02-01 Thread Andreas Ecker
Howdy! To further improve qooxdoo we are seeking javascript developers. Main focus will be on two areas: a) extending qooxdoo as a gui framework (e.g. features, widgets, performance, browser support) b) creating state-of-the-art ajax based applications using qooxdoo You would work here on

Re: [qooxdoo-devel] Inline editing in QxListView

2006-02-01 Thread Sebastian Werner
Kirill Balyasnikov schrieb: Hi guys, i'm new to qooxdoo. Your framework is wonderfull! :) I have a question. Is it posible to add inline editing support in QxListView? Any ideas? Possible yes, but nowhere implemented already. Normally it's just a QxTextField/QxComboBox which you move around

Re: [qooxdoo-devel] Strange behaviour of focus rect in radio button demo

2006-02-01 Thread Sebastian Werner
Dietrich Streifert schrieb: The XUL Bug seems to have some very undesireable effects. Please have a look at https://bugzilla.mozilla.org/show_bug.cgi?id=236791 I don't know which (side) effects you mean. The most interesting thing I thing is IMHO this: "try/catch fails to trap it" (https://

Re: [qooxdoo-devel] Edit combo broken for data entry when window dropped

2006-02-01 Thread Hugh Gibson
> This should be fixed now in CVS. Please verify it. Thanks. While I'm waiting for it to filter through to the public CVS mirror, I tried running the qooxdoo/source/html/example/ComboBox_1.html. After some faffing I found that I had to do the build process again to get a new includer.js. Anothe

Re: [qooxdoo-devel] Toolbar demos with menu (3 & 4) give memory leak in IE6?

2006-02-01 Thread Hugh Gibson
> Hopefully fixed in CVS now. I have just optimized the disposer code > added yesterday. Should be (nearly) leak free now. Looking good, running both local tests and the online demo. Hugh --- This SF.net email is sponsored by: Splunk Inc. Do

Re: [qooxdoo-devel] Wrong description for Repeat Button demo

2006-02-01 Thread Hugh Gibson
> > The description appears to be copied from the Button demo. It should > > refer to QxRepeatButton. > > Fixed. Thank you Hugh. Verified, thanks. Hugh --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for prob

Re: [qooxdoo-devel] Strange behaviour of focus rect in radio button demo

2006-02-01 Thread Dietrich Streifert
The XUL Bug seems to have some very undesireable effects. Please have a look at https://bugzilla.mozilla.org/show_bug.cgi?id=236791 It's unbeleivable but this bug seems to persist since beginning of 2004. Sebastian Werner schrieb: Dietrich Streifert schrieb: Hello Sebastian, Hi Dietric

[qooxdoo-devel] Inline editing in QxListView

2006-02-01 Thread Kirill Balyasnikov
Hi guys, i'm new to qooxdoo. Your framework is wonderfull! :) I have a question. Is it posible to add inline editing support in QxListView? Any ideas? Kirill Balyasnikov [EMAIL PROTECTED] --- This SF.net email is sponsored by: Splunk Inc

Re: [qooxdoo-devel] Edit combo broken for data entry when window dropped

2006-02-01 Thread Sebastian Werner
Hugh Gibson schrieb: I have changed the behavior a bit to handle the keypress event a bit different compared to previous versions. This seems to fix this bug. Hopefully this does not introduce new ones. Could you please test a bit? I will put it online in some minutes. Thanks. Space bar handl

Re: [qooxdoo-devel] How to set the cursor into a text field revisited (renderer branch)

2006-02-01 Thread Dietrich Streifert
I modified the Window_4 example in two ways: 1) the first text field has an event listener "beforeAppear" which sets the focus to the field via setFocused(true). 2) the "Set Focus To First Field" button has an execute event listener which sets the focus to the field via setFocused(true) Both

Re: [qooxdoo-devel] Strange behaviour of focus rect in radio button demo

2006-02-01 Thread Sebastian Werner
Dietrich Streifert schrieb: I'm sorry, but setting the inital focus problem is still there. I sent a new email to the list to handle this problem. The initial focus problem has nothing to do with this in my opinion. If you have a hack which worked previously, I am sorry, but you need to reinv

Re: [qooxdoo-devel] Garbage collector...

2006-02-01 Thread Sebastian Werner
Kent Olsson schrieb: Have you any ideas to change the garbage collecting mechanism to be more effective and create less risk of memory leaks? I can see performance gains here, when handles are not deleted until really needed in a more dynamic way. I also can see that one of the list's users found

[qooxdoo-devel] How to set the cursor into a text field revisited (renderer branch)

2006-02-01 Thread Dietrich Streifert
Hello List, after all these changes to the event manager and the introduction of the appearance stuff I've reached again the point where I want to set the cursor into a QxTextField programatically. The situation is as follows: I have a QxTextField in a QxWindow. When the user does an action

Re: [qooxdoo-devel] Edit combo broken for data entry when window dropped

2006-02-01 Thread Hugh Gibson
> I have changed the behavior a bit to handle the keypress event a bit > different compared to previous versions. This seems to fix this bug. > Hopefully this does not introduce new ones. Could you please test a > bit? I will put it online in some minutes. Thanks. Space bar handling is strange.

Re: [qooxdoo-devel] Is it possible to run with uncompiled scripts?

2006-02-01 Thread Hugh Gibson
> > What is the path to the test files now? > > source/html/[test|example|showcase]/*.html Ah, good old WinCVS. I've got them now, after checking "Create missing repositories that exist in the repository". Hugh --- This SF.net email is spons

Re: [qooxdoo-devel] How to set the cursor into a text field revisited (renderer branch)

2006-02-01 Thread Sebastian Werner
Dietrich Streifert schrieb: Hello List, after all these changes to the event manager and the introduction of the appearance stuff I've reached again the point where I want to set the cursor into a QxTextField programatically. The situation is as follows: I have a QxTextField in a QxWindow. W

Re: [qooxdoo-devel] Strange behaviour of focus rect in radio button demo

2006-02-01 Thread Dietrich Streifert
I'm sorry, but setting the inital focus problem is still there. I sent a new email to the list to handle this problem. Sebastian Werner schrieb: Dietrich Streifert schrieb: Oh yes! It is a XUL bug! But somehow your last commit prevents me from initially positioning the cursor into a textfie

Re: [qooxdoo-devel] Cleaning up objects...

2006-02-01 Thread Sebastian Werner
Kent Olsson schrieb: win is a window. Does the following function win.close(); clean up the memory by doc.remove(win); and thereafter dispose of the win component, or do I have to do the following: doc.add(win); win.open(); win.close() doc.remove(win); win.dispose(); win = null; to compl

Re: [qooxdoo-devel] Strange behaviour of focus rect in radio button demo

2006-02-01 Thread Dietrich Streifert
Yes! The problem is gone! Thank you. Best regards. Sebastian Werner schrieb: Dietrich Streifert schrieb: Additionally this seems to break tab focus handling in IE6. Pleas try the Window_4.html example. Put the cursor in the first text field and then hit the TAB key multiply. The following er

Re: [qooxdoo-devel] Inclusion of the correct style file

2006-02-01 Thread Dietrich Streifert
You have to set the path in the QxImageManager. In my case it is:   QxImageManager.set({path:'/qooxdoo/public/images/',iconTheme:'crystalsvg',widgetTheme:'windows'}); I'm also setting the icon theme and the widget theme. So you have to change the path attribute to wherever your qooxdoo image

Re: [qooxdoo-devel] Re: Replacement for window.confirm()?

2006-02-01 Thread Sebastian Werner
bobmanc schrieb: I have created some qooxdoo code that mimics the alert,confirm and prompt dialogs if anybody is interested I could upload it somewhere. Please just zip it and sent it to the mailinglist. If the size is under 100kb then. Otherwise please send it directly to me: [EMAIL PROTECTE

Re: [qooxdoo-devel] Possible make of the contributed package...

2006-02-01 Thread Sebastian Werner
Kent Olsson schrieb: It might then be possible to use for the application developed by qooxdoo too. That would be nice! That was the original idea. To include scripts from different path a build one qooxdoo.js or app.js file. Yes, nice. Sebastian Kent On Tue, 2006-01-31 at 22:36 +0100,

Re: [qooxdoo-devel] Inclusion of the correct style file

2006-02-01 Thread Sebastian Werner
Kent Olsson schrieb: Here is an example: Mobila Kontoret window.application.main = function() { var doc = this.getClientWindow().getClientDocument(); var mainW = new QxWindow("Test"); mainW.setSpace(20, 400, 48, 250); do