Re: [qooxdoo-devel] Antw: Re: Issue Qx 1.3 build client on Safari

2011-01-19 Thread Simon Bull
empty body element. Simon On Wed, Jan 19, 2011 at 9:43 PM, Tino Butz wrote: > Just save the responses and use a diff tool to see the difference, e.g. > http://winmerge.org/ when you use windows. > > Am 19.01.2011 um 11:38 schrieb Simon Bull: > > Hi Rob, > > Thanks for y

Re: [qooxdoo-devel] Antw: Re: Issue Qx 1.3 build client on Safari

2011-01-19 Thread Simon Bull
; > Hi, > > Did this solve your problem or is a JSP file your only option? I can not > see why this should make any difference - but the browsers hold a lot of > mysteries... ;) > > Tino > > Am 19.01.2011 um 04:04 schrieb Simon Bull: > > Hello Tino (and List), &g

Re: [qooxdoo-devel] Issue Qx 1.3 build client on Safari

2011-01-19 Thread Simon Bull
. It's messy, but it works. Sort of. Simon On Wed, Jan 19, 2011 at 6:47 PM, Tino Butz wrote: > Hi, > > Did this solve your problem or is a JSP file your only option? I can not > see why this should make any difference - but the browsers hold a lot of > mysteries... ;) >

Re: [qooxdoo-devel] Issue Qx 1.3 build client on Safari

2011-01-18 Thread Simon Bull
Hello Tino (and List), I have some more information. The bug only occurs in the build versions on Safari, and only if the file downloaded to the browser is a JSP file rather than an HTML file. I have changed my index.jsp file back to an index.html and the problem goes away (it took me most of a

Re: [qooxdoo-devel] Using qooxdoo for strategy game?

2010-06-02 Thread Simon Bull
@waysoftheearth: Sounds really interesting. Any resources to your project available? Sorry David, it is all part of a proprietary system. On Sat, May 29, 2010 at 12:34 AM, davidn wrote: > > Thank you all very much for your replies. There a lot's of helpful > comments! > I'll have a closer look

Re: [qooxdoo-devel] Using qooxdoo for strategy game?

2010-05-19 Thread Simon Bull
It depends on what you want to do -- anything is possible given enough time. As as example, we have implemented a very sophisticated graphical map application on qooxdoo, which is visually much like Google maps, but has much richer functionality within our more limited domain. Our map is actually

Re: [qooxdoo-devel] Window background gradient

2010-04-20 Thread Simon Bull
I haven't tried it, but can't you simply use setDecorator("toolbar") on the content area of your popup (replacing "toolbar" with whatever decorator you like most)? http://demo.qooxdoo.org/current/demobrowser/#ui~Decoration.html shows them all in action. Simon On Wed, Apr 21, 2010 at 8:38 AM, J

Re: [qooxdoo-devel] Comparison, GWK or Qooxdoo?

2010-04-06 Thread Simon Bull
For what it's worth, it looks like GWT doesn't yet have the same level of theme and widget richness as Qooxdoo, so we've decided to stick with Qooxdoo on our project. Simon On Fri, Apr 2, 2010 at 2:50 AM, Tom Schindl wrote: > Hi, > > Why not useing QxWT [1,2]? It is a JSNI-Wrapper for qooxdoo bu

Re: [qooxdoo-devel] How do I call super.super?

2010-02-15 Thread Simon Bull
t; On Mon, Feb 15, 2010 at 17:35, Simon Bull wrote: > >> Hello List, >> >> I am extending a widget and need to override setLayoutParent. The >> inheritance heirachy looks like this: >> >> Widget >> OverriddenClass >> MyClass >> >>

[qooxdoo-devel] How do I call super.super?

2010-02-15 Thread Simon Bull
Hello List, I am extending a widget and need to override setLayoutParent. The inheritance heirachy looks like this: Widget OverriddenClass MyClass MyClass.setLayoutParent needs to call Widget.setLayoutParent. The problem is that *this.base(arguments, parent);* invokes OverriddenClass.set

[qooxdoo-devel] Question about key events in 0.8.x

2010-02-10 Thread Simon Bull
Hello All, In my legacy app I used to be able to do key event comparisons like this: if (e.getKeyIdentifier() === qx.legacy.event.type.KeyEvent.keys.enter) I can do the equivalent in 0.8 like this: if (e.getKeyIdentifier() === "Enter") I have seen the stuff in qx.event.handler, bu

[qooxdoo-devel] Difficulty extending WindowManager 0.8.3+

2010-02-08 Thread Simon Bull
Hello List, I have a design issue with Desktop and WindowManager in 0.8.3. I have had a quick look at 1.0, and it appears to be the same. Here are two use cases that (IMHO) don't work well in the current design: 1) Implement a Window "Dock" that is visually synchronised with the DeskTop. 2)

[qooxdoo-devel] Extending or overriding mixins

2010-02-08 Thread Simon Bull
Hello List, I have a need to override methods provided by the framework in a mixin. Is it possible to extend a mixin? Or otherwise override a method from one mixin with a method in another? Thanks, Simon -- The Planet

Re: [qooxdoo-devel] Question

2008-11-10 Thread Simon Bull
out > event is fired up. > > Hope that helps:) > Petr > > 2008/11/11 Simon Bull <[EMAIL PROTECTED]>: > > Hello List, > > > > I'm attempting to migrate an in-house ajax transport layer over to the qx > > 0.8 transport layer. > > > &g

