]>
git.saurik.com Git - wxWidgets.git/log
Vadim Zeitlin [Tue, 21 Mar 2006 14:17:49 +0000 (14:17 +0000)]
don't evaluate assert expression unless the condition is false (patch
1450705 )
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38249
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Tue, 21 Mar 2006 14:16:34 +0000 (14:16 +0000)]
added semicolons after wxCHECK()s (part of patch
1450705 )
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38248
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Tue, 21 Mar 2006 14:05:11 +0000 (14:05 +0000)]
Made wxList::compatibility_iterator a class in wxUSE_STL == 0 case too instead
of a simple typedef to "Node *" to be able to initialize it with NULL in ctor
which makes the behaviour of the code with and without wxUSE_STL the same.
The price to pay is that the code like
wxList:compatibility_iterator ci;
ci = cond ? list->GetFirst() : wxList::compatibility_iterator();
doesn't compile any more and has to be replaced with (more clear anyhow)
wxList:compatibility_iterator ci;
if ( cond )
ci = list->GetFirst();
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38247
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Stefan Csomor [Tue, 21 Mar 2006 13:53:47 +0000 (13:53 +0000)]
gcc 4.0 for all
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38246
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Tue, 21 Mar 2006 13:33:08 +0000 (13:33 +0000)]
can't pass objects through ... (please don't ever ignore this gcc warning)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38245
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Tue, 21 Mar 2006 13:31:35 +0000 (13:31 +0000)]
added wxGtkString::c_str()
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38244
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Tue, 21 Mar 2006 13:17:31 +0000 (13:17 +0000)]
return NULL (and not invalid) iterator from compatibility_iterator::GetPrevious() when we're at the start of the list (see patch
1445506 )
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38243
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Tue, 21 Mar 2006 13:14:19 +0000 (13:14 +0000)]
added assert to verify that operands are initialized in compatibility_iterator::operator==()
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38242
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Tue, 21 Mar 2006 13:10:20 +0000 (13:10 +0000)]
better fix for infinite loop in HandleOnNavigationKey() when wxUSE_STL==1 and start_node is NULL
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38241
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Tue, 21 Mar 2006 13:00:19 +0000 (13:00 +0000)]
reuse operator bool() check in compatibility_iterator::IndexOf() instead of rewriting it
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38240
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Tue, 21 Mar 2006 12:53:28 +0000 (12:53 +0000)]
fix an infinite loop in HandleOnNavigationKey() when wxUSE_STL==1 and start_node is NULL
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38239
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robert Roebling [Tue, 21 Mar 2006 12:30:06 +0000 (12:30 +0000)]
Added windowing and scrolling logic to generic
implementation of wxDataViewCtrl (it runs now).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38238
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Julian Smart [Tue, 21 Mar 2006 11:30:23 +0000 (11:30 +0000)]
Fix accelerstors with down and left
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38237
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Julian Smart [Tue, 21 Mar 2006 11:25:26 +0000 (11:25 +0000)]
Fixed a crash when deleting the last timer
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38235
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Mart Raudsepp [Tue, 21 Mar 2006 09:24:47 +0000 (09:24 +0000)]
Use wxGtkString here too
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38233
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Václav Slavík [Mon, 20 Mar 2006 23:25:48 +0000 (23:25 +0000)]
removed Julian's hack that is no longer needed after wxBitmap stubs were added even for DIB-less build
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38232
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Mon, 20 Mar 2006 23:24:47 +0000 (23:24 +0000)]
explain why do you need wxUSE_WXDIB
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38231
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Mon, 20 Mar 2006 23:23:00 +0000 (23:23 +0000)]
provide stubs for conversion to/from image functions even when wxUSE_WXDIB==0, this allows to not test for it in other places
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38230
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Mon, 20 Mar 2006 22:57:07 +0000 (22:57 +0000)]
removed hard tabs
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38229
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Václav Slavík [Mon, 20 Mar 2006 22:26:39 +0000 (22:26 +0000)]
fixed GetBitmap() to respect the "param" argument if !wxUSE_FILESYSTEM
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38228
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Mon, 20 Mar 2006 18:26:35 +0000 (18:26 +0000)]
reSWIGged
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38227
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Mon, 20 Mar 2006 18:02:37 +0000 (18:02 +0000)]
Editors, Renderers and Attrs need to have a destructor so SWIG won't
complain about it, but since they are protected in C++ we need to give
them a dummy one. In the future these shoud be changed to use
%ref/%unref and let SWIG manage the refcount for us.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38226
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Mon, 20 Mar 2006 17:56:42 +0000 (17:56 +0000)]
Use the static method instead of the global alias
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38225
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Mon, 20 Mar 2006 17:09:03 +0000 (17:09 +0000)]
initialize wxZipFSHandler even when wxUSE_GIF=0
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38224
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robert Roebling [Mon, 20 Mar 2006 16:44:46 +0000 (16:44 +0000)]
Further compilation fixes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38223
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robert Roebling [Mon, 20 Mar 2006 16:41:41 +0000 (16:41 +0000)]
Compilation fixes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38222
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robert Roebling [Mon, 20 Mar 2006 16:37:24 +0000 (16:37 +0000)]
Added (yet unfunctional) skeleton files fir
generic implementation of wxDataViewCtrl.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38221
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Mon, 20 Mar 2006 12:17:03 +0000 (12:17 +0000)]
fixed Clear() for GTK+ 2.4+
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38220
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Sun, 19 Mar 2006 13:43:58 +0000 (13:43 +0000)]
corrected cross-reference to non existent note
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38218
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Stefan Csomor [Sun, 19 Mar 2006 10:55:09 +0000 (10:55 +0000)]
rewire char events in case there is no focusable control on a tlw
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38217
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Sun, 19 Mar 2006 02:22:08 +0000 (02:22 +0000)]
A bit of cleanup
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38216
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Sun, 19 Mar 2006 02:17:43 +0000 (02:17 +0000)]
docstrings
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38215
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Sun, 19 Mar 2006 02:16:08 +0000 (02:16 +0000)]
Add wxHelpProvider destructor
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38214
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Sat, 18 Mar 2006 22:17:39 +0000 (22:17 +0000)]
Demonstrate setting metal appearance for wxMac
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38213
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Sat, 18 Mar 2006 17:14:55 +0000 (17:14 +0000)]
do not assign uniChar to wxKeyEvent::m_keyCode for EVT_CHAR events; this breaks any code handling things like arrow keys as it gets absolutely useless kDownArrowCharCode instead of WXK_DOWN for example
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38211
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Sat, 18 Mar 2006 17:04:47 +0000 (17:04 +0000)]
removed redundant declaration (no real changes)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38210
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Sat, 18 Mar 2006 16:53:42 +0000 (16:53 +0000)]
fixed crash introduced in rev. 187 for all non-MSW platforms
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38208
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Mart Raudsepp [Sat, 18 Mar 2006 13:32:23 +0000 (13:32 +0000)]
Update copyright years. Is manual2e.tex even used anymore? Much information in it is out of date.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38205
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Mart Raudsepp [Sat, 18 Mar 2006 12:59:09 +0000 (12:59 +0000)]
Test commit
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38203
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Mart Raudsepp [Sat, 18 Mar 2006 12:25:56 +0000 (12:25 +0000)]
Testing CVSROOT/loginfo changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38202
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Mart Raudsepp [Sat, 18 Mar 2006 12:19:16 +0000 (12:19 +0000)]
Test wxPython CIA announcement
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38200
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Sat, 18 Mar 2006 01:03:45 +0000 (01:03 +0000)]
New source dirs that need installed
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38192
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Sat, 18 Mar 2006 01:03:08 +0000 (01:03 +0000)]
SWIG 1.3.29 updates
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38191
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Fri, 17 Mar 2006 22:50:05 +0000 (22:50 +0000)]
Add DoGetBestSize
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38188
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Fri, 17 Mar 2006 22:45:37 +0000 (22:45 +0000)]
Add scrollbars when the plot is zoomed in, and also the ability to
grab a zoomed plot and move it around with a mouse drag.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38186
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Stefan Csomor [Fri, 17 Mar 2006 20:51:38 +0000 (20:51 +0000)]
disabling close box
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38185
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
David Surovell [Fri, 17 Mar 2006 19:11:32 +0000 (19:11 +0000)]
cleanup - added some error checking, reformatting
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38184
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Stefan Csomor [Fri, 17 Mar 2006 18:29:14 +0000 (18:29 +0000)]
intel pict fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38183
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Stefan Csomor [Fri, 17 Mar 2006 17:12:40 +0000 (17:12 +0000)]
fixing a scope error introduced in 1.41
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38180
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Stefan Csomor [Fri, 17 Mar 2006 14:26:59 +0000 (14:26 +0000)]
fix for sf bug
1448153 : Widgets sample hangs on Japanese radio label
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38174
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robert Roebling [Fri, 17 Mar 2006 14:13:02 +0000 (14:13 +0000)]
Rearrange code to make adding wxMimeTypesManagerFactory
at runtim possible.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38172
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robert Roebling [Fri, 17 Mar 2006 14:08:58 +0000 (14:08 +0000)]
Added files for GnomeVFS backend (currently useful
for strictly nothing).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38171
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Fri, 17 Mar 2006 13:49:47 +0000 (13:49 +0000)]
don't use toupper() with non-ASCII key codes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38170
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Stefan Csomor [Fri, 17 Mar 2006 10:39:56 +0000 (10:39 +0000)]
intel pict fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38168
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
David Surovell [Fri, 17 Mar 2006 04:09:10 +0000 (04:09 +0000)]
cleanup - fixed a warning, some typos, and made minor reformatting changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38165
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Fri, 17 Mar 2006 02:38:58 +0000 (02:38 +0000)]
use correct string in wxEVT_COMMAND_COMBOBOX_SELECTED events
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38164
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Fri, 17 Mar 2006 01:30:21 +0000 (01:30 +0000)]
The dummy wxDisplay class is no longer needed as there is now always a
wxDisplay class available, but it has limiited functionality if
wxUSE_DISPLAY is zero.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38163
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Fri, 17 Mar 2006 00:54:51 +0000 (00:54 +0000)]
updated comment
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38162
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Fri, 17 Mar 2006 00:50:33 +0000 (00:50 +0000)]
Add GetClientArea
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38161
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Fri, 17 Mar 2006 00:15:04 +0000 (00:15 +0000)]
need wxRect definition and not just declaration here (fixes wxMotif build without PCH)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38160
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Fri, 17 Mar 2006 00:12:17 +0000 (00:12 +0000)]
wxUSE_DISPLAY should be 0 for VMS port as Xinerama is apparently not available there
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38159
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Fri, 17 Mar 2006 00:09:41 +0000 (00:09 +0000)]
fixed incorrect XtVaXXX() function call (thanks to g++ 4 for detecting this!)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38158
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Fri, 17 Mar 2006 00:04:13 +0000 (00:04 +0000)]
don't put the window off screen when centering it (if possible); also don't centre on the parent if the parent is entirely off screen (should fix centering on the MDI parent frame under Mac)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38157
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Thu, 16 Mar 2006 23:41:43 +0000 (23:41 +0000)]
reSWIGged
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38156
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Thu, 16 Mar 2006 23:24:27 +0000 (23:24 +0000)]
reSWIGged
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38155
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Thu, 16 Mar 2006 23:22:10 +0000 (23:22 +0000)]
Docstring typo
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38154
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Thu, 16 Mar 2006 22:59:03 +0000 (22:59 +0000)]
Somehow (probably in a merge) all the CVS Id: tags got deactivated...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38152
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Julian Smart [Thu, 16 Mar 2006 18:59:12 +0000 (18:59 +0000)]
wxMotif/ANSI can't cope with UTF-8
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38151
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Thu, 16 Mar 2006 16:10:50 +0000 (16:10 +0000)]
documented option enabling DirectDraw implementation of wxDisplay under MSW
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38148
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Thu, 16 Mar 2006 16:07:24 +0000 (16:07 +0000)]
added wxDisplay::GetClientArea() (currently implemented for single display and MSW implementations only)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38147
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Thu, 16 Mar 2006 15:41:09 +0000 (15:41 +0000)]
Albanian translation added (Besnik Bleta)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38146
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Thu, 16 Mar 2006 15:28:22 +0000 (15:28 +0000)]
fixed build after last commit
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38145
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Włodzimierz Skiba [Thu, 16 Mar 2006 13:06:39 +0000 (13:06 +0000)]
Forward port from 2.6 branch to avoid wxSTD usage crashes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38143
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Włodzimierz Skiba [Thu, 16 Mar 2006 11:06:10 +0000 (11:06 +0000)]
wxDisplay build fix for missing Direct Draw.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38142
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Julian Smart [Thu, 16 Mar 2006 11:03:26 +0000 (11:03 +0000)]
Mobile 5 Smartphone fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38141
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Włodzimierz Skiba [Thu, 16 Mar 2006 10:45:11 +0000 (10:45 +0000)]
Missing wxDisplay identifiers for DMC build.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38140
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Włodzimierz Skiba [Thu, 16 Mar 2006 08:52:36 +0000 (08:52 +0000)]
forward port from 2.6 - eVC3 fix.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38138
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Włodzimierz Skiba [Thu, 16 Mar 2006 08:19:57 +0000 (08:19 +0000)]
Rebuild build files so all night/Tinderbox/Coverity builds could sleep well.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38137
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Włodzimierz Skiba [Thu, 16 Mar 2006 08:06:27 +0000 (08:06 +0000)]
Rebuild build files so all night/Tinderbox/Coverity builds could sleep well.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38136
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Stefan Csomor [Thu, 16 Mar 2006 07:10:24 +0000 (07:10 +0000)]
universal
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38135
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
David Surovell [Thu, 16 Mar 2006 06:12:43 +0000 (06:12 +0000)]
added missing ctor implementation
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38134
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Thu, 16 Mar 2006 04:35:22 +0000 (04:35 +0000)]
initialize base class using its ctor
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38133
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Thu, 16 Mar 2006 04:32:42 +0000 (04:32 +0000)]
added wxDisplayFactoryX11 ctor body
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38132
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Thu, 16 Mar 2006 04:32:02 +0000 (04:32 +0000)]
linking fixes after last checkin
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38131
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Thu, 16 Mar 2006 04:30:53 +0000 (04:30 +0000)]
compilation fixes after last checkin
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38130
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Thu, 16 Mar 2006 04:24:29 +0000 (04:24 +0000)]
compile some functionality even when wxUSE_DISPLAY == 0
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38129
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Thu, 16 Mar 2006 04:24:04 +0000 (04:24 +0000)]
removed obsolete display.h files; added display_impl.h
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38128
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Thu, 16 Mar 2006 04:23:07 +0000 (04:23 +0000)]
wxDisplay cleanup/rewrite:
- wxDisplay is now a concrete class and uses a pImpl-based design
- got rid of four duplicate but subtly different versions of trivial
single display-only wxDisplay implementation (but 2 versions of Mac
Classic and Mac CoreGraphics implementations each still remain...)
- assorted code simplifications and memory leaks fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38127
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Thu, 16 Mar 2006 02:30:42 +0000 (02:30 +0000)]
Enable OnDrawSeparator and OnDrawBackground to be overridable in wx.HtmlListBox
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38126
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Wed, 15 Mar 2006 23:27:11 +0000 (23:27 +0000)]
Added some overview text
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38122
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Wed, 15 Mar 2006 23:22:53 +0000 (23:22 +0000)]
Added CheckListCtrlMixin from Bruce Who
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38121
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Wed, 15 Mar 2006 23:17:54 +0000 (23:17 +0000)]
Updated the analogclock.py module to the new analogclock package from
E. A. Tacao.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38120
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Wed, 15 Mar 2006 22:47:26 +0000 (22:47 +0000)]
updated html-ized version of the stc.h file
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38118
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Wed, 15 Mar 2006 22:46:55 +0000 (22:46 +0000)]
Added wx.Window.GetScreenPosition and GetScreenRect
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38117
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Wed, 15 Mar 2006 22:45:10 +0000 (22:45 +0000)]
some int --> size_t changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38116
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Robin Dunn [Wed, 15 Mar 2006 22:35:11 +0000 (22:35 +0000)]
tweaked font sizes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38115
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Vadim Zeitlin [Wed, 15 Mar 2006 20:18:42 +0000 (20:18 +0000)]
use wxDynamicLibrary::GetSymbolAorW() instead of duplicating its functionality with macros
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38114
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Mart Raudsepp [Wed, 15 Mar 2006 19:49:39 +0000 (19:49 +0000)]
Don't return a void value here - VC6 doesn't like it
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38113
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
David Surovell [Wed, 15 Mar 2006 19:22:01 +0000 (19:22 +0000)]
cleanup - minor restructuring, reformatting
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38112
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775
Włodzimierz Skiba [Wed, 15 Mar 2006 18:46:24 +0000 (18:46 +0000)]
More size_t in interface.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38110
c3d73ce0 -8a6f-49c7-b76d-
6d57e0e08775