Re: [qooxdoo-devel] Theming

2015-05-09 Thread Vincent Vandenschrick
J -- Vincent Vandenschrick > Le 9 mai 2015 à 11:17, slah a écrit : > > JSPresso: > "12 allée du Chien qui Fume" hh > it remembers me "La société des vaches vièrges" a sample data I put and made > my customer lough during demo. > > > > > -- > View this message in context: > http://qooxd

Re: [qooxdoo-devel] Theming

2015-05-09 Thread slah
JSPresso: "12 allée du Chien qui Fume" hh it remembers me "La société des vaches vièrges" a sample data I put and made my customer lough during demo. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Theming-tp7587082p7587132.html Sent from the qooxdoo mailing list archive

Re: [qooxdoo-devel] Theming

2015-05-08 Thread Tom Saddul
This is what I fear since I don't have that luxury in qx-typed since the qooxdoo.js file is already minified. I will try to request jbaron to release qx-typed un-minified. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Theming-tp7587082p7587131.html Sent from the qooxdoo ma

Re: [qooxdoo-devel] Theming

2015-05-07 Thread Dietrich Streifert
Hi Chris, I'm very curiuos about your clean way which should find its way into qooxdoo core as this is the way to go. Thank you for sharing this with us. Regarding my project: I'm not in hurry, so I can wait until you publish your code. Thank you for that. Dietrich Am 07.05.2015 um 19:34 sch

Re: [qooxdoo-devel] Theming

2015-05-07 Thread Vincent Vandenschrick
I'm definitely *very* interested about the clean way of using icon fonts in place of image icons on qooxdoo components. So I'll stay tuned ;-) > Le 7 mai 2015 à 19:34, SQville a écrit : > > My theme will have you covered there too Dietrich. I use Font Icons in my > mobile apps so i figured out

Re: [qooxdoo-devel] Theming

