Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on April 22, 2007, 09:11:56 pm

Title: The 22 April 2007 build will NOT be out.
Post by: killerbot on April 22, 2007, 09:11:56 pm
berlios down
Title: Re: The 22 April 2007 build will NOT be out.
Post by: stahta01 on April 23, 2007, 10:07:10 am
Link to check status of Berlios

http://monitor.berlios.de/berlios-status/index.php

Tim S
Title: Re: The 22 April 2007 build will NOT be out.
Post by: cybik on April 23, 2007, 01:54:22 pm
oh JOY...
Title: Re: The 22 April 2007 build will NOT be out.
Post by: raph on April 23, 2007, 02:01:31 pm
Why not put nightlies on sf.net?
Title: Re: The 22 April 2007 build will NOT be out.
Post by: byo on April 23, 2007, 02:43:43 pm
Why not put nightlies on sf.net?

SVN doesn't work too, so we can not commit source changes.

BYO
Title: Re: The 22 April 2007 build will NOT be out.
Post by: raph on April 23, 2007, 04:40:55 pm
Well, that explains it  :(

@byo
Could you add a property to every widget called "Code after widget creation" or something like that, where the user can input code which is placed right after widget creation?
There are some cases when this is useful.
e.g. when you have a wxMenuItem FileSave, you could enter the code
Code
FileSave->SetBitmap(wxArtProvider::GetBitmap(wxArt_FILE_SAVE));
The reason is, that setting a bitmap on WinXP doesn't seem to work after a wxMenuItem is appended to wxMenu.
This is just one case I found recently.

regards raph
Title: Re: The 22 April 2007 build will NOT be out.
Post by: byo on April 23, 2007, 08:09:00 pm

Could you add a property to every widget called "Code after widget creation" or something like that, where the user can input code which is placed right after widget creation?
There are some cases when this is useful.
e.g. when you have a wxMenuItem FileSave, you could enter the code
Code
FileSave->SetBitmap(wxArtProvider::GetBitmap(wxArt_FILE_SAVE));
The reason is, that setting a bitmap on WinXP doesn't seem to work after a wxMenuItem is appended to wxMenu.
This is just one case I found recently.

regards raph

Sounds interesting :) Of course for this particular case it would be better to add icon into wxMenu items (in development version, wxSmith may have many gaps like this one, but they should be removed before stable version is released). Modifying wxMenu would be much harder than the solution you provided :) And since it may have more advnatages than tuning wxMenu only, It will be added soon (maybe even today ;) ).

Regards

  BYO