[qooxdoo-devel] Extending My Qooxdoo Framework Classes Locally?

2009-02-27 Thread Gene Amtower
I can't seem to find any documentation on adding new classes to my own Qooxdoo framework in my own local installation. Is this possible? In particular, the ComboBoxEx that appeared in 0.7.4 would really be useful to me in 0.8.1, and I'd be willing to try to resurrect it in my 0.8.1 installation

Re: [qooxdoo-devel] Looking for best practice with "dock" style layout

2009-02-27 Thread Matthew Gregory
Sebastian's solution sounds good to me. This is another tidy way but it means shrinking the south which isn't want you wanted but thought it might help. Run this in the playground: var dock = new qx.ui.layout.Dock(); dock.setSort("y"); var widget = (new qx.ui.container.Composite(dock)).set( {

Re: [qooxdoo-devel] [SPAM] Horizontal line in Qooxdoo

2009-02-27 Thread Matthew Gregory
Some layouts have a separator property. For a HBox: myContainer.getLayout().setSeparator("separator-horizontal"); For a VBox: myContainer.getLayout().setSeparator("separator-vertical"); For a Dock myContainer.getLayout().setSeparatorX("separator-horizontal"); myContainer.getLayout().se

Re: [qooxdoo-devel] PNG images via RPC

2009-02-27 Thread Bryan Coutch
Alessandro, What are your supported browsers? Most modern browsers support base64 encoding in the IMG tag. This doesn't work on IE 6, or 7 (Apparantly works on IE8, but limited to 32K). http://en.wikipedia.org/wiki/Data_URI_scheme Bryan -Original Message- From: Roman Schmid [mailt

Re: [qooxdoo-devel] [SPAM] Horizontal line in Qooxdoo

2009-02-27 Thread Miley
Hi Alex, I would like to place a seperator in a panel with HBox/VBox layout. I have a container with VBox layout and there are few textboxes inside this container. Now I want to place a horizontal line as seperator between these textboxes. Can you please give me ideas on how to create this horizo

Re: [qooxdoo-devel] PNG images via RPC

2009-02-27 Thread turicum
Hi Roman, then I guess the only way is to add a python WSGI application that serves the image. I'll have to pass additional arguments in the query string instead of using the RPC parameters. Thanks a lot! Alessandro Roman Schmid-2 wrote: > > Hi Alessandro > > As far as i know there's no wa

Re: [qooxdoo-devel] PNG images via RPC

2009-02-27 Thread Roman Schmid
Hi Alessandro As far as i know there's no way to load binary data in javascript. Or better: to load a byte-stream and use that as image. I guess you'll have to choose one of the methods mentioned in the previous posts... Or you could write your png data to a file and send the url to that file via

Re: [qooxdoo-devel] PNG images via RPC

2009-02-27 Thread turicum
Hi Roman & Farid, thank you for your reply! you're both right. That would work, but I'd like to return all data from the server, including a dynamically generated image, using a dictionary. One element of the dictionary returned by the RPC call is the raw PNG image. By using an additional WSGI

Re: [qooxdoo-devel] [SPAM] RE: RE: HtmlArea toolbars and updates for 0.8.1

2009-02-27 Thread Alexander Back
Hi John, please file a bug report which describes this problem and assign this bug report to me. Thanks, Alex John Spackman wrote: > Hi Alex, > > I've switched to FF3 but I get "Permission denied to get property > HTMLDocument.open" in HtmlArea.__renderContent. This happens with the > curr

Re: [qooxdoo-devel] Window classes in QxTransformer

2009-02-27 Thread Siarhei Barysiuk
I would love to get your feedback on a lack of functionality, bugs or any ideas for further improvements. I will really appreciate this. You can do it here, or in QxTransformer Google Group, or send me direct mail. It helps me to improve the project. Thanks, Siarhei On Fri, Feb 27, 2009 at 2:51 P

Re: [qooxdoo-devel] HtmlArea toolbars and updates for 0.8.1

2009-02-27 Thread John Spackman
Hi Alex, I've switched to FF3 but I get "Permission denied to get property HTMLDocument.open" in HtmlArea.__renderContent. This happens with the current svn of 0.3-pre on 0.8.1 and the svn head of qooxdoo (I've tried with a fresh HtmlArea 0.3-pre checkout and a new skeleton app that only creates

Re: [qooxdoo-devel] Looking for best practice with "dock" style layout

2009-02-27 Thread Sebastian Werner
Hi! Welcome to qooxdoo! I would say you need to overlay the Dock layout in this case. Just create the Dock layout without the bottom overlay. Then put both into a canvas layout: canvas - dock (edge=0) - overlay (bottom=0, left=0, right=0, height=xxx) then simply show/exclude the overlay as n

Re: [qooxdoo-devel] Window classes in QxTransformer

2009-02-27 Thread Lorenzo Vegetti
Thank you Siarhei, you've been very clear. Keep up the awesome work with QxTransformer! Even if it's still lacking a few things I love (as much as I love Qooxdoo and hate using JS to code the UI). Lorenzo Siarhei Barysiuk ha scritto: Hello Lorenzo, - How do I make QxTransformer

Re: [qooxdoo-devel] Window classes in QxTransformer

2009-02-27 Thread Siarhei Barysiuk
Hello Lorenzo, > - How do I make QxTransformer create a new class extending > qx.ui.window.Window (or any other class)? Eg: I'm trying to create a class > for a log on window that I'd like to reference in my code using using > something like "var logOnWindow = new > dart.services.client.windows.Lo

[qooxdoo-devel] Window classes in QxTransformer

2009-02-27 Thread Lorenzo Vegetti
Hello everyone, I'm quite a newbie, I'm now writing my 1st project using Qooxdoo (0.8.1) and QxTransformer (0.4a). I have a few questions: - How do I make QxTransformer create a new class extending qx.ui.window.Window (or any other class)? Eg: I'm trying to create a class for a log on window t

[qooxdoo-devel] window minimize()

2009-02-27 Thread Amit Rana
Hi, I want to use the window widget in my application. I know that the minimize button does not use to work as desired (Bug - http://bugzilla.qooxdoo.org/show_bug.cgi?id=1770), but the v0.8.1 release note (http://qooxdoo.org/about/release_notes/0.8.1?s=0%208%20release%20notes) mentions that th

Re: [qooxdoo-devel] [SPAM] RE: HtmlArea toolbars and updates for 0.8.1

2009-02-27 Thread Alexander Back
Hi John, John Spackman wrote: > I'm having problems with my first change to the 0.3-pre branch that's > probably down to my inexperience with Qx but perhaps you can help - I have a > function in command/Manager which is trying to get the text node where the > user's cursor is so that it can change

Re: [qooxdoo-devel] HtmlArea toolbars and updates for 0.8.1

2009-02-27 Thread John Spackman
Hi Alex, I'm having problems with my first change to the 0.3-pre branch that's probably down to my inexperience with Qx but perhaps you can help - I have a function in command/Manager which is trying to get the text node where the user's cursor is so that it can change the paragraph into a heading

Re: [qooxdoo-devel] PNG images via RPC

2009-02-27 Thread Farid Elyahyaoui
simple, use: img = new qx.ui.basic.Image; img.setSource("http://bla.com/images/img1.png";) On Fri, Feb 27, 2009 at 3:14 AM, turicum wrote: > > Dear Qooxdooxers, > > I need some help with placing a chart in qooxdoo: > > I generate images on the server side (python + matplotlib) and get them via

Re: [qooxdoo-devel] PNG images via RPC

2009-02-27 Thread Roman Schmid
Hi Alessandro Did you try to load the PNG using the ImageLoader? http://demo.qooxdoo.org/0.8.x/apiviewer/#qx.io2.ImageLoader It won't be an RPC call, but i guess you could make the function that generates the image acessible through a "normal" url? Best - Roman turicum wrote: > Dear Qooxdooxers

Re: [qooxdoo-devel] [SPAM] Horizontal line in Qooxdoo

2009-02-27 Thread Alexander Back
Hi, srilatha wrote: > Hello Qooxdoo experts, > > I have few controls on a panel and i want to seperate them by placing a > horizontal line between controls. I do not see any straightforward class for > horizontal line. Let me know how to create a horizontal line control. Existing separators are a

Re: [qooxdoo-devel] HtmlArea toolbars and updates for 0.8.1

2009-02-27 Thread Andreas Ecker
Howdy! > > I should be able to pull out my changes fairly easily and re-apply them to > > 0.3-pre - would you be happy for me to email a patch script and/or commit to > > SVN (perhaps a separate branch?) > Yes, just send your changes to me to review them. If everything is okay > for me you can co

[qooxdoo-devel] Horizontal line in Qooxdoo

2009-02-27 Thread srilatha
Hello Qooxdoo experts, I have few controls on a panel and i want to seperate them by placing a horizontal line between controls. I do not see any straightforward class for horizontal line. Let me know how to create a horizontal line control. Thanks in advance... -- View this message in context:

[qooxdoo-devel] PNG images via RPC

2009-02-27 Thread turicum
Dear Qooxdooxers, I need some help with placing a chart in qooxdoo: I generate images on the server side (python + matplotlib) and get them via JSON-RPC, so that, on the client side, I have a variable with the a raw PNG string (starting with �PNG and followed by plenty of non-printable stuff). H

Re: [qooxdoo-devel] Is anyone adding data to a table via setDataAsMapArray()?

2009-02-27 Thread Amit Rana
If you want a sample code snippet, please find attached a code which you can test in Playground application. Amit Derrell Lipman wrote: On Thu, Feb 26, 2009 at 2:54 PM, Jim Hunter > wrote: I am trying to do some complex things with the table and in order t

Re: [qooxdoo-devel] How do I create an Inline Application using create-application

2009-02-27 Thread Alexander Back
Hi Gene, Gene Amtower wrote: > Actually, I was referring to the specific documentation on the Inline > method, as the current doc page on "Inline Widgets" assumed that I knew > to create the application as an "Application" and then modify it > accordingly. It left me wondering which create optio

[qooxdoo-devel] Looking for best practice with "dock" style layout

2009-02-27 Thread Cajus Pollmeier
Hello! I'm new to the list and to the qooxdoo framework. Having some history in QT programming, I like qooxdoo very much ;-) After starting up and playing around successfully, I keep on trying to find the right way to achieve a layout like the second one shown in http://demo.qooxdoo.org/curr