Re: [qooxdoo-devel] Extending themes in 0.7-beta3

2007-05-30 Thread Sebastian Werner
I've improved the debug tests in this case, too. Such typos are now handled with an exception. Much better :) Sebastian Florian Probst schrieb: > Hi Alex, > > thanks a lot... how stupid :) > works now > > Florian > > Alex Back schrieb: >> Hi Florian, >> >> Florian Probst wrote: >>> meta-the

Re: [qooxdoo-devel] Extending themes in 0.7-beta3

2007-05-30 Thread Florian Probst
Hi Alex, thanks a lot... how stupid :) works now Florian Alex Back schrieb: > Hi Florian, > > Florian Probst wrote: >> meta-theme: >> >> qx.Theme.define("de.cas.qx.ui.ribbon.theme.Office", >> { >>extend: qx.theme.Ext, >>title : "Ribbon Office", >> >>meta : { >>

Re: [qooxdoo-devel] Extending themes in 0.7-beta3

2007-05-30 Thread Alex Back
Hi Florian, Florian Probst wrote: > meta-theme: > > qx.Theme.define("de.cas.qx.ui.ribbon.theme.Office", > { >extend : qx.theme.Ext, >title : "Ribbon Office", > >meta : { > color : de.cas.qx.ui.ribbon.theme.color.Blue, > border : de.

Re: [qooxdoo-devel] Extending themes in 0.7-beta3

2007-05-30 Thread Florian Probst
Hi, meta-theme: qx.Theme.define("de.cas.qx.ui.ribbon.theme.Office", { extend : qx.theme.Ext, title: "Ribbon Office", meta : { color : de.cas.qx.ui.ribbon.theme.color.Blue, border : de.cas.qx.ui.ribbon.theme.Border, font

Re: [qooxdoo-devel] Extending themes in 0.7-beta3

2007-05-30 Thread Alex Back
Hi Florian, Florian Probst wrote: > Hello, it's me again, sorry :) > > But I found another strange thing: > > using extend in meta-theme and all seperate themes does not throw an > exception but: my own appearances are MISSING. > > Currently I'm using this line in my makefile: > > APPLICATION_THEM

Re: [qooxdoo-devel] Extending themes in 0.7-beta3

2007-05-30 Thread Florian Probst
Hello, it's me again, sorry :) But I found another strange thing: using extend in meta-theme and all seperate themes does not throw an exception but: my own appearances are MISSING. Currently I'm using this line in my makefile: APPLICATION_THEME = de.cas.qx.ui.ribbon.theme.Office My own appea

Re: [qooxdoo-devel] Extending themes in 0.7-beta3

2007-05-30 Thread Florian Probst
ah, that makes sense :) Hmm, I tried removing the extend within my meta theme, but now the extend of my other themes does not work anymore? strange... only when I use extend in my meta-theme it works. nah... I'm happy that it works somehow... so Thanks alot Florian Sebastian Werner schrieb

Re: [qooxdoo-devel] Extending themes in 0.7-beta3

2007-05-30 Thread Sebastian Werner
Because the meta theme only extends the other meta theme and has no influence on the separate themes which I think would be bad anyway. The extend on the meta theme is not needed if your metatheme has definitions for all the themes needed (if you add a icon theme this would be the case for you,

Re: [qooxdoo-devel] Extending themes in 0.7-beta3

2007-05-30 Thread Florian Probst
Hi Sebastian, thank you for that fast answer. That worked! But why do I need to extend the seperate themes when I told my meta-theme to extend? Florian Sebastian Werner schrieb: > Florian, > > please double-check that all your separate themes extend from their Ext > companions, too. > > The p

Re: [qooxdoo-devel] Extending themes in 0.7-beta3

2007-05-30 Thread Sebastian Werner
Florian, please double-check that all your separate themes extend from their Ext companions, too. The problem is that the border "general" is not defined in your case. The system then reports that this value is invalid which is completely correct. Sebastian Florian Probst schrieb: > Hi, >

[qooxdoo-devel] Extending themes in 0.7-beta3

2007-05-30 Thread Florian Probst
Hi, I've got a little problem with my themes: I would like to extend my own theme with "Ext" for example. I am using a meta theme containing appearance, font, etc. First I tried it this way: qx.Theme.define("de.cas.qx.ui.ribbon.theme.Appearance", { title : "Ribbon Office", extend