Re: [qooxdoo-devel] Creating appearance theme

2007-03-05 Thread Andreas Ecker
Hi Jim! > Jim Hunter > The article you referenced does not seem to be there any more. Was it > moved/removed/replaced? It was renamed to http://qooxdoo.org/documentation/user_manual/create_a_custom_appearance In cases like this, the full text search option for the entire homepage is quite handy.

Re: [qooxdoo-devel] Creating appearance theme

2007-03-05 Thread Jim Hunter
The article you referenced does not seem to be there any more. Was it moved/removed/replaced? I am having an issue with appearances after migrating to 0.6.6.. When I get the default theme with qx.manager.object.AppearanceManager.getInstance ().getAppearanceTheme(); it returns null, so when I try

Re: [qooxdoo-devel] Creating appearance theme

2007-02-02 Thread Alex Back
Hi Chris, > I had to base it on the qx.theme.appearance.Classic class as the > DefaultAppearanceTheme class does not exist in 0.6.4. Perhaps it does exist > in 0.6.5, I'll check that out later today. As Matthias already pointed out the class "DefaultAppearanceTheme" is replaced by the "Classic" a

Re: [qooxdoo-devel] Creating appearance theme

2007-02-01 Thread Matthias Reuter
> I had to base it on the qx.theme.appearance.Classic class as > the DefaultAppearanceTheme class does not exist in 0.6.4. > Perhaps it does exist in 0.6.5, I'll check that out later today. I guess not. I'm still using 0.6.2, so DefaultAppearanceTheme seems outdated. > Also, I found I only need

Re: [qooxdoo-devel] Creating appearance theme

2007-02-01 Thread CSBrown
Thank you for that, I now have a working appearance theme. I had to base it on the qx.theme.appearance.Classic class as the DefaultAppearanceTheme class does not exist in 0.6.4. Perhaps it does exist in 0.6.5, I'll check that out later today. Also, I found I only needed the last line of code to

Re: [qooxdoo-devel] Creating appearance theme

2007-02-01 Thread Matthias Reuter
I'm not sure if this is correct, because I copied it from some other source. - create a new AppearanceTheme, inheriting from DefaultAppearanceTheme: qx.OO.defineClass("myApp.AppearanceTheme", qx.theme.appearance.DefaultAppearanceTheme, function(vTitle) { qx.theme.appearance.DefaultAppearanceT

Re: [qooxdoo-devel] Creating appearance theme

2007-02-01 Thread Hugh Gibson
> I'm still trying to work out how to register a new appearance theme > and make > it the default. Have tried several approaches but not found anything > that > works yet. Can anyone help me with this? Not really help, I know, but I have been just modifying the default theme obtained from: qx.

Re: [qooxdoo-devel] Creating appearance theme

2007-02-01 Thread CSBrown
Hi, I'm still trying to work out how to register a new appearance theme and make it the default. Have tried several approaches but not found anything that works yet. Can anyone help me with this? Many thanks, Chris. -- View this message in context: http://www.nabble.com/Creating-appearance-t

[qooxdoo-devel] Creating appearance theme

2007-01-24 Thread CSBrown
Hi, I'm creating an appearance theme and wondered if I should define the application colours in the appearance theme or create a corresponding colour theme? Can the appearance and colour themes work together, i.e. reference the colour theme from the appearance theme? Also, if I create a new app