[qooxdoo-devel] Question about 0.8 qx.io.remote.Request

2008-11-10 Thread Simon Bull
Hello List, I'm attempting to migrate an in-house ajax transport layer over to the qx 0.8 transport layer. My first experiment looks something like this: __handleClick : function(e) { var app = qx.core.Init.getApplication(); // Create HTTPRequest var req = new qx

[qooxdoo-devel] Question

2008-11-10 Thread Simon Bull
Hello List, I'm attempting to migrate an in-house ajax transport layer over to the qx 0.8 transport layer. My first experiment looks something like this: __handleClick : function(e) { var app = qx.core.Init.getApplication(); // Create HTTPRequest var req = new qx

Re: [qooxdoo-devel] Question about test and test-source in 0.8

2008-08-29 Thread Simon Bull
Hi Fabian, I was missing your step 3 -- it definitely works better that way :) Now that you point it out I see it is documented that way too. I just missed it. Thanks, Simon On Fri, Aug 29, 2008 at 5:09 PM, Fabian Jakobs <[EMAIL PROTECTED]>wrote: > Hi Simon, > > you don't have to call gener

[qooxdoo-devel] Question about test and test-source in 0.8

2008-08-28 Thread Simon Bull
Hi List, I have recently started playing with Qx 0.8, and in particularl the unit test runner. It's very nice -- but I have one gripe which may be because i am not using it properly. It seems that every time I touch either the application-under-test source code, or the unit-test source code and

Re: [qooxdoo-devel] IE & memory management

2008-07-09 Thread Simon Bull
fun part. > > Thanks, > > Jim > > > On Thu, Jul 3, 2008 at 5:25 PM, Simon Bull <[EMAIL PROTECTED]> wrote: >> >> Hi again Jim, >> >> In my case I used the pool primarily for window instances, where each >> class of window had lots of menus,

Re: [qooxdoo-devel] IE & memory management

2008-07-04 Thread Simon Bull
I can't get what I am working on to solve the problem, I will look into your > solution. > > Thanks, > Jim > > > On Wed, Jul 2, 2008 at 11:28 PM, Simon Bull <[EMAIL PROTECTED]> wrote: >> >> Hi Jim, >> >> I am not sure which version of qx you are

Re: [qooxdoo-devel] IE & memory management

2008-07-03 Thread Simon Bull
Hi Jim, I am not sure which version of qx you are using, but I experienced a very similar problem a long while back with qx 0.6.x. My final solution was to implement object pooling, and reuse pooled instances rather than instantiating new ones all the time. I added my Pool class to the contribut

Re: [qooxdoo-devel] 0.6.x CheckBoxCellEditorFactory andBooleanDataCellRenderer

2007-10-15 Thread Simon Bull
} This should work. Tobias -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Simon Bull Gesendet: Montag, 15. Oktober 2007 04:37 An: qooxdoo-devel@lists.sourceforge.net Betreff: [qooxdoo-devel] 0.6.x CheckBoxCellEditorFactory andBooleanDataCellRend

[qooxdoo-devel] 0.6.x CheckBoxCellEditorFactory and BooleanDataCellRenderer

2007-10-14 Thread Simon Bull
Hi List, I am using qx 0.6.5, and I want to create some editable booleans (checkboxes) within a table. Firstly a question: Does anyone know whether the CheckBoxCellEditorFactory is usable in the 0.6.x version of qx? I don't see any examples or references to it elsewhere in the code. Sec

Re: [qooxdoo-devel] Migrating 0.6.5 to 0.7.1

2007-09-23 Thread Simon Bull
tember, 2007 4:53:50 PM Subject: Re: [qooxdoo-devel] Migrating 0.6.5 to 0.7.1 Simon Bull schrieb: > Hi List, > > I have been migrating a qx 0.6.5 app to 0.7.1 using the "make migrate" > command. > > The migration almost worked out of the box -- but not quite. Here is a

[qooxdoo-devel] 0.7.1 migration advice for static members

