]> git.saurik.com Git - wxWidgets.git/log
wxWidgets.git
20 years agowxCocoa: Enable wxSocket support using new CFSocket implementation from wxMac
David Elliott [Wed, 24 Dec 2003 04:39:05 +0000 (04:39 +0000)] 
wxCocoa: Enable wxSocket support using new CFSocket implementation from wxMac

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25000 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years ago* Implemented according to Apple CFSocket documentation:
David Elliott [Wed, 24 Dec 2003 04:04:40 +0000 (04:04 +0000)] 
* Implemented according to Apple CFSocket documentation:
  kCFSocketConnectCallBack: Called in response to a successful connect() and
    of course applies to client sockets only. Fails assertion if received
    from a server socket. Calls GSocket's Detected_Write otherwise.
  kCFSocketReadCallBack: Called whenever data is available to read or in
    the event that a new connection is waiting to be accepted. Call's
    GSocket's Detected_Read.
  kCFSocketWriteCallBack: Called whenever data can be written to kernel buffer.
    Call's GSocket's Detected_Write
* Added ALL_CALLBACK_TYPES macro which specifies all of the above three.
* Added (by virtue of ALL_CALLBACK_TYPES) the kCFSocketConnectCallBack to
  the calls to CFSocketCreateWithNative and CFSocketDisableCallBacks during
  GUI socket data creation.
* Use the default flags for CFSocket which automatically reenable the
  callbacks, but continue to disable close of fd on CFSocket invalidation.
  Eventually, GSocket should allow the GUI implementation to override close
  so that we can avoid calling the > 10.2 CFSocketSetSocketFlags function.
* CFRelease the socket after invalidating it (fixes memory leak)
* When adding/removing callbacks use kCFSocketReadCallBack for server
  GSOCK_CONNECTION and kCFSocketConnectCallback for client.
* When adding/removing callbacks GSOCK_LOST should do the same thing as
  GSOCK_INPUT (Thanks Kevin Hock)
* When enabling events, do not enable kCFSocketConnectCallBack for servers.
  It should never be called anyway since connect() should never be used
  on a server socket.
* When disabling events, disable ALL_CALLBACK_TYPES.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24999 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoreSWIGged
Robin Dunn [Wed, 24 Dec 2003 03:09:10 +0000 (03:09 +0000)] 
reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24998 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoIn GSocket_Destroy reorder GUI_Destroy and Shutdown when compiling for Darwin.
David Elliott [Wed, 24 Dec 2003 02:49:07 +0000 (02:49 +0000)] 
In GSocket_Destroy reorder GUI_Destroy and Shutdown when compiling for Darwin.
This is necessary to comply with the Apple documentation for CFSocket which
states quite explcitly that the CFSocket must be invalidated prior to close.

Likewise in GSocket_Read don't enable input events until we have finished
reading the data.  This is necessary because an input event will be
immediately generated but all the data will have been read by the current
callback which leads to the GSocket code thinking the connection has been
lost and when wxYield recursion is involved will lead to crashes or an assert.

