[qooxdoo-devel] Appearances: mixin / patch?

2007-06-27 Thread Florian Probst
Hi, I can't find any information or examples how mixins work with appearances (or is it called "patching"). Yesterday I've heard that it should work with qx 0.7.1. What's the difference beetween patching and mixing? Hmmm. I don't understand the documentation :-( Patching is something like "ex

[qooxdoo-devel] How to catch StateChanges?

2007-06-12 Thread Florian Probst
Hi, I'm wondering if it's possible state-changes to an Object. Is there an event thrown when a state has changed? In my case I would be nice to have this on a button losing his state "abandoned". thanks in advance florian --

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,

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

2007-05-30 Thread Florian Probst
: "hidden", font: "default", color : "textButton",//textButton backgroundImage : states.over && !states.pressed ? bgImgOver : states.pressed || states.abandoned ? bgImgPressed : null

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

2007-05-30 Thread Florian Probst
ce My own appearances seem to work by adding the following line in the makefile: APPLICATION_THEME_APPEARANCE = de.cas.qx.ui.ribbon.theme.Appearance A bug or my fault? -Florian Florian Probst schrieb: > ah, that makes sense :) > > Hmm, I tried removing the extend within my meta theme, bu

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

2007-05-30 Thread Florian Probst
this > would be the case for you, too). > > Sebastian > > > > Florian Probst schrieb: >> 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-the

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

2007-05-30 Thread Florian Probst
oo. > > 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, >> >> I've got a li

[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

[qooxdoo-devel] Bug-Report: Upgrading from 0.7-alpha2 to 0.7-beta2

2007-05-29 Thread Florian Probst
Hi, while upgrading my project to 0.7-beta2 (from 0.7-alpha2) I experienced some problems with the generated scriptfile (using "make"). The order of included scripts is incorrect. My application.js (setting my qxSettings) should be included before any themes (in my case Icon-Theme), because it

[qooxdoo-devel] 0.7-beta2: icon theme - and what's the use of it?

2007-05-29 Thread Florian Probst
Hi, I'm trying to get familiar with your new theme-stuff, but I still do not know what the use of the icon-theme ? Indeed I am able to set an iconUri, but instead I can also use the qxSetting "resourceUri". What's the advantage of an icon-theme? Is it possible to set more than one iconUri?

Re: [qooxdoo-devel] Is it possible to catch _modifyStaticVariable?

2007-04-17 Thread Florian Probst
t- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Fabian Jakobs Gesendet: Montag, 16. April 2007 14:49 An: qooxdoo Development Betreff: Re: [qooxdoo-devel] Is it possible to catch _modifyStaticVariable? Florian Probst schrieb: > > Hi, > > it's p

[qooxdoo-devel] Is it possible to catch _modifyStaticVariable?

2007-04-16 Thread Florian Probst
Hi, it's possible to use the function _modifyPropertyName : function(propValue, propOldValue, propData) { } to catch modifications to a property. But what about statics? A member "_modifyStaticName" does not work L any ideas? Regards, Florian

[qooxdoo-devel] custom appearances in 0.7-alpha2

2007-04-11 Thread Florian Probst
x27;t merge the new appearances with classic and I also do not know, how to load the theme. qx.manager.object.AppearanceManager.getInstance().setAppearanceTheme(de. cas.qxProject.theme.MyAppearance); Does not work (but no errors occur)... i'm a bit lost... Is any