Re: [qooxdoo-devel] window caption bar icon size

2011-05-10 Thread Victor Powell
Tristan, The caption bar doesn't resize for me when i use a different icon or when i use the technique you mention. the icon does get bigger, but it does not adjust the caption bar. Victor > Message: 6 > Date: Tue, 10 May 2011 08:26:02 +0200 > From: Tristan Koch > Subject: R

Re: [qooxdoo-devel] window caption bar icon size

2011-05-09 Thread Tristan Koch
… in case you want to achieve the latter, did you try something like this: var win = new qx.ui.window.Window("First Window", "icon/16/apps/office-calendar.png"); var icon = win.getChildControl("icon") icon.setWidth(32); icon.setHeight(32); icon.setScale(true); Tristan Am 09.05.2011 um 23:57 sch

Re: [qooxdoo-devel] window caption bar icon size

2011-05-09 Thread Tristan Koch
Hi Victor, If you choose a larger icon, the caption bar should adjust. Do you want to make an existing icon appear larger or smaller? Tristan Am 09.05.2011 um 23:57 schrieb Victor Powell: > > hello all, > > I'd really like to be able to change the size of the icon in the caption bar. > anyo

[qooxdoo-devel] window caption bar icon size

2011-05-09 Thread Victor Powell
hello all, I'd really like to be able to change the size of the icon in the caption bar. anyone have any ideas how I might go about doing this? -- Victor Powell http://victorp.me (412) 225 - 0015 -- WhatsUp Gold - Downlo

Re: [qooxdoo-devel] Window caption

2007-01-08 Thread Oliver Koch
Hello, with this.setCaption(x) it works perfectly well. I don't need to call qx.ui.core.Widget.flushGlobalQueues(). Thank you for your help! Greetz, Oliver Koch On Fri, Jan 05, 2007 at 05:41:43PM +0100, Andreas Ecker wrote: > Howdy! > > Alex Back wrote: > > Hello Oliver, > > > > use the meth

Re: [qooxdoo-devel] Window caption

2007-01-05 Thread Andreas Ecker
Howdy! Alex Back wrote: > Hello Oliver, > > use the methods "this.setCaption('x')" for setting and > "this.getCaption()" for getting the caption of your window. > > This should work. > > cheers, >Alex > > Oliver Koch wrote: >> Hello, >> >> i am trying to dynamically change the caption of

Re: [qooxdoo-devel] Window caption

2007-01-05 Thread Alex Back
Hello Oliver, use the methods "this.setCaption('x')" for setting and "this.getCaption()" for getting the caption of your window. This should work. cheers, Alex Oliver Koch wrote: > Hello, > > i am trying to dynamically change the caption of a window. How can I > accomplish that task? > >

[qooxdoo-devel] Window caption

2007-01-05 Thread Oliver Koch
Hello, i am trying to dynamically change the caption of a window. How can I accomplish that task? I am in an subclass of window and a call to this.set({caption: x}) fails with an error message and if I do alert(this.caption) I get undefined. Please, has anyone any suggestions? Greetz, O