Because we are doing a compile time test only for Darwin this will also
affect wxGTK running on Darwin. It appears possible for the new order to work
on all platforms but more testing would be required.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24997 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoreSWIGged
Robin Dunn [Wed, 24 Dec 2003 02:45:57 +0000 (02:45 +0000)] 
reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24996 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoreSWIGged
Robin Dunn [Wed, 24 Dec 2003 02:38:31 +0000 (02:38 +0000)] 
reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24995 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoregnenerated image modules
Robin Dunn [Wed, 24 Dec 2003 02:36:30 +0000 (02:36 +0000)] 
regnenerated image modules

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24994 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoFixed a couple wxString typemaps
Robin Dunn [Wed, 24 Dec 2003 02:35:33 +0000 (02:35 +0000)] 
Fixed a couple wxString typemaps

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24993 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agodelete the .pyc files before making a preview
Robin Dunn [Wed, 24 Dec 2003 01:39:22 +0000 (01:39 +0000)] 
delete the .pyc files before making a preview

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24992 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoFixed a typo
Robin Dunn [Wed, 24 Dec 2003 01:26:42 +0000 (01:26 +0000)] 
Fixed a typo

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24991 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAliasing wxDC methods like was dangerous...
Robin Dunn [Wed, 24 Dec 2003 01:24:58 +0000 (01:24 +0000)] 
Aliasing wxDC methods like was dangerous...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24990 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoMore adjustments to aliases
Robin Dunn [Wed, 24 Dec 2003 01:12:25 +0000 (01:12 +0000)] 
More adjustments to aliases

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24989 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoTool tweaks and metadata update
Robin Dunn [Wed, 24 Dec 2003 01:09:51 +0000 (01:09 +0000)] 
Tool tweaks and metadata update

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24988 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoreSWIGged
Robin Dunn [Tue, 23 Dec 2003 23:27:57 +0000 (23:27 +0000)] 
reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24987 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoreSWIGged
Robin Dunn [Tue, 23 Dec 2003 21:39:24 +0000 (21:39 +0000)] 
reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24986 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agobackwards compatibility aliases can be used in the wxPython namespace
Robin Dunn [Tue, 23 Dec 2003 21:37:21 +0000 (21:37 +0000)] 
backwards compatibility aliases can be used in the wxPython namespace

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24985 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agotypo fixed
Robin Dunn [Tue, 23 Dec 2003 21:35:31 +0000 (21:35 +0000)] 
typo fixed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24984 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoUpdated tools
Robin Dunn [Tue, 23 Dec 2003 19:56:51 +0000 (19:56 +0000)] 
Updated tools

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24983 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoMOre wxUSE_... fixes
Julian Smart [Tue, 23 Dec 2003 19:42:05 +0000 (19:42 +0000)] 
MOre wxUSE_... fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24982 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agowxPython metadata xml
Robin Dunn [Tue, 23 Dec 2003 19:31:59 +0000 (19:31 +0000)] 
wxPython metadata xml

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24981 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAdded XML simplification scripts for generating the wxPython metadata xml.
Robin Dunn [Tue, 23 Dec 2003 17:45:54 +0000 (17:45 +0000)] 
Added XML simplification scripts for generating the wxPython metadata xml.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24980 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoRemoved out of date comment about Unicode
Julian Smart [Tue, 23 Dec 2003 16:07:40 +0000 (16:07 +0000)] 
Removed out of date comment about Unicode

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24979 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoFixed newlines :)
Ryan Norton [Tue, 23 Dec 2003 15:56:20 +0000 (15:56 +0000)] 
Fixed newlines :)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24978 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAdded wxUSE_TOOLBAR, wxUSE_STATUSBAR tests
Julian Smart [Tue, 23 Dec 2003 12:39:33 +0000 (12:39 +0000)] 
Added wxUSE_TOOLBAR, wxUSE_STATUSBAR tests

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24977 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoApplied patch [ 864570 ] adjustement of FL contrib to change in wx/log.h
Julian Smart [Tue, 23 Dec 2003 10:47:39 +0000 (10:47 +0000)] 
Applied patch [ 864570 ] adjustement of FL contrib to change in wx/log.h

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24976 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoApplied patch [ 861884 ] adjustement of bombs demo to wxBombsCE
Julian Smart [Tue, 23 Dec 2003 10:45:28 +0000 (10:45 +0000)] 
Applied patch [ 861884 ] adjustement of bombs demo to wxBombsCE

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24975 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAdded Bombs demo eVC project file from ABX
Julian Smart [Tue, 23 Dec 2003 10:32:21 +0000 (10:32 +0000)] 
Added Bombs demo eVC project file from ABX

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24974 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAdded minimal sample WinCE project files
Julian Smart [Tue, 23 Dec 2003 10:17:28 +0000 (10:17 +0000)] 
Added minimal sample WinCE project files

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24973 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAdded comments for WinCE shortcut suggestion
Julian Smart [Tue, 23 Dec 2003 10:02:08 +0000 (10:02 +0000)] 
Added comments for WinCE shortcut suggestion

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24972 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoSome WinCE fixes from ABX
Julian Smart [Tue, 23 Dec 2003 09:18:16 +0000 (09:18 +0000)] 
Some WinCE fixes from ABX

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24971 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAdded note about deleting returned object (OpenFile)
Ryan Norton [Tue, 23 Dec 2003 03:16:37 +0000 (03:16 +0000)] 
Added note about deleting returned object (OpenFile)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24970 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoApplied patch #864557 (Adjustment of richedit sample to new FindColour solution).
Dimitri Schoolwerth [Tue, 23 Dec 2003 03:01:37 +0000 (03:01 +0000)] 
Applied patch #864557 (Adjustment of richedit sample to new FindColour solution).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24969 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agowxTaskBarIcon works on wxGTK now too.
Robin Dunn [Mon, 22 Dec 2003 21:25:58 +0000 (21:25 +0000)] 
wxTaskBarIcon works on wxGTK now too.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24968 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoMake the comment colors have a bit more contrast, and reduce the
Robin Dunn [Mon, 22 Dec 2003 20:59:16 +0000 (20:59 +0000)] 
Make the comment colors have a bit more contrast, and reduce the
timeout on the splashscreen.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24967 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoRemoved regextest :).
Ryan Norton [Mon, 22 Dec 2003 20:38:18 +0000 (20:38 +0000)] 
Removed regextest :).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24966 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoMore lib and demo patches to drop the wx prefix (Jeff has been busy!)
Robin Dunn [Mon, 22 Dec 2003 19:09:54 +0000 (19:09 +0000)] 
More lib and demo patches to drop the wx prefix (Jeff has been busy!)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24965 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years ago1.
Ryan Norton [Mon, 22 Dec 2003 09:36:19 +0000 (09:36 +0000)] 
1.
Changed things others suggested