2007-09-18 Thread Simon Bull
Hi List, I am migrating some qx 0.6.5 code to 0.7.1. I am wondering what is the 0.7.1-friendly way to re-implement code that accesses static members of other classes. For example, I have some 0.6.x code that looks like this: var queryType = ext.query.AbstractQuery.QUERY_TYPE__GET_CACHE_

[qooxdoo-devel] Migrating 0.6.5 to 0.7.1

2007-09-18 Thread Simon Bull
Hi List, I have been migrating a qx 0.6.5 app to 0.7.1 using the "make migrate" command. The migration almost worked out of the box -- but not quite. Here is a summary of the problems I encountered, and the workarounds. Perhaps some of these issues have already been found and fixed... please

Re: [qooxdoo-devel] 0.7.1 migration error on ! comment

2007-09-18 Thread Simon Bull
Hi Fabian, Done. Bug number 642 in Bugzilla. Simon - Original Message From: Fabian Jakobs <[EMAIL PROTECTED]> To: qooxdoo Development Sent: Tuesday, 18 September, 2007 6:27:13 PM Subject: Re: [qooxdoo-devel] 0.7.1 migration error on ! comment Hi Simon, > Hi List, > > I am migrating

[qooxdoo-devel] 0.7.1 migration error on ! comment

2007-09-17 Thread Simon Bull
Hi List, I am migrating some qx based classes from 0.6.5 to 0.7.1. I found that if the source file contains a comment like this: /*! */ The migration script will fail with this error message (below). Removing the ! from the comment enables the migration script to succeed. Perhaps the script

[qooxdoo-devel] Is there a searchable ListView?

2007-08-12 Thread Simon Bull
Hi List, My app has a need for a multiple select input widget that can handle very long lists. I have been using the ListView widget for this purpose -- but now the users want the list to be searchable in the same way that ComboBoxEx lists are. Has anyone tried to, or does anyone have any ad

Re: [qooxdoo-devel] How to set a ComboBox/Ex to the width of its widest option?

2007-07-24 Thread Simon Bull
r PHP I can understand not being able to move to a newer version, but if you are not then there is no reason not to upgrade to the newest version as it is MUCH better then 6.5 Jim www.D4PHP.org www.D4PHP-Hosting.com On 7/23/07, Simon Bull <[EMAIL PROTECTED]> wrote: Hi List, I'm u

[qooxdoo-devel] How to set a ComboBox/Ex to the width of its widest option?

2007-07-23 Thread Simon Bull
Hi List, I'm using qx 0.6.5. My app contains some dynamically composed forms that include enum inputs that are rendered with ComboBox and ComboBoxEx widgets, depending on the number of options returned by the business tier. I would like each ComboBox/Ex input field to have the minimum width ne

[qooxdoo-devel] ComboBoxEx API change request

2007-07-23 Thread Simon Bull
Hi List, I am using qx 0.6.5. In this version of the SDK, the construction of ComboBoxEx's popup search dialog is hidden within its openSearchDialog method. Because of this there is no clean way to substitute a custom search dialog window, or to substitute a custom window manager class to han

Re: [qooxdoo-devel] Extended window manager demo added to contrib

