1. Win4Eu Customization
- Posted by cklester <cklester at yahoo.com> Dec 07, 2004
- 451 views
- Last edited Dec 08, 2004
Tommy, have you considered making Win4Eu skinnable? It would be nice if we could say set(Skin, "Silver" ) or set(Skin, "Default" ) or set(Skin, "c:\\win4eu\\myskins\\dominatrix.skn") or set(Skin, "http://www.win4eu.com/skins/macosx.skn") -=ck "Programming in a state of EUPHORIA." http://www.cklester.com/euphoria/
2. Re: Win4Eu Customization
- Posted by Tommy Carlier <tommy.carlier at telenet.be> Dec 07, 2004
- 455 views
- Last edited Dec 08, 2004
cklester wrote: > Tommy, have you considered making Win4Eu skinnable? It would be nice if we > could say > > set(Skin, "Silver" ) > > or > > set(Skin, "Default" ) > > or > > set(Skin, "c:\\win4eu\\myskins\\dominatrix.skn") > > or > > set(Skin, "<a > href="http://www.win4eu.com/skins/macosx.skn">http://www.win4eu.com/skins/macosx.skn</a>") Sure I have. I've built in support for a skinning system, but I'll implement the functionality later. You'll be able to apply a skin to the whole application, to individual windows and even to 1 particular control. Example:}}} <eucode> constant mySkin = create(Skin, "myskin.???") -- load a skin set(Application, "Skin", mySkin) -- apply the skin to all the windows of the app set(myWin, "Skin", mySkin) -- apply the skin to 1 window set(myButton, "Skin", mySkin) -- apply the skin to 1 control </eucode> {{{ The functionality of the skinning system is not yet written, but I've built in support for skinning in the core libraries. I'll start writing the skinning system when the basic necessary functionality is ready. Skinning is low-priority for the moment. -- The Internet combines the excitement of typing with the reliability of anonymous hearsay. tommy online: http://users.telenet.be/tommycarlier tommy.blog: http://tommycarlier.blogspot.com
3. Re: Win4Eu Customization
- Posted by cklester <cklester at yahoo.com> Dec 07, 2004
- 460 views
- Last edited Dec 08, 2004
Tommy Carlier wrote: > cklester wrote: > > Tommy, have you considered making Win4Eu skinnable?> > Sure I have. I've built in support for a skinning system, but I'll implement > the functionality later. You'll be able to apply a skin to the whole > application, > to individual windows and even to 1 particular control. Looks great! Can't wait! -=ck "Programming in a state of EUPHORIA." http://www.cklester.com/euphoria/