2.
Changed search text cntrl to a multiline one

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24964 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years ago1.
Ryan Norton [Sun, 21 Dec 2003 22:44:53 +0000 (22:44 +0000)] 
1.
Only owner draw menus on MSW

2.
Handle GRETA compilations errors

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24963 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAdded Status Bar
Ryan Norton [Sun, 21 Dec 2003 22:19:25 +0000 (22:19 +0000)] 
Added Status Bar

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24962 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAdded -
Ryan Norton [Sun, 21 Dec 2003 22:03:12 +0000 (22:03 +0000)] 
Added -
1.
Owner drawn menu items (sort of)

2.
Match/Compile time

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24961 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoChanged main frame style to wxDEFAULT_FRAME_STYLE | wxTAB_TRAVERSAL
Ryan Norton [Sun, 21 Dec 2003 20:37:17 +0000 (20:37 +0000)] 
Changed main frame style to wxDEFAULT_FRAME_STYLE | wxTAB_TRAVERSAL

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24960 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoCorrection for gcc
Julian Smart [Sun, 21 Dec 2003 13:19:44 +0000 (13:19 +0000)] 
Correction for gcc

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24959 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoChanged GRETA compile flag - fixing output (was matching in reverse before....)
Ryan Norton [Sun, 21 Dec 2003 12:22:59 +0000 (12:22 +0000)] 
Changed GRETA compile flag - fixing output (was matching in reverse before....)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24958 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoToo many changes :)
Ryan Norton [Sun, 21 Dec 2003 11:51:33 +0000 (11:51 +0000)] 
Too many changes :)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24957 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agolink against the net library, too
Václav Slavík [Sun, 21 Dec 2003 10:27:13 +0000 (10:27 +0000)] 
link against the net library, too

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24956 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAdded some notes and other changes.....
Ryan Norton [Sun, 21 Dec 2003 10:09:36 +0000 (10:09 +0000)] 
Added some notes and other changes.....

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24955 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoFixed TEST_SCOPEGUARD (newer version prepends wx to macros...)
Ryan Norton [Sun, 21 Dec 2003 10:02:35 +0000 (10:02 +0000)] 
Fixed TEST_SCOPEGUARD (newer version prepends wx to macros...)