2007-07-23 Thread Simon Bull
ndefined){return $b[$a]; }var $c; if($6.include||$6.base){var $d=$6.style($4); Simon Bull wrote: > > Hi List, > > The extended window manager demo has been added to the contrib project > (thanks to Fabian). > > You can check it (the contrib project) out from SF with

[qooxdoo-devel] Extended window manager demo added to contrib

2007-07-17 Thread Simon Bull
Fabian has migrated the window manager code from 0.6.7 to 0.7.x too. Is this right Fabian? Enjoy, Simon - Original Message From: Simon Bull <[EMAIL PROTECTED]> To: qooxdoo Development Sent: Monday, 16 July, 2007 8:54:56 PM Subject: Re: [qooxdoo-devel] Extended window manager de

Re: [qooxdoo-devel] Extended window manager demo

2007-07-16 Thread Simon Bull
Hi Jared, I am working with Fabian to get something into the contrib source tree. Hopefully won't be too long now. Cheers, Simon - Original Message From: JaredBroad <[EMAIL PROTECTED]> To: qooxdoo-devel@lists.sourceforge.net Sent: Monday, 16 July, 2007 8:23:16 PM Subject: Re: [qooxd

Re: [qooxdoo-devel] Fixed Window Size

2007-06-26 Thread Simon Bull
Hi James, I think your problem is similar to one I encountered a while back. The overflow settings for window content don't work properly unless you set a minWidth and minHeight like this: // Allows overflow settings to work properly this.setMinWidth(200); this.setMinHeight(200); Hope th

Re: [qooxdoo-devel] OnClose, Minimise Internal Window Component

2007-06-24 Thread Simon Bull
Hi FrozenDice, Repackaging the latest code for 0.6.6 is on my todo list, but my project's needs have to come first. I expect to look at it with a week or two. Simon - Original Message From: FrozenDice <[EMAIL PROTECTED]> To: [EMAIL PROTECTED]; qooxdoo Development Sent: Saturday, 23 J

Re: [qooxdoo-devel] cygwin directories

2007-06-17 Thread Simon Bull
Hi Oliver, I'm using cygwin on a windows machine too. Usually you can just type "cd c:" which will take you to "/cygdrive/c " which is the same as the root of your windows c drive. >From there you should be able to type "ls" and see your "skeleton" dir listed. Simon - Original Message --

Re: [qooxdoo-devel] Extended window manager demo

2007-06-14 Thread Simon Bull
Hi Hugh, I'll try to make the latest version available for 0.6.6. I would like to get it working for 0.7 as well, but will have to see how I go for time. Cheers, Simon - Original Message From: Hugh Gibson <[EMAIL PROTECTED]> To: qooxdoo-devel@lists.sourceforge.net Sent: Thursday, 14

Re: [qooxdoo-devel] OnClose, Minimise Internal Window Component

2007-06-14 Thread Simon Bull
Subject: Re: [qooxdoo-devel] OnClose, Minimise Internal Window Component Sounds interesting, i'm currently running 0.6.6 right now and I can't really upgrade to .7. If I download the script and follow the directions on how to upgrade will it work in .6.6? On 6/13/07, Simon Bull <[EMAIL

[qooxdoo-devel] Improvement to 0.6.5 TabView API

2007-06-13 Thread Simon Bull
Hi List, I am not sure if this has been improved in 0.7, but in 0.6.5 the TabView API is not very extensible. For example, in order to implement a multi-row tabbar (instead of the default single-row tabbar), the developer has to hack it in like this: // **

Re: [qooxdoo-devel] Extended window manager demo

2007-06-13 Thread Simon Bull
Hi Hugh, Apologies for the slow response -- I wasn't watching the list for a while. I have made a few small improvements to the extended window manager package since I posted the demo. The most important one I can remember was a fix to enable it to handle/pool modal windows properly. My produ

Re: [qooxdoo-devel] OnClose, Minimise Internal Window Component

2007-06-13 Thread Simon Bull
Hi FrozenDice, I created an extended window manager demo for this list a while back. Among other things it minimises windows to icons which you can then double click to restore the window. If you search for "Extended window manager demo" in the list archives you should be able to find it. Si

Re: [qooxdoo-devel] Window Question 2

2007-05-09 Thread Simon Bull
Hi LRicci, They don't go anywhere, they just become invisible. Simon - Original Message From: LRicci <[EMAIL PROTECTED]> To: qooxdoo Development Sent: Thursday, 10 May, 2007 2:54:27 AM Subject: [qooxdoo-devel] Window Question 2 Where do the windows in the Demo page go when you minimi

Re: [qooxdoo-devel] ProgressBar

2007-05-06 Thread Simon Bull
Hi Leander, There was a ProgressBar widget contributed by Kent Olsson a long while back (I think it may have been around Qx 0.5), but it was never "officially" supported. There isn't any similar widget included in either 0.6.x or 0.7 as far as I know. The main issue that I've encountered with

Re: [qooxdoo-devel] Possible bug in make build?

2007-03-26 Thread Simon Bull
Hi Fabian, Great work! I'm glad I could help out with a bug report :) Simon - Original Message From: Fabian Jakobs <[EMAIL PROTECTED]> To: qooxdoo Development Sent: Monday, 26 March, 2007 7:00:12 PM Subject: Re: [qooxdoo-devel] Possible bug in make build? Hello Simon, with the hel

Re: [qooxdoo-devel] Possible bug in make build?

2007-03-25 Thread Simon Bull
ing clone() because it is slow and memory hungry. But perhaps this bug might be a real problem for someone else in the future? - Original Message From: Fabian Jakobs <[EMAIL PROTECTED]> To: qooxdoo Development Sent: Friday, 23 March, 2007 6:53:08 PM Subject: Re: [qooxdoo-devel

[qooxdoo-devel] Possible bug in make build?

2007-03-22 Thread Simon Bull
Hi All, I am using Qx 0.6.5. I have a custom js class called ViewState that is composed of ViewCategories, which are composed of OptionGroups, which are composed of Options. Each of these classes implements a clone method that looks something like this (this one is from the top level Object,

[qooxdoo-devel] *.js source file formatter?

2007-03-07 Thread Simon Bull
Hi List, I remember a post on this list a few months ago about a plan to include a source file formatter in the toolkit -- only now I can't find the original message. Can anyone tell me if this tool made it into 0.6.x, and if so how do I try it out? Thanks, Simon Send instant messages to

[qooxdoo-devel] Minor bug in Window

2007-02-18 Thread Simon Bull
Hi List, I'm using qx 0.6.5. I noticed that when a Window's caption is wider than its width, the minimise, maximise and close buttons are pushed outside the bounds of the window, and can't be seen. If the user stretches the window horizontally so that it is wider than the caption, then the bu

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

[qooxdoo-devel] Method broken by make build?

2007-02-14 Thread Simon Bull
Hi All, I am using qx 0.6.5 and the skeleton make file. In my app I have a javascript method that runs in the "make source" app which is broken in the "make build" app. I have spent a while comparing the source and compressed versions of the method, and it is not obvious (to me) why the compre

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

2007-02-14 Thread Simon Bull
Hi Andreas, This looks great! Really looking forward to these new features! Simon - Original Message From: Andreas Ecker <[EMAIL PROTECTED]> To: qooxdoo Development Sent: Thursday, 15 February, 2007 5:25:16 AM Subject: [qooxdoo-devel] Proposing exciting new OO features Howdy, here i

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

2007-02-14 Thread Simon Bull
Hi All, I am using qx 0.6.5, and am using the skeleton make file. I have recently noticed that when I run "make build", only the Nuvola icon resources are copied into the build directory. I guess this is because in ImageManager we have: qx.Settings.setDefault("iconTheme", "qx.theme.icon.Nuvol

Re: [qooxdoo-devel] Firefox memory usage

2007-02-12 Thread Simon Bull
Hi Hugh, I did quite a lot of memory testing a while ago, but my scenario was different to yours. I never minimised the browser window -- instead I did a lot of creating and disposing js object instances within a single page. However, from my tests I found that FF (1.5) was far better at freei

Re: [qooxdoo-devel] Extended window manager demo

2007-02-07 Thread Simon Bull
s in windows (correct me if I'm wrong) so it wouldn't be possible to have MDAs. --Tomek Simon Bull wrote: > Hi Tomek, > > I think it depends on what you call an "application". You could treat a > single window class as a whole application, but for me, each wind

Re: [qooxdoo-devel] Two possible bugs in 0.6.5

2007-02-04 Thread Simon Bull
our working directory. Both "qx.sys.Client" and "qx.constant.Type" are not existing anymore in qooxdoo 0.6.5. Maybe you must delete your directory completely and unpack the new stuff there again. Hope this helps. Sebastian Am 05.02.2007 um 03:58 schrieb Simon Bull: >

Re: [qooxdoo-devel] Two possible bugs in 0.6.5

2007-02-04 Thread Simon Bull
faultValue:... DefaultFilter.js (line 38) I guess this implies that qx.constant.Type should be "included" before DefaultFilter in the make source version of custom.js file. Simon - Original Message ---- From: Simon Bull <[EMAIL PROTECTED]> To: qooxdoo-devel@lists.sourceforge.net Sent: Mon

[qooxdoo-devel] Two possible bugs in 0.6.5

2007-02-04 Thread Simon Bull
Hi List, I have recently been migrating my app to 0.6.5. I now have r5935 of the sdk. I've noticed two problems: 1) qx.sys.Client includes this code: qx.Class.getInstance = qx.util.Return.returnInstance; but qx.util.Return.returnInstance has been replaced by qx.lang.Function.returnInstance i

Re: [qooxdoo-devel] Extended window manager demo

2007-02-04 Thread Simon Bull
applications. So if you wanted to create an application you would put all relevant code inside of one of the new Window classes (e.g. ext.ui.window.NetImageWindow), right? Thanks, --Tomek Simon Bull wrote: > Hi List, > > Jason, Tomek and a couple of others were interested in my ext

Re: [qooxdoo-devel] Extended window manager demo

2007-01-28 Thread Simon Bull
Windo... (line 28) > qx.OO has no properties > qx.OO.defineClass("ext.strategy.layout.TileStrategy", > ext.strategy.layout.Abstra... > TileStrategy.js (line 29) > qx.Locale has no properties > qx.Locale.define("custom.translation.C", > C.js (line 31) > qx.l

Re: [qooxdoo-devel] Extended window manager demo

2007-01-23 Thread Simon Bull
Level(qx.log.Logger.LEVEL_DEBUG); index.html (line 11) qx.core has no properties qx.core.Init.getInstance().setApplication(custom.Application); index.html (line 17) - Original Message From: Fabian Jakobs <[EMAIL PROTECTED]> To: qooxdoo Development Sent: Tuesday, 23 January, 2007 8

Re: [qooxdoo-devel] Extended window manager demo

2007-01-22 Thread Simon Bull
e tries to create 2 instances of the same window type (e.g., 2 mac windows). Also should the minimized icons be 'movable'? Cheers, Kirk. Simon Bull wrote: > Hi List, > > Jason, Tomek and a couple of others were interested in my extended window > manager. Here's a work

Re: [qooxdoo-devel] Extended window manager demo

2007-01-22 Thread Simon Bull
Hi Fabian, I updated my qx sdk to 5796 today and attempted to run the migration to 0.6.4 as you suggested. The two migration steps (to 0.6.3, then to 0.6.4) both run through with no complaints, but when I load index.html in IE or FF the demo doesn't start; instead I get some js errors. Fireb

Re: [qooxdoo-devel] Extended window manager demo

2007-01-22 Thread Simon Bull
anager demo Hi Simon, are you interested to further polish this class and contribute it to the qooxdoo framework? I would really appreciate this. :) Greetings, Sebastian Simon Bull schrieb: > Hi List, > > Jason, Tomek and a couple of others were interested in my extended window

Re: [qooxdoo-devel] internal window minimize

2007-01-22 Thread Simon Bull
-devel] internal window minimize Thanks Simon! Waiting impatiently. --Tomek Simon Bull wrote: > Hi Tomek, > > I'll post a demo project with all the source code in a few days. > > Simon > > - Original Message > From: Tomek D Loboda <[EMAIL PROTECTED]&g

Re: [qooxdoo-devel] internal window minimize

2007-01-21 Thread Simon Bull
Thanks, --Tomek Simon Bull wrote: > Hi Jason, > > There is quite a lot of sourcecode to my window positioning/managing feature > -- and it is dificult to demonstrate it out of context. > > So for the sake of simplicity I have posted some screen shots and an overview > of

Re: [qooxdoo-devel] Graphs and Charts

2007-01-16 Thread Simon Bull
Hi Martin, I agree SVG is the ideal world solution. However it would be nice if any graph/chart tool supported browsers with no additional plugins or add ons. This is the case for many real world users working in conservative environments, such as government departments, banks, and other big

Re: [qooxdoo-devel] Custom Build Paths

2007-01-14 Thread Simon Bull
Hi Rusi, I think I have a similar situation to yours - a j2ee app with a pre-existing directory structure. I manage my qx-sdk and qx-app source code separately from the rest of the j2ee app code. So I have: $qx-client-code/qooxdoo-sdk/ $qx-client-code/qooxdoo-apps/ $qx-client-code/qooxdoo-ap

Re: [qooxdoo-devel] Graphs and Charts

2007-01-10 Thread Simon Bull
Hi All, We are also using Walter Zorn's jsgraphics library to draw custom shapes in our qx application -- mainly for cross-browser diagonal lines. It works well for this, but a limitation we have found is that it cant drawn a subsection of graphic. So if you zoom right in to a jsgraphic line s

[qooxdoo-devel] Extended WindowManager and Positioning Strategies

2006-12-18 Thread Simon Bull
Hi Qooxdooers, I've implemented an extended WindowManager that offers some features that might be useful to anyone who is developing a "many-windows" UI with Qx. Here's a quick summary of the methods of my WindowManager object: // Supported types interface WindowManager.supportsType() WindowMan

[qooxdoo-devel] Slider widget request/design

2006-12-18 Thread Simon Bull
Hi List, My users have been requesting a slider widget for a while. By "slider" I mean a horizontal or vertical axis with a pointer positioned somewhere along it -- the user can slide the pointer up and down the scale to select a scalar value. The min, max and currently selected values are (

Re: [qooxdoo-devel] internal window minimize

2006-12-17 Thread Simon Bull
Cheers, Jason Simon Bull wrote: > Hi Jason, > > Yes, you have to create your own widget to click to restore a minimised > window. > > If you are interested I can post a demo of an extended WindowManager I have > written. It enables you to minimise Windows to icons in a wo

Re: [qooxdoo-devel] internal window minimize

2006-12-17 Thread Simon Bull
Hi Jason, Yes, you have to create your own widget to click to restore a minimised window. If you are interested I can post a demo of an extended WindowManager I have written. It enables you to minimise Windows to icons in a workspace. Double clicking the icon restores the window it represents

[qooxdoo-devel] Window move and resize by "frame" in IE

2006-12-13 Thread Simon Bull
Hi Qooxdooers, I noticed an issue with moving/resizeing qx.ui.window.Windows in IE that exists in Qx 0.6.2-pre (r4822). This issue didn't exist in 0.5.x versions of qx. It does not occur in FF. When you move/resize a window by "frame" mode, IE will select (highlight with dark blue) any text

Re: [qooxdoo-devel] Table with embeded controls in the cell

2006-12-11 Thread Simon Bull
Hi Jim, I have also been trying to get table cells to respond to mouse events. I couldn't get Andreas's example to work properly either, but I have found a nasty workaround that you could use if your are really desperate. I'm not saying this is nice code -- but it will at least get you cliking

Re: [qooxdoo-devel] How can I listen for Layout resize events?

2006-12-05 Thread Simon Bull
I see the solution... you can do: clientDocument.addEventListener("windowresize", layout._handleResize, layout); without stomping on clientDocument's existing "windowresize" listener. Sorry for the spam folks, Simon - Original Message From: Simon Bu

[qooxdoo-devel] How can I listen for Layout resize events?

2006-12-05 Thread Simon Bull
Hi All, Does anyone know of a neat way to listen for any resize events of a Layout? Specifically, I have a CanvasLayout contained within the ClientDocument that is resized when the user resizes the browser window. I need to execute some logic when this CanvasLayout is resized. I see that Clie

Re: [qooxdoo-devel] overflows

2006-11-27 Thread Simon Bull
Hi James, I posted a similar query to this list a few weeks ago. If you give your window a minHeight and minWidth value you overflow settings will work properly. E.g.; // Allow overflow settings to work properly window.setMinWidth(200); window.setMinHeight(200); Cheers, Simon - Or

Re: [qooxdoo-devel] qx.ui.form.List layout problem in 0.6.2-pre (r4822)

2006-11-26 Thread Simon Bull
d can then ask Qx to render widgets out of sequence. Wierd... but it does seem to work so far :) In anycase, I don't think this is a bug in Qx code (except perhaps that it does not guard against this unlikely possibility?) Simon - Original Message ---- From: Simon Bull <[EM

Re: [qooxdoo-devel] Two questions from a total newbie

2006-11-26 Thread Simon Bull
Hi Oystein, There are a couple of mail archives for this list on the web; see http://qooxdoo.org/community/mailing_lists . As for your source-build problem; have you tried opening your page in Firefox? FF will usually give more meaningful error messages than IE, especially if you have the Fir

Re: [qooxdoo-devel] qx.ui.form.List layout problem in 0.6.2-pre (r4822)

2006-11-23 Thread Simon Bull
plyRuntimeWidth() anywhere. Where could it be hiding? Simon p.s. I think I will hold off logging a bug until I have confirmed 100% what the real problem is. - Original Message From: Andreas Ecker <[EMAIL PROTECTED]> To: qooxdoo Development Cc: Simon Bull <[EMAIL PROTECT

Re: [qooxdoo-devel] How do I use the source build?

2006-11-21 Thread Simon Bull
Hi Hugh, Are you sure you are opening the right file? When you do a "make source" it creates an index.html inside the /source dir rather than in the /build dir. If you open this one, then you can run your source files rather than the compressed qx.js. This gives you exactly the kind of debuggin

[qooxdoo-devel] qx.ui.form.List layout problem in 0.6.2-pre (r4822)

2006-11-19 Thread Simon Bull
Hi All, I am having a problem laying out a qx.ui.form.List. I first noticed it in source version r4343 - but today I updated to r4822 and am having the same problem. The problem occurs intermittently when adding qx.ui.form.List of qx.ui.form.ListItems to a CanvasLayout -- the 2nd area of a

Re: [qooxdoo-devel] Custom Builds with SDK

2006-11-19 Thread Simon Bull
Hi Manuel, Just a guess, but you could try moving the sourcecode to C:/qooxdoo-sdk/ and trying it again. Having spaces in the path might be causing trouble for Windows somewhere along the way. Simon - Original Message From: Manuel Bender <[EMAIL PROTECTED]> To: qooxdoo-devel@lists.

Re: [qooxdoo-devel] When/How dispose object ?

2006-11-19 Thread Simon Bull
Hi Frederic, I have done some analysis of qx memory use in a single page application, and compared IE6, IE7 and FF1.5. Have a look for these threads in the mail list: "Memory creep" problem, Memory use test results for Qx 0.6.2 (r4314) on Win2k IE6, Memory use for IE6 vs IE7 vs FF1.5. I don't

Re: [qooxdoo-devel] Memory use for IE6 vs IE7 vs FF1.5

2006-10-25 Thread Simon Bull
tes new memory in one hit. Hope you have enjoyed this "epic" investigation :) Simon - Original Message From: Simon Bull <[EMAIL PROTECTED]> To: qooxdoo-devel@lists.sourceforge.net Sent: Monday, 23 October, 2006 9:29:34 AM Subject: Re: [qooxdoo-devel] Memory u

Re: [qooxdoo-devel] Memory use test results for Qx 0.6.2 (r4314) on Win2k IE6

2006-10-22 Thread Simon Bull
n in IE6 simply is to avoid object instances (or install IE7?). It would be great to have more discussion in this area and to get more qualitative and quantitative feedback from users regarding their real-life qooxdoo applications (medium- or large-scale). Bye, Andreas Simon Bull wrote: > H

Re: [qooxdoo-devel] Memory use test results for Qx 0.6.2 (r4314) on Win2k IE6

2006-10-22 Thread Simon Bull
Hi Hugh, Good suggestion -- and along the same lines I was thinking :) I'm planning on investigating the appearance code in more detail when I next have a few hours to dedicate to it. Thanks, Simon - Original Message From: Hugh Gibson <[EMAIL PROTECTED]> To: qooxdoo-devel@lists.so

Re: [qooxdoo-devel] Memory use test results for Qx 0.6.2 (r4314) on Win2k IE6

2006-10-19 Thread Simon Bull
try to do this somewhere?Thanks,Simon- Original Message From: Simon Bull <[EMAIL PROTECTED]>To: qooxdoo-devel@lists.sourceforge.netSent: Wednesday, 18 October, 2006 8:35:18 AMSubject: Re: [qooxdoo-devel] Memory use test results for Qx 0.6.2 (r4314) on Win2k IE6Hi guys,Thanks for your com

Re: [qooxdoo-devel] minimize Window bug

2006-10-18 Thread Simon Bull
I all,On a closely related topic (since the close button has the same behaviour as the minimise button) -- It would be nice if a window's close  button disposed the window instead of just minimising it.Unfortunately I haven't been able to dispose a window onclose, ondissappear or onafterdissappear.

Re: [qooxdoo-devel] Memory use test results for Qx 0.6.2 (r4314) on Win2k IE6

2006-10-17 Thread Simon Bull
oint. If IE collects all the garbage on page-change than it's not really critical. Anyway - very interesting results. Simon Bull schrieb: Hi All,I've built a simple Qx test case (see attached) that creates and disposes n many instances of a selected widget type.This test enables u

Re: [qooxdoo-devel] Memory use test results for Qx 0.6.2 (r4314) on Win2k IE6

2006-10-17 Thread Simon Bull
of the good ones to get it done right. Regards, Sebastian Simon Bull schrieb: > Hi All, > > I've built a simple Qx test case (see attached) that creates and disposes n > many instances of a selected widget type. > > This test enables us to observe how muc

[qooxdoo-devel] Possible bug in qx.ui.window.Window.dispose()...

2006-10-16 Thread Simon Bull
Hi All, I have noticed that some events that are added in Window's constructor are not removed in Window.dispose(). They are: // // EVENTS: WINDOW // ***

[qooxdoo-devel] Possible bug in qx.ui.form.Button constructor...

2006-10-16 Thread Simon Bull
Hi All, I've noticed that the constuctor of qx.ui.form.Button adds some event listeners without "this" as a 3rd argument: // // MOUSE EVENTS //

[qooxdoo-devel] Memory use test results for Qx 0.6.2 (r4314) on Win2k IE6

2006-10-16 Thread Simon Bull
Hi All, I've built a simple Qx test case (see attached) that creates and disposes n many instances of a selected widget type. This test enables us to observe how much memory is allocated by new() and freed by dispose() for each widget type. I've used this test to quantify memory usage of most

[qooxdoo-devel] "Memory creep" problem

2006-10-12 Thread Simon Bull
Hi All, I have spent some time testing memory usage (with Qx 0.6.1 in IE6 and FF1.5) and have found that dispose frees only a small protion of the memory that has been allocated to Qx instances. For a single paged ajax application this results in a "memory creep" problem -- the browser process

Re: [qooxdoo-devel] Help with qx.ui.window.Window.dispose()

2006-10-09 Thread Simon Bull
Hi again,Thanks for the advice -- I tried both of your suggestions.  Moving the dispose() call into a qx.ui.window.Window._afterDisappear() method and adding a qx.constant.Event.DISAPPEAR listener to the window.  Unfortunately both methods still results in the same error messages when dispose is ca

Re: [qooxdoo-devel] qx.ui.table.Table events issues

2006-10-02 Thread Simon Bull
Hi Jim,I had a similar problem a while ago -- where a real mouse event would trigger a listener, which would then update a widget that threw the same event, and get lost in a loop.I am not sure if this is the most elegant solution, but I ended up adding a piece of state to event objects that are co

[qooxdoo-devel] Help with qx.ui.window.Window.dispose()

2006-10-02 Thread Simon Bull
Hi All,I'm using Qx 0.6.2-pre (r4314). I am trying to dispose() of "closed" qx.ui.window.Window instances so that I can minimise the browser's memory usage.I invoke dispose() at the end of qx.ui.window.Window._onclosebuttonclick().With this change, clicking the close button hide()s the window as us

  1   2   >