]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/tchanges.tex
Added parent window parameter to wxHelpController constructor
[wxWidgets.git] / docs / latex / wx / tchanges.tex
CommitLineData
7b9472b9
RN
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: tchanges.tex
3%% Purpose: Changes & Explanation of changes
4%% Author: Ryan Norton <wxprojects@comcast.net> (special thanks to ABX)
5%% Modified by: All wxWidgets Developers
6%% Created: 11/18/2004
7%% RCS-ID: $Id$
41923715 8%% Copyright: (c) wxWidgets team
7b9472b9
RN
9%% License: wxWindows license
10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11%%
12%% NOTE: Explanations of changes are no longer put in changes.txt -
13%% instead they are put here
14%%
15%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
499e521b
RN
16\section{Changes since 2.4.x}\label{changes}
17
0e2e3ffd 18Listed here are the deprecated and incompatible changes made to wxWidgets.
499e521b
RN
19
20For other changes (such as additional features, bug fixes, etc.) see the changes.txt file located in the docs directory of your wxWidgets directory.
21
b5f27940 22\subsection{Incompatible changes since 2.4.x}\label{incompatiblesince24}
68d411dc 23
0e2e3ffd 24\wxheading{wxEvent and its derivatives losing public variable members}
05994861 25
af44de02 26\helpref{wxEvent}{wxevent} and its \helpref{derivatives}{eventhandlingoverview} do not have their public variable members public any more.
0e2e3ffd 27Please use Get/Set accessors.
05994861 28
0e2e3ffd 29\wxheading{New window repainting behaviour}
499e521b 30
0e2e3ffd 31Windows are no longer fully repainted when resized; use the new style \windowstyle{wxFULL\_REPAINT\_ON\_RESIZE} to force this (\windowstyle{wxNO\_FULL\_REPAINT\_ON\_RESIZE} still exists but doesn't do anything any more, this behaviour is default now).
68d411dc 32
0e2e3ffd 33\wxheading{Window class member changes}
499e521b 34
68d411dc
WS
35wxWindow::m\_font and m\_backgroundColour/m\_foregroundColour are no longer always set, use \helpref{GetFont()}{wxwindowgetfont}, \helpref{GetBack}{wxwindowgetbackgroundcolour}/\helpref{ForegroundColour()}{wxwindowgetforegroundcolour} to access them, and they will be dynamically determined if necessary.
36
0e2e3ffd 37\wxheading{Sizers Internal Overhaul}
499e521b 38
af44de02 39\helpref{The sizers}{sizeroverview} have had some fundamental internal changes in the 2.5.2 and 2.5.3 releases intended to make them do more of the "Right Thing" but also be as backwards compatible as possible. First a bit about how things used to work:
499e521b 40
68d411dc 41\begin{itemize}\itemsep=0pt
7b9472b9
RN
42\item The size that a window had when \helpref{Add()}{wxsizeradd}ed to the sizer was assumed to be its minimal size, and that size would always be used by default when calculating layout size and positions, and the sizer itself would keep track of that minimal size.
43\item If the window item was \helpref{Add()}{wxsizeradd}ed with the \windowstyle{wxADJUST\_MINSIZE} flag then when layout was calculated the item's \helpref{GetBestSize}{wxwindowgetbestsize} would be used to reset the minimal size that the sizer used.
68d411dc 44\end{itemize}
499e521b 45
af44de02 46The main thrust of the new sizer changes was to make behaviour like \windowstyle{wxADJUST\_MINSIZE} be the default, and also to push the tracking of the minimal size to the window itself (since it knows its own needs) instead of having the sizer take care of it. Consequently these changes were made:
499e521b 47
68d411dc 48\begin{itemize}\itemsep=0pt
7b9472b9 49\item The \windowstyle{wxFIXED\_MINSIZE} flag was added to allow for the old behaviour. When this flag is used the size a window has when \helpref{Add()}{wxsizeradd}ed to the sizer will be treated as its minimal size and it will not be readjusted on each layout.
af44de02
JS
50\item The minimum size stored in wxWindow and settable with \helpref{SetSizeHints}{wxwindowsetsizehints} or \helpref{SetMinSize}{wxwindowsetminsize} will by default be used by the sizer (if it was set) as the minimal size of the sizer item. If the minsize was not set (or was only partially set) then the window's best size is fetched and it is used instead of (or blended with) the minsize. \helpref{wxWindow::GetBestFittingSize}{wxwindowgetbestfittingsize} was added to facilitate getting the size to be used by the sizers.
51\item The best size of a window is cached so it doesn't need to be recalculated on every layout. \helpref{wxWindow::InvalidateBestSize}{wxwindowinvalidatebestsize} was added and should be called (usually just internally in control methods) whenever something is done that would make the best size change.
7b9472b9 52\item All \helpref{wxControls}{wxcontrol} were changed to set the minsize to what is passed to the constructor or their Create method, and also to set the real size of the control to the blending of the minsize and bestsize. \helpref{wxWindow::SetBestFittingSize}{wxwindowsetbestfittingsize} was added to help with this, although most controls don't need to call it directly because it is called indirectly via the \helpref{SetInitialBestSize}{wxwindowsetinitialbestsize} called in the base classes.
68d411dc 53\end{itemize}
499e521b 54
7b9472b9 55At this time, the only situation known not to work the same as before is the following:
af44de02 56
68d411dc
WS
57\begin{verbatim}
58win = new SomeWidget(parent);
59win->SetSize(SomeNonDefaultSize);
60sizer->Add(win);
61\end{verbatim}
499e521b 62
7b9472b9 63In this case the old code would have used the new size as the minimum, but now the sizer will use the default size as the minimum rather than the size set later. It is an easy fix though, just move the specification of the size to the constructor (assuming that SomeWidget will set its minsize there like the rest of the controls do) or call \helpref{SetMinSize}{wxwindowsetminsize} instead of \helpref{SetSize}{wxwindowsetsize}.
499e521b 64
af44de02 65In order to fit well with this new scheme of things, all \helpref{wxControls}{wxcontrol} or custom controls should do the following things. (Depending on how they are used you may also want to do the same thing for non-control custom windows.)
499e521b 66
68d411dc 67\begin{itemize}\itemsep=0pt
7b9472b9
RN
68\item Either override or inherit a meaningful \helpref{DoGetBestSize}{wxwindowdogetbestsize} method that calculates whatever size is "best" for the control. Once that size is calculated then there should normally be a call to \helpref{CacheBestSize}{wxwindowcachebestsize} to save it for later use, unless for some reason you want the best size to be recalculated on every layout.
69\item Any method that changes the attributes of the control such that the best size will change should call \helpref{InvalidateBestSize}{wxwindowinvalidatebestsize} so it will be recalculated the next time it is needed.
70\item The control's constructor and/or Create method should ensure that the minsize is set to the size passed in, and that the control is sized to a blending of the min size and best size. This can be done by calling \helpref{SetBestFittingSize}{wxwindowsetbestfittingsize}.
68d411dc
WS
71\end{itemize}
72
0e2e3ffd 73\wxheading{Massive wxURL Rewrite}
499e521b 74
c65650d7 75\helpref{wxURL}{wxurl} has undergone some radical changes.
499e521b 76
68d411dc 77\begin{itemize}\itemsep=0pt
7b9472b9
RN
78\item Many accessors of \helpref{wxURL}{wxurl} - GetHostName, GetProtocolName, and GetPath, have been replaced by its parent's (\helpref{wxURI}{wxuri}) counterparts - \helpref{GetServer}{wxurigetserver}, \helpref{GetScheme}{wxurigetscheme}, and \helpref{GetPath}{wxurigetpath}, respectively.
79\item ConvertToValidURI has been replaced by \helpref{wxURI}{wxuri}. Do not use ConvertToValidURI for future applications.
c65650d7 80\item ConvertFromURI has been replaced by \helpref{wxURI::Unescape}{wxuriunescape}.
68d411dc
WS
81\end{itemize}
82
5125ea1f 83
7b9472b9 84\wxheading{Minor incompatible changes since 2.4.x}
af44de02 85
7b9472b9 86\begin{itemize}\itemsep=0pt
af44de02 87\item no initialization/cleanup can be done in wxApp's constructor or destructor because they are now called much earlier/later than before; please move any exiting code from there to \helpref{wxApp::OnInit()}{wxapponinit}/\helpref{OnExit()}{wxapponexit}
7b9472b9
RN
88\item also, \helpref{OnExit()}{wxapponexit} is not called if \helpref{OnInit()}{wxapponinit} fails
89\item finally the program exit code is \helpref{OnRun()}{wxapponrun} return value, not \helpref{OnExit()}{wxapponexit} one
90\item \texttt{wxTheApp} can't be assigned to any longer, use \helpref{wxApp::SetInstance()}{wxappsetinstance} instead
91\item \helpref{wxFileType::GetIcon()}{wxfiletypegeticon} returns \helpref{wxIconLocation}{wxiconlocation}, not \helpref{wxIcon}{wxicon}
92\item wxColourDatabase is not a \helpref{wxList}{wxlist} any more, use AddColour to add new colours
93\item wxWindow::Clear() is now called ClearBackground()
94\item pointer returned by wxFont::GetNativeFontInfo() must not be deleted now
95\item wxMouseEvent::Moving() doesn't return true if mouse is being dragged any more
96\item (most) controls now inherit parents colours by default, override ShouldInheritColours() to return false if you don't want this to happen
97\item \helpref{wxApp::SendIdleEvents()}{wxappsendidleevents} now takes 2 arguments
98\item wxTabView::GetLayers() changed return type from \helpref{wxList\&}{wxlist} to wxTabLayerList\& (when WXWIN\_COMPATIBILITY\_2\_4 == 0)
99\item wxID\_SEPARATOR (id used for the menu separators) value changed from -1 to -2
100\item wxGetNumberFromUser() is now in separate wx/numdlg.h, not wx/textdlg.h
101\item wxChoice and wxCombobox now handle their size in the same way as in all the other ports under MSW, new code is actually correct but different from weird stuff they were doing before so the behaviour of your programs might change
102\item \helpref{wxTaskBarIcon}{wxtaskbaricon} objects must now be destroyed before the application can exit. Previously, the application terminated if there were no top level windows; now it terminates if there are no top level windows or taskbar icons left.
103\item \helpref{wxZlibInputStream}{wxzlibinputstream} is not by default compatible with the output of the 2.4.x version of \helpref{wxZlibOutputStream}{wxzliboutputstream}. However, there is a compatibility mode, switched on by passing wxZLIB\_24COMPATIBLE to the constructor.
104\item when WXWIN\_COMPATIBILITY\_2\_4 == 0 \helpref{wxHashTable}{wxhashtable} uses a new implementation not using \helpref{wxList}{wxlist} keyed interface (the same used when wxUSE\_STL == 1), the only incompatibility being that Next() returns a wxHashTable::Node* instead of a wxNode*.
105\item non-const wxDC methods GetBackground(), GetBrush(), GetFont() and GetPen() as well as wxWindow methods GetFont() and GetCursor() don't exist any more, please fix your code -- it never worked correctly anyhow if you modified the objects returned by these methods so you should simply switch to using const methods.
106\item \helpref{wxWindow::GetFont()}{wxwindowgetfont} now returns \helpref{wxFont}{wxfont} object instead of reference
107\item EVT\_XXX macros are now type-safe; code that uses wrong type for event handler's argument will no longer compile.
108\item Identical functionality of wxFileDialog::ParseWildcard, wxGenericDirCtrl::ParseFilter, Motif and MSW parsing native dialogs is now accessible in ::wxParseCommonDialogsFilter
109\item wxNotebookSizer and wxBookCtrlSizer are now deprecated -- they are no longer needed, you can treat wxNotebook as any other control and put it directly into the sizer that was wxNotebookSizer's parent sizer in old code.
110\item \helpref{wxFile}{wxfile} methods now return either wxFileOffset or wxFileSize\_t which may be a 64 bit integer type, even on 32 bit platforms, instead of off\_t and so the return value of \helpref{wxFile::Length()}{wxfilelength}, for example, shouldn't be assigned to off\_t variable any more (the compiler might warn you about this)
111\item wxListItem::m\_data is now of type wxUIntPtr, not long, for compatibility with 64 bit systems
112\item wxSizer::Add/Insert returns pointer to wxSizerItem just added so conditions writeen with if(Add(..)==true) will not work. Use if(Add(..)) instead.
113\item New \helpref{wxBrush::IsHatch()}{wxbrushishatch} checking for brush type replaces IS\_HATCH macro.
114\item wxSystemSettings::GetSystem*() members deprecated and replaced with wxSystemSettings::Get*().
115\end{itemize}
68d411dc 116
b5f27940 117\subsection{Deprecated changes since 2.4.x}\label{deprecatedsince24}
af44de02 118
7b9472b9
RN
119\begin{itemize}\itemsep=0pt
120\item wxURL::GetInputStream() and similar functionality has been deprecated in favor of other ways of connecting, such as though sockets or wxFileSystem.
121\item wxDocManager::GetNoHistoryFiles() renamed to \helpref{GetHistoryFilesCount()}{wxdocmanagergethistoryfilescount}
122\item wxSizer::Remove(wxWindow *), use Detach() instead (it is more clear)
123\item wxSizer::Set/GetOption(): use Set/GetProportion() instead
124\item wxKeyEvent::KeyCode(): use GetKeyCode instead
125\item wxList::Number, First, Last, Nth: use GetCount, GetFirst/Last, Item instead
126\item wxNode::Next, Previous, Data: use GetNext, GetPrevious, GetData instead
127\item wxListBase::operator wxList\&(): use typesafe lists instead
128\item wxTheFontMapper: use \helpref{wxFontMapper::Get()}{wxfontmapperget} instead
129\item wxStringHashTable: use wxHashMap instead
130\item wxHashTableLong: use wxHashMap instead
131\item wxArrayString::GetStringArray: use wxCArrayString or alternative wxWidgets methods taking wxArrayString
132\item wxArrayString::Remove(index, count): use RemoveAt instead
133\item wxTreeItemId conversion to long is deprecated and shouldn't be used
134\item wxTreeCtrl::GetFirst/NextChild() 2nd argument now has type wxTreeItemIdValue and not long, please change declarations of "cookie"s in your code accordingly -- otherwise your code won't work on 64 bit platforms
135\item (MSW only) wxWindow::GetUseCtl3D(), GetTransparentBackground() and SetTransparent() as well as wxNO\_3D and wxUSER\_COLOURS styles
136\item \helpref{wxList}{wxlist} keyed interface: use \helpref{wxHashMap}{wxhashmap} instead
137\item wxColourDatabase::FindColour(): use \helpref{Find()}{wxcolourdatabasefind} instead (NOTE: it has a different return type)
138\item wxHashTable::Next: use wxHashTable::Node* or wxHashTable::compatibility\_iterator to store the return value
139\item wxWave class; use wxSound instead
140\item The wxHIDE\_READONLY flag for wxFileDialog was not implemented and has now been removed
141\item wxTaskBarIcon::OnXXX() virtual methods: use events instead
142\item obsolete and not used wxUSE\_GENERIC\_DIALOGS\_IN\_MSW has been removed
143\item wxDbTable::wxDbTable with wxChar* deprecated, same with wxString\& instead.
144\end{itemize}
af44de02 145