C:\\wxWindows\\samples\\console\\console.cpp(3379) : error C2065: 'ON_BLOCK_EXIT0' : undeclared identifier
C:\\wxWindows\\samples\\console\\console.cpp(3380) : error C2065: 'ON_BLOCK_EXIT1' : undeclared identifier
C:\\wxWindows\\samples\\console\\console.cpp(3381) : error C2065: 'ON_BLOCK_EXIT2' : undeclared identifier
C:\\wxWindows\\samples\\console\\console.cpp(3384) : error C2065: 'ON_BLOCK_EXIT_OBJ0' : undeclared identifier
C:\\wxWindows\\samples\\console\\console.cpp(3385) : error C2065: 'ON_BLOCK_EXIT_OBJ1' : undeclared identifier
C:\\wxWindows\\samples\\console\\console.cpp(3386) : error C2065: 'ON_BLOCK_EXIT_OBJ2' : undeclared identifier

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24954 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoCommitted Mike's Update Patch
Ryan Norton [Sun, 21 Dec 2003 04:30:32 +0000 (04:30 +0000)] 
Committed Mike's Update Patch
862130 wxZlibInput/OutputStream gzip support

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24953 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoCommitted Mike's Update Patch
Ryan Norton [Sun, 21 Dec 2003 04:28:45 +0000 (04:28 +0000)] 
Committed Mike's Update Patch
862130 wxZlibInput/OutputStream gzip support

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24952 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoScopeguard test doesn't work either due to some undefined functions/macros
Ryan Norton [Sun, 21 Dec 2003 00:05:35 +0000 (00:05 +0000)] 
Scopeguard test doesn't work either due to some undefined functions/macros

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24951 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoquick fixes
Ryan Norton [Sun, 21 Dec 2003 00:04:17 +0000 (00:04 +0000)] 
quick fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24950 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agosize_t is always unsigned....
Ryan Norton [Sat, 20 Dec 2003 22:25:48 +0000 (22:25 +0000)] 
size_t is always unsigned....

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24949 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agominor corrections
Václav Slavík [Sat, 20 Dec 2003 22:16:32 +0000 (22:16 +0000)] 
minor corrections

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24948 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoClean out the old stuff
Robin Dunn [Sat, 20 Dec 2003 21:28:12 +0000 (21:28 +0000)] 
Clean out the old stuff

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24947 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoreSWIGged
Robin Dunn [Sat, 20 Dec 2003 20:03:09 +0000 (20:03 +0000)] 
reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24946 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoreSWIGged
Robin Dunn [Sat, 20 Dec 2003 19:55:26 +0000 (19:55 +0000)] 
reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24945 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAquire the GIL before raising the NotImplementedError exception
Robin Dunn [Sat, 20 Dec 2003 19:54:10 +0000 (19:54 +0000)] 
Aquire the GIL before raising the NotImplementedError exception

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24944 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAdded wxHtmlCell::[S|G]etId
Robin Dunn [Sat, 20 Dec 2003 19:53:24 +0000 (19:53 +0000)] 
Added wxHtmlCell::[S|G]etId

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24943 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoMore lib and demo changes for dropping the wx prefix, from Jeff G.
Robin Dunn [Sat, 20 Dec 2003 19:36:30 +0000 (19:36 +0000)] 
More lib and demo changes for dropping the wx prefix, from Jeff G.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24942 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years ago[ 835171 ] Show hidden files in wxGenericDirCtrl
Ryan Norton [Sat, 20 Dec 2003 15:13:15 +0000 (15:13 +0000)] 
[ 835171 ] Show hidden files in wxGenericDirCtrl
(genericdirctrl is neat!)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24941 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoI should modify this more :)
Ryan Norton [Sat, 20 Dec 2003 14:04:08 +0000 (14:04 +0000)] 
I should modify this more :)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24940 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAdded wxPATH_NORM_SHORTCUT
Julian Smart [Sat, 20 Dec 2003 13:59:13 +0000 (13:59 +0000)] 
Added wxPATH_NORM_SHORTCUT

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24939 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAdded another sanity check....
Ryan Norton [Sat, 20 Dec 2003 13:54:13 +0000 (13:54 +0000)] 
Added another sanity check....

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24938 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoReversed,...
Ryan Norton [Sat, 20 Dec 2003 13:52:02 +0000 (13:52 +0000)] 
Reversed,...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24937 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoComment....
Ryan Norton [Sat, 20 Dec 2003 13:47:25 +0000 (13:47 +0000)] 
Comment....

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24936 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAdded an assert...
Ryan Norton [Sat, 20 Dec 2003 13:39:40 +0000 (13:39 +0000)] 
Added an assert...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24935 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years ago1.
Ryan Norton [Sat, 20 Dec 2003 13:08:29 +0000 (13:08 +0000)] 
1.
Regenerated Bakefiles

