1. added native wxMessageDialog implementation for GTK+2

2. minor formatting changes, so that the changelog has consistent look


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19396 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2003-02-28 23:46:59 +00:00
parent cec773c6fc
commit 7de24929eb

View File

@@ -39,31 +39,23 @@ All GUI ports:
- support wxListCtrl columns alignment for all platforms and not just MSW - support wxListCtrl columns alignment for all platforms and not just MSW
- added wxToolBar Add/InsertTool(tool) (Janusz Piwowarski) - added wxToolBar Add/InsertTool(tool) (Janusz Piwowarski)
- WXR resources can now be used in Unicode builds - WXR resources can now be used in Unicode builds
- changed to type-safe wxSizerItemList for wxSizer child items
- Changed to type-safe wxSizerItemList for wxSizer child items.
Deprecated: Deprecated:
wxSizer::Remove( wxWindow* ) wxSizer::Remove( wxWindow* )
- it does not function as Remove would usually be expected to - it does not function as Remove would usually be expected to
and destroy the window, use Detach instead. and destroy the window, use Detach instead
wxSizer::GetOption(), wxSizer::GetOption(),
wxSizer::SetOption() wxSizer::SetOption()
- wxSizer 'option' parameter was renamed 'proportion' to better - wxSizer 'option' parameter was renamed 'proportion' to better
reflect its action, use Get/SetProportion instead. reflect its action, use Get/SetProportion instead
wxKeyEvent::KeyCode() wxKeyEvent::KeyCode()
- use GetKeyCode instead. - use GetKeyCode instead
wxList:: Number, First, Last, Nth wxList:: Number, First, Last, Nth
- use typesafe GetCount, GetFirst, GetLast, Item instead. - use typesafe GetCount, GetFirst, GetLast, Item instead
wxNode:: Next, Previous, Data wxNode:: Next, Previous, Data
- use typesafe Get* instead. - use typesafe Get* instead
wxListBase::operator wxList&() wxListBase::operator wxList&()
- use typesafe lists instead. - use typesafe lists instead
Unix: Unix:
@@ -72,13 +64,14 @@ Unix:
wxGTK: wxGTK:
- added native wxMessageDialog implementation for GTK+2 build
- fixed wxMenu::Remove (John Skiff and Benjamin Williams) - fixed wxMenu::Remove (John Skiff and Benjamin Williams)
- made wxTextCtrl::EmulateKeyPress() work for Delete and Backspace - made wxTextCtrl::EmulateKeyPress() work for Delete and Backspace
- fixed wxTopLevelWindow::ShowFullScreen to work with kwin, IceWM and - fixed wxTopLevelWindow::ShowFullScreen to work with kwin, IceWM and
window managers that support _NET_WM_STATE_FULLSCREEN window managers that support _NET_WM_STATE_FULLSCREEN
- Added wxEVT_MENU_OPEN event generation. - added wxEVT_MENU_OPEN event generation
- Fixed bug in generic file selector causing incomplete file extensions to - fixed bug in generic file selector causing incomplete file extensions to
be appended to filenames with no extension. be appended to filenames with no extension
wxMSW: wxMSW: