Author Topic: wxWidgets-2.8.2-RC1 is Released  (Read 4755 times)

Offline Biplab

  • Developer
  • Lives here!
  • *****
  • Posts: 1874
    • Biplab's Blog
wxWidgets-2.8.2-RC1 is Released
« on: February 12, 2007, 06:37:09 pm »
Hi all,

Just found that the wxWidgets-2.8.2-RC1 has been released. All the versions are available from the following link.

http://biolpc22.york.ac.uk/pub/2.8.2-rc1/

I'm quoting a part of the changelog.
Quote
2.8.2
All:

- Added wxSizerFlags::Shaped(), FixedMinSize(), Top() and Bottom() methods.
- Added wxCSConv::IsOk() (Manuel Martin).
- Added wxDateTime::GetDateOnly().
- Made wxTextFile work with unseekable files again (David Hart).
- Added wxCONFIG_USE_SUBDIR flag to wxFileConfig (Giuseppe Bilotta).
- Added wxSearchCtrl::[Get|Set]DescriptiveText.
- Added wxToolBar::SetTool[Normal|Disabled]Bitmap for wxMSW, wxGTK and wxMac.
- Added wxRICHTEXT_SETSTYLE_REMOVE flag for removing styles, and
  wxRICHTEXT_HITTEST_OUTSIDE for more accurate hit-testing.
- Fixed a crash when writing wxRichTextCtrl styles.

wxMSW

- Fix lack of spin control update event when control lost focus.
- Corrected drawing of bitmaps for disabled menu items.

I've highlighted two most interesting changes. May be it can fix the regression with Toolbar Image. Already fixed in C::B's wx DLL ;)

Regards,

Biplab
« Last Edit: February 12, 2007, 07:29:07 pm by Biplab »
Be a part of the solution, not a part of the problem.

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7591
    • My Best Post
Re: wxWidgets-2.8.2-RC1 is Released
« Reply #1 on: February 12, 2007, 07:20:29 pm »
Hi all,

Just found that the wxWidgets-2.8.2-RC1 has been released. All the versions are available from the following link.

http://biolpc22.york.ac.uk/pub/2.8.2-rc1/

I'm quoting a part of the changelog.
Quote
2.8.2
- Corrected drawing of bitmaps for disabled menu items.
I've highlighted two most interesting changes. May be it can fix the regression with Toolbar Image. :)
Regards,
Biplab

This is already in our custom 2.6 DLL, I back-ported the change(s) three weeks or so ago.
Tim S
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline Biplab

  • Developer
  • Lives here!
  • *****
  • Posts: 1874
    • Biplab's Blog
Re: wxWidgets-2.8.2-RC1 is Released
« Reply #2 on: February 12, 2007, 07:26:07 pm »
This is already in our custom 2.6 DLL, I back-ported the change(s) three weeks or so ago.
Tim S

Thanks for pointing out. I'm already using it since it was released (Means your modified dll). :D
Be a part of the solution, not a part of the problem.

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7591
    • My Best Post
Re: wxWidgets-2.8.2-RC1 is Released
« Reply #3 on: February 12, 2007, 09:25:59 pm »
FYI:

Code added to msw/menu.cpp in last week; it needs added to my 2.6 back-port once I test it.
I have no idea if C::B uses this feature. Note, this is in 2.8 Branch code no idea if it is in 2.8.2.
Tim S
Code
        // update the check item when it's clicked
        wxMenuItem * const item = FindItem(id);
        if ( item && item->IsCheckable() )
            item->Toggle();
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org