2.
Added regextest sample

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24934 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoApplied patch [ 853031 ] Japanese po file
Julian Smart [Sat, 20 Dec 2003 12:18:54 +0000 (12:18 +0000)] 
Applied patch [ 853031 ] Japanese po file
Supplied by Hiroshi Saito, Taishin Kin made the last
adjustment.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24933 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoContact info
Ryan Norton [Sat, 20 Dec 2003 09:05:08 +0000 (09:05 +0000)] 
Contact info

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24932 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoreSWIGged
Robin Dunn [Sat, 20 Dec 2003 01:17:52 +0000 (01:17 +0000)] 
reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24931 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoOops
Robin Dunn [Sat, 20 Dec 2003 01:14:15 +0000 (01:14 +0000)] 
Oops

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24930 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoFixed a couple namespace issues
Robin Dunn [Sat, 20 Dec 2003 01:03:44 +0000 (01:03 +0000)] 
Fixed a couple namespace issues

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24929 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoFixed indetation error
Robin Dunn [Sat, 20 Dec 2003 01:03:19 +0000 (01:03 +0000)] 
Fixed indetation error

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24928 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoMore changes to make the autodocs be better, made all the namestrings
Robin Dunn [Sat, 20 Dec 2003 01:01:49 +0000 (01:01 +0000)] 
More changes to make the autodocs be better, made all the namestrings
and such be visible to swig so the autodoc generator knows how to
rename them.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24927 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoNoted where the documentation was
Ryan Norton [Fri, 19 Dec 2003 23:43:45 +0000 (23:43 +0000)] 
Noted where the documentation was

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24926 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAdded some documentation :)
Ryan Norton [Fri, 19 Dec 2003 23:32:40 +0000 (23:32 +0000)] 
Added some documentation :)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24925 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoreSWIGged
Robin Dunn [Fri, 19 Dec 2003 04:47:55 +0000 (04:47 +0000)] 
reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24924 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoautodoc docstring fixes and such
Robin Dunn [Fri, 19 Dec 2003 04:45:35 +0000 (04:45 +0000)] 
autodoc docstring fixes and such

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24923 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoVersion number
Robin Dunn [Fri, 19 Dec 2003 04:42:39 +0000 (04:42 +0000)] 
Version number

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24922 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoUpdated SWIG patches for new CVS line numbers, also output "int" for
Robin Dunn [Fri, 19 Dec 2003 04:39:38 +0000 (04:39 +0000)] 
Updated SWIG patches for new CVS line numbers, also output "int" for
enum types in the autodoc strings.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24921 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAlways let (deprecated) FindColour() return a new instance of a found colour, because...
Dimitri Schoolwerth [Fri, 19 Dec 2003 02:09:01 +0000 (02:09 +0000)] 
Always let (deprecated) FindColour() return a new instance of a found colour, because otherwise multiple calls to FindColour() will share the same wxColour; Added a wxLogDebug message when FindColour() is used because it shouldn't be used without modifying user-code probably (Returned wxColours must now be released).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24920 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoPartially applied patch #8618848 ("adjustment of bombs demo to wxBombsCE"). Applied...
Dimitri Schoolwerth [Fri, 19 Dec 2003 01:34:40 +0000 (01:34 +0000)] 
Partially applied patch #8618848 ("adjustment of bombs demo to wxBombsCE"). Applied the source changes only, not the project changes; (wx-)modernized the demo.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24919 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoinfo about what is generated
Václav Slavík [Thu, 18 Dec 2003 21:29:57 +0000 (21:29 +0000)] 
info about what is generated

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24918 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoreSWIGged
Robin Dunn [Thu, 18 Dec 2003 19:11:15 +0000 (19:11 +0000)] 
reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24917 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoTweaking names (Thanks Jeff!)
Robin Dunn [Thu, 18 Dec 2003 19:10:26 +0000 (19:10 +0000)] 
Tweaking names (Thanks Jeff!)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24916 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoTweaked some sample code
Robin Dunn [Thu, 18 Dec 2003 19:08:13 +0000 (19:08 +0000)] 
Tweaked some sample code

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24915 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoInclude wx/confbase.h which is needed by this file.
Dimitri Schoolwerth [Thu, 18 Dec 2003 14:54:25 +0000 (14:54 +0000)] 
Include wx/confbase.h which is needed by this file.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24914 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoregenerated
Václav Slavík [Thu, 18 Dec 2003 14:32:31 +0000 (14:32 +0000)] 
regenerated

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24913 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoregex lib needs wx headers now
Václav Slavík [Thu, 18 Dec 2003 10:42:09 +0000 (10:42 +0000)] 
regex lib needs wx headers now

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24912 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoreverted relative include path
Václav Slavík [Thu, 18 Dec 2003 10:41:34 +0000 (10:41 +0000)] 
reverted relative include path

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24911 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAk. Corrected wxUSE_UNICODE checking...
Ryan Norton [Thu, 18 Dec 2003 10:19:27 +0000 (10:19 +0000)] 
Ak.  Corrected wxUSE_UNICODE checking...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24910 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoOh Henry :).
Ryan Norton [Thu, 18 Dec 2003 10:17:53 +0000 (10:17 +0000)] 
Oh Henry :).

