News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

The 22 April 2007 build will NOT be out.

Started by killerbot, April 22, 2007, 09:11:56 PM

Previous topic - Next topic

killerbot


stahta01

C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]


raph


byo

Quote from: raph on April 23, 2007, 02:01:31 PM
Why not put nightlies on sf.net?

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

BYO

raph

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
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

byo

Quote from: raph on April 23, 2007, 04:40:55 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
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