2015-05-07 Thread SQville
So that looks like it gets the class in the ball park. Now get it playing out on the field by mixing it into the qx Decorator class: Add this to your Application code (this adds the "transition" property to the Decorator qx class): qx.Class.include(qx.ui.decoration.Decorator, JspressoMTransition

Re: [qooxdoo-devel] Theming

2015-05-07 Thread SQville
My theme will have you covered there too Dietrich. I use Font Icons in my mobile apps so i figured out a way to do it in desktop too. There's a dirty way to incorporate font icons into a desktop app and then there's the clean way. I have the clean way figured out. Give me some time and I'll post c

Re: [qooxdoo-devel] Theming

2015-05-07 Thread Tom Saddul
Thank you for your reply. I do not use generate.py as I'm using TypeScript and qooxdoo at https://github.com/jbaron/cats. I created this function: export function initFocusDecorator() { /* * Copyright (c) 2005-2015 Vincent Vandenschrick. All rights reserved. *

Re: [qooxdoo-devel] Theming

2015-05-06 Thread Dietrich Streifert
Really nice! I'm searching for a simple flat theme for a coming project. I've also seen the work of Chris (SQville) which also seems to be very clear and flat. The crowning touch would be able to use Font Awsome or similar as icons (http://fortawesome.github.io/Font-Awesome/icons/). Am 07.0

Re: [qooxdoo-devel] Theming

2015-05-06 Thread Vincent Vandenschrick
Hi Dietrich, Sure, you can test-drive a very simple Jspresso demo app with new theme here (log in with demo/demo): http://www.jspresso.org/hrsample-webapp/html5 Feel free to play around; it's an in-memory db and the server is restarted every 15 minutes, so you can just go and break everything :

Re: [qooxdoo-devel] Theming

2015-05-06 Thread Dietrich Streifert
Hi Vincent! Do you have any demo of your theme publicly online? Sounds very impressive and interesting! Regards Dietrich Am 05.05.2015 um 22:03 schrieb Vincent Vandenschrick: > Thank you Chris, > I've applied your patch to mine. > > >

Re: [qooxdoo-devel] Theming

2015-05-05 Thread Vincent Vandenschrick
Thank you Chris, I've applied your patch to mine. > Le 5 mai 2015 à 21:20, SQville a écrit : > > Vincent, > > add this to your Mixin to make it cross browser: > > // Transition > var transitionpropName = qx.core.Environment.get("css.transition"); > transitionpropName = qx.bom.Style.getCssName

Re: [qooxdoo-devel] Theming

2015-05-05 Thread SQville
Vincent, add this to your Mixin to make it cross browser: // Transition var transitionpropName = qx.core.Environment.get("css.transition"); transitionpropName = qx.bom.Style.getCssName(transitionpropName.name); Then use the variable in your _styleTransition function: styles[transitionpropName]

Re: [qooxdoo-devel] Theming

2015-05-05 Thread SQville
Tom, it's super easy. Just add Vincent's one Mixin class to your project and rename his mixin to anything. in his Mixin change: qx.Mixin.define("org.jspresso.framework.patch.MTransition", { to qx.Mixin.define("toms.application.MTransition", { Run generate.py source then add this one line of c

Re: [qooxdoo-devel] Theming

2015-05-04 Thread Tom Saddul
I wish there is an easier way to integrated that in my app too but I would need to find a way of adding that "transition" property to the modern theme without editing the source. Too bad I'm not a javascript/css/html guy so I would have to stick with the basic modern theme for now. -- View thi

Re: [qooxdoo-devel] Theming

2015-05-04 Thread Phyo Arkar
I think we should start a Qooxdoo extension project. Current Contrib is not organized and people rarely keep maintinaing. How about we, the community do things that core qooxdoo do not have , but all keep in a same repo (something like https://github.com/borisyankov/DefinitelyTyped) There we will

Re: [qooxdoo-devel] Theming

2015-05-03 Thread Tom Saddul
>From the responses of others, it looks like this is a very nice feature. I would love to use it but what is the best method to use it? Do I need to modify qx.theme.modern.Decoration.js to include the changes in the "Transition" property? -- View this message in context: http://qooxdoo.678.n2

Re: [qooxdoo-devel] Theming

2015-05-01 Thread Vincent Vandenschrick
Hi George, Great to hear about that. I must admit it has been a real surprise for me either ;-) > Le 1 mai 2015 à 18:51, George Nikolaidis a écrit : > > Vincent, thank you! > > We have integrated your wonderful patch in our soon to be released > qx.Desktop application, I cannot overstate how

Re: [qooxdoo-devel] Theming

2015-05-01 Thread George Nikolaidis
Vincent, thank you! We have integrated your wonderful patch in our soon to be released qx.Desktop application, I cannot overstate how much eye-candy it added to its look and feel. And yes, it works for everything - borders, backgrounds, sizes etc! Regards, -- George Nikolaidis (gnikolai...@e

Re: [qooxdoo-devel] Theming

2015-05-01 Thread Vincent Vandenschrick
Thank you Norbert, And I've just discovered that it can work for almost anything! For instance, I've used the collapsable panel in order to build an accordion. Styling it with a "transition" makes the accordion sections smoothly close / open instead of switching abruptly from one state to the o

Re: [qooxdoo-devel] Theming

2015-05-01 Thread N. Schröder
Hello Vincent, I've just tried your mixin. It works like a charm - and provides a good starting point for further experimentation. Thanks a lot for sharing, Norbert Am 29.04.2015 um 19:14 schrieb Vincent Vandenschrick: Hi all, For the record, I've succeeded in animating the focus by writin

Re: [qooxdoo-devel] Theming

2015-04-30 Thread Phyo Arkar
Thats very nice ! good! On Wed, Apr 29, 2015 at 11:44 PM, Vincent Vandenschrick wrote: > Hi all, > For the record, I've succeeded in animating the focus by writing a simple > Decorator mixin and then using the "transition" property in decorators for > the focus state. Here is the source code : >

Re: [qooxdoo-devel] Theming

2015-04-29 Thread Vincent Vandenschrick
Hi all, For the record, I've succeeded in animating the focus by writing a simple Decorator mixin and then using the "transition" property in decorators for the focus state. Here is the source code : https://github.com/jspresso/jspresso-ce/blob/master/qooxdoo/client/src/main/js/org/jspresso/fram

Re: [qooxdoo-devel] Theming

2015-04-27 Thread Vincent Vandenschrick
Thank you Norbert. That's what I thought, unfortunately. -- Vincent Vandenschrick > Le 27 avr. 2015 à 10:40, Norbert Schroeder a écrit : > > Hello Vincent, > > I'm not aware of any way to animate the focus change. As qooxdoo's animation > capabilities in general are concerned there is still s

Re: [qooxdoo-devel] Theming

2015-04-27 Thread Norbert Schroeder
Hello Vincent, I'm not aware of any way to animate the focus change. As qooxdoo's animation capabilities in general are concerned there is still some room for improvement... Best regards, Norbert Vincent Vandenschrick schrieb am 27.04.2015 09:22: > Thank you Norbert, that looks great. An ex

Re: [qooxdoo-devel] Theming

2015-04-27 Thread Vincent Vandenschrick
Thank you Norbert, that looks great. An extra question : is there a way, through theming or app code itself, to animate the border focus change like Bootstrap CSS does ? Thanks again, Vincent > Le 27 avr. 2015 à 00:30, Norbert Schröder a écrit : > > Hi Vincent, > > here is a quick & dirty ex

Re: [qooxdoo-devel] Theming

2015-04-26 Thread Norbert Schröder
Hi Vincent, here is a quick & dirty example of how you could style a qooxdoo desktop widget with a glowy border: http://tinyurl.com/l9fyee4 As to your second question: you are right. Best regards, Norbert Am 26.04.2015 um 16:24 schrieb Vincent Vandenschrick: > Hi all, > I'm trying to impr

[qooxdoo-devel] Theming

2015-04-26 Thread Vincent Vandenschrick
Hi all, I'm trying to improve the L&F of my qooxdoo applications and I wonder if there is any possibility to mimic the "glowy" shadow border of twitter bootstrap css focus borders using the qooxdoo desktop theming infrastructure (e.g. http://getbootstrap.com/css/#forms-control-focus). Moreover,

Re: [qooxdoo-devel] Theming and window size

2013-11-06 Thread Benjamin Dreux
In my case i had to add this "interest-calculator-window": { include: "window", style: function(states) { return { width:500, height:500 }; } }, "interest-calculator-window/captionbar" :"window/captionbar", "interest-calculator-win

[qooxdoo-devel] Theming and window size

2013-11-06 Thread Benjamin Dreux
HI, I never digg to much into theming. Today, i want to make a better usage of theming capabilities of qooxdoo. My first issue is with the appearance of window. I want to remove width and height definition from the class of my window. And i want to define these size into my appearance. Is that

Re: [qooxdoo-devel] Theming Bug for ProgressBar in a complex widget?

2012-04-14 Thread Leo von Klenze
Hey Tristan, thank you for the quick reply. I reread the chapters twice again. I think I understood the theming stuff a bit better now :-) It works as you suggested. A simple alias was enough. Best Regards, Leo On 04/05/2012 12:05 PM, Tristan Koch wrote: > Hi Leo, > > you need to provide an

Re: [qooxdoo-devel] Theming Bug for ProgressBar in a complex widget?

2012-04-05 Thread Tristan Koch
Hi Leo, you need to provide an appearance for "fileprogress". Probably you just want to map it to the appearance of the progress bar, using a child control alias. See [1] and especially [2] Regards Tristan [1] http://manual.qooxdoo.org/1.6.x/pages/gui_toolkit/ui_appearance.html [2] http://man

Re: [qooxdoo-devel] Theming Bug for ProgressBar in a complex widget?

2012-04-04 Thread Leo von Klenze
Hi, sure, this link should work: http://preview.tinyurl.com/bq6qvly Thanks! On 04/04/2012 12:49 PM, Tristan Koch wrote: > Hi Leo, > > the link you posted is broken. Could you please shorten it, for instance > using tinyurl.com? Thanks! > > Am 01.04.2012 um 19:09 schrieb Leo von Klenze: > >> Hel

Re: [qooxdoo-devel] Theming Bug for ProgressBar in a complex widget?

2012-04-04 Thread Tristan Koch
Hi Leo, the link you posted is broken. Could you please shorten it, for instance using tinyurl.com? Thanks! Am 01.04.2012 um 19:09 schrieb Leo von Klenze: > Hello, > > I've a problem with a progress bar in a complex widget. I wrote a small > example to reproduce this issue: > http://demo.qoox

[qooxdoo-devel] Theming Bug for ProgressBar in a complex widget?

2012-04-01 Thread Leo von Klenze
Hello, I've a problem with a progress bar in a complex widget. I wrote a small example to reproduce this issue: http://demo.qooxdoo.org/current/playground/#%7B%22code%22%3A%22qx.Class.define('test.ComplexWidget'%252C%2520%257B%250A%2520%2520%2520%2520extend%253A%2520qx.ui.core.Widget%252C%250A%2

Re: [qooxdoo-devel] Theming selected text

2012-02-11 Thread Derrell Lipman
2012/2/11 Norbert Schröder > Your posting now reminded me of the problem, so I googled a bit and > finally found this thread at stackoverflow.com: > > http://stackoverflow.com/questions/2043695/textareaselection-and-moz-selection > . > This was the essential hint, and I found a solution for Firef

Re: [qooxdoo-devel] Theming selected text

2012-02-11 Thread Derrell Lipman
Oh, yuck! This needs to be themable from within the qooxdoo appearance system, especially if it's different by browser. Hopefully someone else will reply that, "Oh yeah, qooxdoo already supports that. You just do..." Otherwise, I'll create a bug report so this can get incorporated into the appeara

Re: [qooxdoo-devel] Theming selected text

2012-02-11 Thread Norbert Schröder
Hi Derrell, I had the same problem when I was developing the DarkTheme contribution, and I posted a similar question to the mailing list some 1.5 years ago: http://qooxdoo.678.n2.nabble.com/Qooxdoo-themes-td5510734.html#a5514201. Since I never got any response regarding this particular theming

Re: [qooxdoo-devel] theming?

2011-10-27 Thread thron7
> thank you and now my next question > > the pats inside the themes like this > > "decoration/menu/bar-background.png" > > where is the startpath defined? how can i access my app folder ? > myapp/..?! The manual should answer all your questions. Maybe you start here: http://manual.qooxdoo.org/cur

Re: [qooxdoo-devel] theming?

2011-10-27 Thread smisobnline
thank you and now my next question the pats inside the themes like this "decoration/menu/bar-background.png" where is the startpath defined? how can i access my app folder ? myapp/..?! > > On 10/27/2011 06:53 PM, smisobnline wrote: >> Where are this defined >> >> qx.core.Environment.get("css.g

Re: [qooxdoo-devel] theming?

2011-10-27 Thread thron7
On 10/27/2011 06:53 PM, smisobnline wrote: > Where are this defined > > qx.core.Environment.get("css.gradients")) > > css.gradients . what is t See http://manual.qooxdoo.org/1.5.x/pages/core/environment.html#pre-defined-environment-keys > and how can i change it? You can't. It's a detected

[qooxdoo-devel] theming?

2011-10-27 Thread smisobnline
Where are this defined qx.core.Environment.get("css.gradients")) css.gradients . what is t and how can i change it? Is it a color gradient? -- The demand for IT networking professionals continues to grow, and the dema

Re: [qooxdoo-devel] Theming issues

2011-01-17 Thread flj
> in Appearance.js there are four entries defining the appearance of Thanks, I saved the mail. Unfortunately I have way too much to do right now, so I'll probably only be able to deal with this in the weekend again. I'll post again if I have additional questions. br, flj -

Re: [qooxdoo-devel] Theming issues

2011-01-17 Thread flj
Hi. > in Appearance.js there are four entries defining the appearance of ... Thanks very much. I'll have a look. The problem is, right now I have way too many things to do at the same time, so I won't be able to deal with this issue again until the weekend, probably. I saved the mail, and will

Re: [qooxdoo-devel] Theming issues

2011-01-16 Thread Norbert Schröder
Hi flj, in Appearance.js there are four entries defining the appearance of a splitpane and its child controls (splitter, slider and knob). The default splitter is defined in terms of width/height plus a background color: "splitpane/splitter" : { style : function(states) { return {

[qooxdoo-devel] Theming issues

2011-01-16 Thread flj
Hi. I have to build a custom theme. I'm stuck with an issue: how can I modify the appearance of splitters? According to the documentation, the splitter has no specific appearance (its appearance is "widget"), and after spending a few quite frustrating hours trying to set an appearance from code

Re: [qooxdoo-devel] Theming question: How to get rid of gradient background image

2009-11-04 Thread Jonathan Weiß
Hello Matthew, yes, null would als work, as we do a simple check like "if (decorator) ... {} ". But we decided to use undefined anywhere in the qx.theme namespace, so it would be convenient to stay with it. ;-) Cheers Jonathan - Jonathan Weiß Framework Engineer http://mysterycity.de/blog

Re: [qooxdoo-devel] Theming question: How to get rid of gradient background image

2009-11-03 Thread Matthew Gregory
Does undefined work? I would have thought null would be a better option? Jonathan Weiß wrote: > Hello Christian, > > > overriding entries in your application's theme is the correct way to go. :-) > > What have you tried so far? You can remove a decorator by setting the value > to undefined: >

Re: [qooxdoo-devel] Theming question: How to get rid of gradient background image

2009-11-03 Thread Jonathan Weiß
Hello Christian, overriding entries in your application's theme is the correct way to go. :-) What have you tried so far? You can remove a decorator by setting the value to undefined: qx.Theme.define("helloworld.theme.Appearance", { extend : qx.theme.modern.Appearance, appearances : {

[qooxdoo-devel] Theming question: How to get rid of gradient background image

2009-11-02 Thread panyasan
Hello, I am trying to get rid of the stylish gradient background image in the toolbar and table headers which looks good in principle but gets old really fast a complex UI with many toolbars and tables. I have experimented with overriding entries in the Appeareance and Decoration classes in the "

Re: [qooxdoo-devel] Theming a button (its image actually)

2009-10-19 Thread Jean-Noël Rivasseau
Opened http://bugzilla.qooxdoo.org/show_bug.cgi?id=2955 for this. On Mon, Oct 19, 2009 at 10:14 AM, Christian Schmidt < schmidt.christ...@1und1.de> wrote: > Hi Jean-Noël, > > sorry, my mistake. You are right, this is really a bug. Setting the icon > with the constructor should not make problems

Re: [qooxdoo-devel] Theming a button (its image actually)

2009-10-19 Thread Christian Schmidt
Hi Jean-Noël, sorry, my mistake. You are right, this is really a bug. Setting the icon with the constructor should not make problems with using the appearance. Could you please open a bug report for that and assign it to me. Thanks, Chris Jean-Noël Rivasseau schrieb: > Hi. I read all the docum

Re: [qooxdoo-devel] Theming a button (its image actually)

2009-10-16 Thread Jean-Noël Rivasseau
Hi. I read all the documentation 20 times, but this is not mentionned at all, as it is quite specific :) I repeat that I find it a strange behavior anyway - this is closer to a bug IMHO. Jean-Noel On Fri, Oct 16, 2009 at 9:37 AM, Christian Schmidt < schmidt.christ...@1und1.de> wrote: > Hi Jean-

Re: [qooxdoo-devel] Theming a button (its image actually)

2009-10-16 Thread Christian Schmidt
Hi Jean-Noël Rivasseau, sorry, I haven't time to answer your question yesterday, but I see that Matthew answered your question. We have some documentation in our manual for theming: http://qooxdoo.org/documentation/0.8/ui_appearance http://qooxdoo.org/documentation/0.8/ui_custom_themes http://qo

Re: [qooxdoo-devel] Theming a button (its image actually)

2009-10-15 Thread Jean-Noël Rivasseau
Yes, that works! Thanks for the help, you are really saving me on this. This behavior is a bit strange for me, why does Qx act this way? At the very least, shouldnt that be documented somewhere? On Thu, Oct 15, 2009 at 5:55 PM, Matthew Gregory < matthew+qoox...@nogsnet.com > wrote: > You are sett

Re: [qooxdoo-devel] Theming a button (its image actually)

2009-10-15 Thread Matthew Gregory
You are setting the icon inside the constructor for your page. If you provide a custom icon in this way the icon from the theme is always ignored. Try removing the icon from the constructor and use this in your appearance: return {"icon": states.hovered ? "common/margins-active.png" : "commo

Re: [qooxdoo-devel] Theming a button (its image actually)

2009-10-15 Thread Jean-Noël Rivasseau
Hmm, and by the way. This also fails to apply with a simple Image widget and its "source" property set on the Appearance.js file. Can someone tell me where is applied the result of a theme so that I can troubleshoot? eg, the place where you use the map object returned by the style function in Appe

Re: [qooxdoo-devel] Theming a button (its image actually)

2009-10-15 Thread Jean-Noël Rivasseau
Hi, here is the code snippet, but I do everything the normal way: var marginsPage = new qx.ui.tabview.Page(null, "common/try.png"); marginsPage.setAppearance("InsidePaneTabViewPage"); This is the appearance: "InsidePaneTabViewPage/button": { style: f

Re: [qooxdoo-devel] Theming a button (its image actually)

2009-10-15 Thread Christian Schmidt
Hi Jean-Noël, this sounds strange. I'm not a appearance expert, but I will try to help. Could you please send a code snipped how you set the appearance on the widget? Could you also explain if all TabButtons should get the icon or only some? > Also, I was wondering if there was available a list

[qooxdoo-devel] Theming a button (its image actually)

2009-10-14 Thread Jean-Noël Rivasseau
Hi, I am trying to achieve the following: I have a button with an associated icon (actually the button is a TabButton but I dont think this matters), and I want the icon to change when the mouse hovers in the button. I tried the following: "ParentAppearanceId/button": {

Re: [qooxdoo-devel] Theming

2009-01-19 Thread Christian Schmidt
Hi Mustafa, if I understood, you want to use the modern theme with the icons from the classic them? Regards, Chris Mustafa Sak schrieb: > Hi, > > i want to set the icon set from Tango to Oxygen. But i cannot, why? > > I am using this, > > qx.Class.define("radial.Application", > { > exte

Re: [qooxdoo-devel] Theming

2009-01-19 Thread Alexander Back
Hi Mustafa, Mustafa Sak wrote: > But why is this not documented? I tried to set > qx.theme.manager.Icon.setTheme(qx.theme.icon.Oxygen), with out success. I > would never imagin to use getInstance. And could not find any example. > > qooxdoo is grade, but sometimes i feel like playing puzzle. T

Re: [qooxdoo-devel] Theming

2009-01-16 Thread Dan
> > But why is this not documented? I tried to set > qx.theme.manager.Icon.setTheme(qx.theme.icon.Oxygen), with out success. I > would never imagin to use getInstance. And could not find any example. > > qx.theme.manager.Icon is a singleton (and the API defines it as such too). This mean that one a

Re: [qooxdoo-devel] Theming

2009-01-16 Thread Mustafa Sak
. qooxdoo is grade, but sometimes i feel like playing puzzle. regards Mustafa qooxdoo weiter Von: Mustafa Sak Gesendet: Fr 16.01.2009 18:00 An: qooxdoo-devel@lists.sourceforge.net Betreff: [qooxdoo-devel] Theming Hi, i want to set the icon set from Tango to

[qooxdoo-devel] Theming

2009-01-16 Thread Mustafa Sak
Hi, i want to set the icon set from Tango to Oxygen. But i cannot, why? I am using this, qx.Class.define("radial.Application", { extend : qx.application.Standalone, members : { main : function() { this.base(arguments); ... } } }); qx.Theme.define("qx.theme.Modern", { meta :

Re: [qooxdoo-devel] theming qx.ui.tree

2008-11-21 Thread Derrell Lipman
2008/11/21 Derrell Lipman <[EMAIL PROTECTED]> > On Fri, Nov 21, 2008 at 6:32 AM, Petr Kobalíček <[EMAIL PROTECTED]>wrote: > >> Hi devs, >> >> is it possible to theme tree box like that's in qooxdoo 0.7 ? I mean >> tree lines, not only buttons. >> >> > Hi Petr, > > Fabian has it on his todo list to

Re: [qooxdoo-devel] theming qx.ui.tree

2008-11-21 Thread Derrell Lipman
On Fri, Nov 21, 2008 at 6:32 AM, Petr Kobalíček <[EMAIL PROTECTED]>wrote: > Hi devs, > > is it possible to theme tree box like that's in qooxdoo 0.7 ? I mean > tree lines, not only buttons. > > Hi Petr, Fabian has it on his todo list to add the ability to have tree lines to Tree when the Classic

[qooxdoo-devel] theming qx.ui.tree

2008-11-21 Thread Petr Kobalíček
Hi devs, is it possible to theme tree box like that's in qooxdoo 0.7 ? I mean tree lines, not only buttons. I tried to debug tree theming and there are no informations about these lines. Cheers - Petr - This SF.Net email is