He didn't implement dumpchr correctly for unicode...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24909 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoAdded an extra c header for memcmp and stuff...
Ryan Norton [Thu, 18 Dec 2003 10:12:58 +0000 (10:12 +0000)] 
Added an extra c header for memcmp and stuff...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24908 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoMake include path more literal for bcc...
Ryan Norton [Thu, 18 Dec 2003 10:08:04 +0000 (10:08 +0000)] 
Make include path more literal for bcc...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24907 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agominor clarification
Václav Slavík [Thu, 18 Dec 2003 07:59:36 +0000 (07:59 +0000)] 
minor clarification

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24906 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agocorrected comments for wxMac compilation
Gilles Depeyrot [Thu, 18 Dec 2003 07:38:00 +0000 (07:38 +0000)] 
corrected comments for wxMac compilation

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24905 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years ago1.
Ryan Norton [Thu, 18 Dec 2003 03:34:22 +0000 (03:34 +0000)] 
1.
Only checks platform #defines in C++ now

2.
A couple /* within /* warnings were fixed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24904 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoFixed a very weird typo
Robin Dunn [Thu, 18 Dec 2003 00:44:51 +0000 (00:44 +0000)] 
Fixed a very weird typo

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24903 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoReworked how stock objects are initialized. They now have an
Robin Dunn [Thu, 18 Dec 2003 00:08:42 +0000 (00:08 +0000)] 
Reworked how stock objects are initialized.  They now have an
alternate __class__ until the App is initialized so they will raise an
exception if anybody tries to use them before the C++ object has been
created.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24902 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

20 years agoFix __repr__
Robin Dunn [Thu, 18 Dec 2003 00:02:35 +0000 (00:02 +0000)] 
Fix __repr__

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24901 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775