]> git.saurik.com Git - wxWidgets.git/log
wxWidgets.git
22 years ago Exchanged compile flags so that local include paths
Robert Roebling [Fri, 16 Aug 2002 17:18:09 +0000 (17:18 +0000)] 
  Exchanged compile flags so that local include paths
    are used before others (such as PangoFT2'2).

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

22 years agoScript tweaks
Julian Smart [Fri, 16 Aug 2002 17:08:47 +0000 (17:08 +0000)] 
Script tweaks

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

22 years agoApplied patch [ 596061 ] Adds more navigation buttons to preview
Julian Smart [Fri, 16 Aug 2002 16:18:28 +0000 (16:18 +0000)] 
Applied patch [ 596061 ] Adds more navigation buttons to preview
By Juergen Geltinger (jgelti)

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

22 years agoApplied patch [ 566816 ] adds xBase type for Sequiter's SQL/ODBC
Julian Smart [Fri, 16 Aug 2002 12:43:07 +0000 (12:43 +0000)] 
Applied patch [ 566816 ] adds xBase type for Sequiter's SQL/ODBC

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

22 years agoFix for Unices with small command line space
Julian Smart [Fri, 16 Aug 2002 12:22:23 +0000 (12:22 +0000)] 
Fix for Unices with small command line space

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

22 years agoAdded wxMac distrib to tardist
Julian Smart [Fri, 16 Aug 2002 11:39:11 +0000 (11:39 +0000)] 
Added wxMac distrib to tardist

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

22 years agoApplied [ 594925 ] Implement wxArtProvider and XRC together
Julian Smart [Fri, 16 Aug 2002 11:24:46 +0000 (11:24 +0000)] 
Applied [ 594925 ] Implement wxArtProvider and XRC together
By Robert O'Connor (robertoconnor)

This patch is a draft which successfully allows a wxArtProvider to serve out icons to bitmaps for XRC files.

The syntax to use a wxArtProvider bitmap is:
<bitmap stock_id="wxART_INFORMATION" stock_client="wxART_TOOLBAR">somefallbackicon.png</bitmap>

The bitmap is optional, and will only be used as a fallback image, if the wxArtProvider returned a wxNullBitmap for some reason.

The client attribute, if not specified, currently will be wxART_OTHER. Perhaps there should be a guessing heuristic of it being in a menu node to call wxART_MENU.

Usage of XRC resouces and wxArtProvider together can be seen in an updated /contrib/samples/xrc demo, which is a separate patch.

Search the wx-dev mailing lists for "wxArtProvider" and "XRC" for the full discussions on this feature's API design.

Applied patch [ 594932 ] Extended XRC XML resources sample
By Robert O'Connor (robertoconnor)

This is a more comprehensive introduction to how to get up and running using XRC in your new wxWindows project.

It describes both the basics (for new users) and advanced features. It consists of a demo of dialogs and frames loaded from XRC. Each dialog has a textctrl at the top of the dialog, which walks the new user through that feature.

There are 8 demos:

The 4 basic ones:
-A non-derived dialog, as typically used for an about dialog.
-A derived dialog that loads its resources from an XRC (a frequently-asked question on the mailing lists), and responds to some simple events, including the disable-another-control-via-EVT_UPDATE_UI that is another FAQ, and powerful and simple-to-use feature.
-A XRC reference "Controls" dialog, using a notebook. Each tab has a single control. All XRC handled widgets can be seen at a glance, and how to use them under XRC.
-An uncentered dialog, to demonstrate the easy use of <centered>1</centered> to automatically place a Dialog centered on its parent..

The 4 advanced ones:
-Embedding a custom class into an XRC dialog, by using the "unknown" class.
-Using wxArtProvider to use stock icons from within your your XRC resources.
-Using the platform attribute to selectively show a part of XRC based on the current OS.
-Runtime variable expansion (demo only. Not implemented at this time).

Also:
-The main frame is now demonstrated as being loaded as an XRC.
- The toolbar has longhelp tag demonstrated, and are hooked up to the same events as the menu to show how XRCID() works on the same tool and menuitem XRCID.
-Some custom icons for the demonstration were created, and put into the toolbar and menubar. A custom icon also for the demonstration.
-The example code has been put in 1 class per file (both .cpp and a matching .xrc), to make it much less confusing for a newcomer to figure out what class is what, expecially with all the wx macros for declaration and implementation.

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

22 years agoApplied [ 594745 ] Fixes core dump under Forte 6U1 in imagbmp.cpp
Julian Smart [Fri, 16 Aug 2002 10:51:07 +0000 (10:51 +0000)] 
Applied [ 594745 ] Fixes core dump under Forte 6U1 in imagbmp.cpp
By John Skiff
I was getting a core dump under Solaris 2.6 when
storing images. My compiler is Forte 6 Update 1. The
problem was in imagbmp.cpp:

t@1 (l@1) signal BUS (invalid address alignment) in
wxANIHandler::DoCanRead at line 1304 in file "imagbmp.cpp"
1304 if ( FCC1 != *riff32 )
(dbx) p FCC1
FCC1 = 31064321
(dbx) p *riff32
*riff32 = 1380533830
(dbx)

I have tested the fix under Windows 2000, Solaris 2.6,
and Irix 6.5.

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

22 years agoApplied patch [ 594717 ] Implements wxFRAME_FLOAT_ON_PARENT
Julian Smart [Fri, 16 Aug 2002 10:33:41 +0000 (10:33 +0000)] 
Applied patch [ 594717 ] Implements wxFRAME_FLOAT_ON_PARENT
By John Skiff

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

22 years agoApplied patch [ 594623 ] FL: No Taskbar entry for tool windows
Julian Smart [Fri, 16 Aug 2002 10:31:53 +0000 (10:31 +0000)] 
Applied patch [ 594623 ] FL: No Taskbar entry for tool windows
and also replaced -with-iodbc with -with-odbc in the docs.

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

22 years agoonly test for pangoft2 if we're using GTK 2
Vadim Zeitlin [Fri, 16 Aug 2002 10:28:12 +0000 (10:28 +0000)] 
only test for pangoft2 if we're using GTK 2

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

22 years agoApplied patch [ 594416 ] MDI Previous Child
Julian Smart [Fri, 16 Aug 2002 09:55:54 +0000 (09:55 +0000)] 
Applied patch [ 594416 ] MDI Previous Child
From Benjamin I. Williams

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

22 years agodemo tweak
Robin Dunn [Fri, 16 Aug 2002 02:27:28 +0000 (02:27 +0000)] 
demo tweak

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

22 years agoCompile fix
Robin Dunn [Fri, 16 Aug 2002 02:27:12 +0000 (02:27 +0000)] 
Compile fix

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

22 years agowxCheckWindowWndProc() now checks for the original window proc in the window class...
Vadim Zeitlin [Fri, 16 Aug 2002 00:53:45 +0000 (00:53 +0000)] 
wxCheckWindowWndProc() now checks for the original window proc in the window class and not for the current (possibly subclasses) window proc

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

22 years agochange the selection appropriately (and refresh it as needed) after deleting a notebo...
Vadim Zeitlin [Fri, 16 Aug 2002 00:48:45 +0000 (00:48 +0000)] 
change the selection appropriately (and refresh it as needed) after deleting a notebook page

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

22 years agofix for the bug introduced by the last commit: don't quit the program when a standard...
Vadim Zeitlin [Fri, 16 Aug 2002 00:44:03 +0000 (00:44 +0000)] 
fix for the bug introduced by the last commit: don't quit the program when a standard msg box is closed

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

22 years agoadded a command to delete last page and not only the current one
Vadim Zeitlin [Fri, 16 Aug 2002 00:09:29 +0000 (00:09 +0000)] 
added a command to delete last page and not only the current one

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

22 years agoadded missing header to fix wxGTK compilation
Vadim Zeitlin [Thu, 15 Aug 2002 22:20:55 +0000 (22:20 +0000)] 
added missing header to fix wxGTK compilation

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

22 years agoExitOnFrame behaviour update for wxMac
Vadim Zeitlin [Thu, 15 Aug 2002 22:14:05 +0000 (22:14 +0000)] 
ExitOnFrame behaviour update for wxMac

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

22 years ago What did I change here?
Robert Roebling [Thu, 15 Aug 2002 20:49:10 +0000 (20:49 +0000)] 
 What did I change here?

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

22 years ago Fix to not break GTK2 output. (wxLogMessage bug).
Robert Roebling [Thu, 15 Aug 2002 20:48:02 +0000 (20:48 +0000)] 
  Fix to not break GTK2 output. (wxLogMessage bug).

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

22 years ago wxTextDataObject should convert to and
Robert Roebling [Thu, 15 Aug 2002 20:47:04 +0000 (20:47 +0000)] 
  wxTextDataObject should convert to and
    from UTF8 in Unicode mode under GTK.

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

22 years ago Further UNicode fixes.
Robert Roebling [Thu, 15 Aug 2002 20:45:58 +0000 (20:45 +0000)] 
  Further UNicode fixes.

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

22 years ago strings are now wxChar
Robert Roebling [Thu, 15 Aug 2002 20:43:00 +0000 (20:43 +0000)] 
  strings are now wxChar

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

22 years agothe app doesn't exit any more if a dialog is shown (and destroyed) while
Vadim Zeitlin [Thu, 15 Aug 2002 20:42:07 +0000 (20:42 +0000)] 
the app doesn't exit any more if a dialog is shown (and destroyed) while
the flow of control is still in OnInit()

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

22 years agosome old minor doc fixes I forgot to commit somehow
Vadim Zeitlin [Thu, 15 Aug 2002 20:38:39 +0000 (20:38 +0000)] 
some old minor doc fixes I forgot to commit somehow

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

22 years agoadded wxList::IsEmpty()
Vadim Zeitlin [Thu, 15 Aug 2002 19:38:46 +0000 (19:38 +0000)] 
added wxList::IsEmpty()

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

22 years agofixed (and slightly cleant up) wxGTK compilation
Vadim Zeitlin [Thu, 15 Aug 2002 17:55:03 +0000 (17:55 +0000)] 
fixed (and slightly cleant up) wxGTK compilation

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

22 years agofixed a harmless warning (patch 595096) and added a comment
Vadim Zeitlin [Thu, 15 Aug 2002 17:47:13 +0000 (17:47 +0000)] 
fixed a harmless warning (patch 595096) and added a comment

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

22 years ago(hopefully) workaround for a carbon bug not always setting the modifiers event record...
Stefan Csomor [Thu, 15 Aug 2002 13:28:48 +0000 (13:28 +0000)] 
(hopefully) workaround for a carbon bug not always setting the modifiers event record field.

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

22 years agoAllow AddWindow and RemoveWindow to be overridden in classes derived
Robin Dunn [Wed, 14 Aug 2002 23:26:42 +0000 (23:26 +0000)] 
Allow AddWindow and RemoveWindow to be overridden in classes derived
in Python

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

22 years agoTypo fixed
Robin Dunn [Wed, 14 Aug 2002 23:25:45 +0000 (23:25 +0000)] 
Typo fixed

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

22 years agoBugfix for wxListCtrl::GetColumn. It wasn't checking the returned format correctly.
Robin Dunn [Wed, 14 Aug 2002 23:25:06 +0000 (23:25 +0000)] 
Bugfix for wxListCtrl::GetColumn.  It wasn't checking the returned format correctly.

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

22 years agofixed the paths of the theme files in the VC++ wxUniv project
Vadim Zeitlin [Wed, 14 Aug 2002 22:29:58 +0000 (22:29 +0000)] 
fixed the paths of the theme files in the VC++ wxUniv project

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

22 years agoadded key code fix to carbon event handler
Stefan Csomor [Wed, 14 Aug 2002 21:46:34 +0000 (21:46 +0000)] 
added key code fix to carbon event handler

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

22 years agoFixed wxMSW's EVT_CHAR so it conforms to the docs and also what wxGTK
Robin Dunn [Wed, 14 Aug 2002 21:22:43 +0000 (21:22 +0000)] 
Fixed wxMSW's EVT_CHAR so it conforms to the docs and also what wxGTK
does already.  IOW, Ctrl-C should result in keycode == 3, not 99.

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

22 years agodefine wxART_* constanst in way that will make adding XRC support easier
Václav Slavík [Wed, 14 Aug 2002 20:04:18 +0000 (20:04 +0000)] 
define wxART_* constanst in way that will make adding XRC support easier

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

22 years agofix when not having precompiled headers
Stefan Csomor [Wed, 14 Aug 2002 19:00:05 +0000 (19:00 +0000)] 
fix when not having precompiled headers

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

22 years agoattempt to bring event system in synch with MSW
Stefan Csomor [Wed, 14 Aug 2002 18:41:12 +0000 (18:41 +0000)] 
attempt to bring event system in synch with MSW

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

22 years agoseparated modifier keys handling in order to distinct key/up down events
Stefan Csomor [Wed, 14 Aug 2002 17:09:20 +0000 (17:09 +0000)] 
separated modifier keys handling in order to distinct key/up down events

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

22 years agosmall fix to reduce flicker slightly while dragging the sash
Vadim Zeitlin [Wed, 14 Aug 2002 15:10:30 +0000 (15:10 +0000)] 
small fix to reduce flicker slightly while dragging the sash

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

22 years agoadded a 1 line script to generate the tags file for wxMSW
Vadim Zeitlin [Wed, 14 Aug 2002 15:04:04 +0000 (15:04 +0000)] 
added a 1 line script to generate the tags file for wxMSW

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

22 years agoadded creation of dialog - perhaps needed for all platforms
Stefan Csomor [Wed, 14 Aug 2002 13:04:39 +0000 (13:04 +0000)] 
added creation of dialog - perhaps needed for all platforms

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

22 years agoadded creation of dialog - perhaps needed for all platforms
Stefan Csomor [Wed, 14 Aug 2002 13:01:05 +0000 (13:01 +0000)] 
added creation of dialog - perhaps needed for all platforms

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

22 years agocleanup code
Stefan Csomor [Wed, 14 Aug 2002 12:58:52 +0000 (12:58 +0000)] 
cleanup code

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

22 years agoPython support in wxrc
Václav Slavík [Wed, 14 Aug 2002 11:02:39 +0000 (11:02 +0000)] 
Python support in wxrc

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

22 years agoPut a panel under the colored windows so wxGTK's notebook doesn't
Robin Dunn [Wed, 14 Aug 2002 00:29:13 +0000 (00:29 +0000)] 
Put a panel under the colored windows so wxGTK's notebook doesn't
munge the bg color

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

22 years agoFixes and other changes to the demo and some library modules so they
Robin Dunn [Tue, 13 Aug 2002 23:59:08 +0000 (23:59 +0000)] 
Fixes and other changes to the demo and some library modules so they
work better (or at all) on wxMac

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

22 years agoChanged style so it looks good everywhere
Robin Dunn [Tue, 13 Aug 2002 23:25:49 +0000 (23:25 +0000)] 
Changed style so it looks good everywhere

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

22 years agoFixed size buffers are not a good thing. Period.
Vadim Zeitlin [Tue, 13 Aug 2002 23:16:25 +0000 (23:16 +0000)] 
Fixed size buffers are not a good thing. Period.

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

22 years agoUse a better index
Robin Dunn [Tue, 13 Aug 2002 23:16:20 +0000 (23:16 +0000)] 
Use a better index

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

22 years agoAdded a sample to the demo that catches various key events and
Robin Dunn [Tue, 13 Aug 2002 23:12:25 +0000 (23:12 +0000)] 
Added a sample to the demo that catches various key events and
displays the details of the event.

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

22 years agofixed pangoft2 check: moved outsided cached block
Václav Slavík [Tue, 13 Aug 2002 23:10:26 +0000 (23:10 +0000)] 
fixed pangoft2 check: moved outsided cached block

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

22 years agoreverted previous checkin
Václav Slavík [Tue, 13 Aug 2002 23:09:40 +0000 (23:09 +0000)] 
reverted previous checkin

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

22 years agocompilation fix
Václav Slavík [Tue, 13 Aug 2002 23:09:33 +0000 (23:09 +0000)] 
compilation fix

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

22 years agotidied up patch 583937 (wxClassInfo dtor)
Vadim Zeitlin [Tue, 13 Aug 2002 22:37:41 +0000 (22:37 +0000)] 
tidied up patch 583937 (wxClassInfo dtor)

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

22 years ago New GTK 2.0 Update() code.
Robert Roebling [Tue, 13 Aug 2002 20:59:05 +0000 (20:59 +0000)] 
  New GTK 2.0 Update() code.

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

22 years ago New code for Update() under GTK 2.0. Added
Robert Roebling [Tue, 13 Aug 2002 20:58:23 +0000 (20:58 +0000)] 
  New code for Update() under GTK 2.0. Added
     native GdkRegion() constructor to wxRegion.

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

22 years ago Minor correction to GetTextExtent.
Robert Roebling [Tue, 13 Aug 2002 20:56:40 +0000 (20:56 +0000)] 
  Minor correction to GetTextExtent.

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

22 years ago Forgot Unicode conversion in wxStaticText.
Robert Roebling [Tue, 13 Aug 2002 20:37:00 +0000 (20:37 +0000)] 
  Forgot Unicode conversion in wxStaticText.

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

22 years ago This way strconv copmiles again. I don't think
Robert Roebling [Tue, 13 Aug 2002 19:55:14 +0000 (19:55 +0000)] 
  This way strconv copmiles again. I don't think
    this is the intended use of ICONV_CONST, though.

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

22 years agobetter use strncpy() than strncat() with uninitialized buffer
Vadim Zeitlin [Tue, 13 Aug 2002 19:40:41 +0000 (19:40 +0000)] 
better use strncpy() than strncat() with uninitialized buffer

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

22 years ago Implemented GetTextExtent() for GTK 2.0.
Robert Roebling [Tue, 13 Aug 2002 17:23:20 +0000 (17:23 +0000)] 
  Implemented GetTextExtent() for GTK 2.0.

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

22 years agominor fixes:
Vadim Zeitlin [Tue, 13 Aug 2002 12:26:31 +0000 (12:26 +0000)] 
minor fixes:
1. removed "We already do it" as "We" is not a valid shell command :-)
2. define _GNU_SOURCE in setup.h and not in the compiler flags
3. allow to build with GTK2 without pangoft2 (and without printing then)

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

22 years agoadded new method MacSetupCursor
Stefan Csomor [Tue, 13 Aug 2002 12:17:56 +0000 (12:17 +0000)] 
added new method MacSetupCursor

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

22 years agocompilation fix for wxGTK (missing header)
Vadim Zeitlin [Tue, 13 Aug 2002 11:45:56 +0000 (11:45 +0000)] 
compilation fix for wxGTK (missing header)

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

22 years agocorrected BestSize algorithm
Stefan Csomor [Tue, 13 Aug 2002 09:51:13 +0000 (09:51 +0000)] 
corrected BestSize algorithm

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

22 years agoadded missing wxMacPortSetter helper(this) calls
Stefan Csomor [Tue, 13 Aug 2002 09:14:48 +0000 (09:14 +0000)] 
added missing  wxMacPortSetter helper(this) calls

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

22 years agoall controls use 32 bit values now
Stefan Csomor [Tue, 13 Aug 2002 08:50:41 +0000 (08:50 +0000)] 
all controls use 32 bit values now

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

22 years agocorrected internal window position after a zoom operation
Stefan Csomor [Tue, 13 Aug 2002 06:55:48 +0000 (06:55 +0000)] 
corrected internal window position after a zoom operation

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

22 years agoadded pangoft2 check to configure
Václav Slavík [Mon, 12 Aug 2002 22:13:21 +0000 (22:13 +0000)] 
added pangoft2 check to configure

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

22 years agoseems I forgot to check in these changes to tex2rtf packaging scripts...
Václav Slavík [Mon, 12 Aug 2002 22:08:05 +0000 (22:08 +0000)] 
seems I forgot to check in these changes to tex2rtf packaging scripts...

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

22 years agoSWIGged updates for wxMac
Robin Dunn [Mon, 12 Aug 2002 21:56:11 +0000 (21:56 +0000)] 
SWIGged updates for wxMac

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

22 years ago'if' commented out by JACS on behalf
Julian Smart [Mon, 12 Aug 2002 21:41:45 +0000 (21:41 +0000)] 
'if' commented out by JACS on behalf
of Hans Van Leemputten <Hansvl@softhome.net> who
points out that UpdateSpinBtn should always be called,
to ensure m_lastVisible is up to date.

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

22 years agoMore build/distrib tweaks
Robin Dunn [Mon, 12 Aug 2002 21:30:02 +0000 (21:30 +0000)] 
More build/distrib tweaks

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

22 years ago Added -lpangoft2-1.0 to link line.
Robert Roebling [Mon, 12 Aug 2002 19:47:34 +0000 (19:47 +0000)] 
  Added -lpangoft2-1.0 to link line.
  Added _GNU_SOURCE to compile line.

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

22 years agoFixed DSM
Robin Dunn [Mon, 12 Aug 2002 19:33:01 +0000 (19:33 +0000)] 
Fixed DSM

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

22 years agoAdded accessor for the main window in generic wxListCtrl. In wxMSW
Robin Dunn [Mon, 12 Aug 2002 19:17:43 +0000 (19:17 +0000)] 
Added accessor for the main window in generic wxListCtrl.  In wxMSW
just returns self.

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

22 years agowxPySimpleApp calls wxInitAllImageHandlers
Robin Dunn [Mon, 12 Aug 2002 19:16:53 +0000 (19:16 +0000)] 
wxPySimpleApp calls wxInitAllImageHandlers

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

22 years agoLittle samples updates
Robin Dunn [Mon, 12 Aug 2002 17:56:45 +0000 (17:56 +0000)] 
Little samples updates

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

22 years agoMore wxListCtrl test code
Robin Dunn [Mon, 12 Aug 2002 17:54:46 +0000 (17:54 +0000)] 
More wxListCtrl test code

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

22 years agoShow how to use a wxMemoryFSHandler
Robin Dunn [Mon, 12 Aug 2002 17:54:26 +0000 (17:54 +0000)] 
Show how to use a wxMemoryFSHandler

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

22 years agoBuild and distrib tweaks
Robin Dunn [Mon, 12 Aug 2002 17:45:17 +0000 (17:45 +0000)] 
Build and distrib tweaks

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

22 years agoAdded menu icon methods everywhere
Robin Dunn [Mon, 12 Aug 2002 17:44:11 +0000 (17:44 +0000)] 
Added menu icon methods everywhere

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

22 years agoIncreased the message buffer size
Julian Smart [Mon, 12 Aug 2002 15:43:45 +0000 (15:43 +0000)] 
Increased the message buffer size

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

22 years agofixed wxChar definition
Václav Slavík [Mon, 12 Aug 2002 11:10:39 +0000 (11:10 +0000)] 
fixed wxChar definition

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

22 years agofixed another typo
Václav Slavík [Mon, 12 Aug 2002 11:10:28 +0000 (11:10 +0000)] 
fixed another typo

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

22 years agoupdated project files
Stefan Csomor [Mon, 12 Aug 2002 05:28:46 +0000 (05:28 +0000)] 
updated project files

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

22 years agoFont fixes for the font dialog
David Webster [Sun, 11 Aug 2002 23:47:44 +0000 (23:47 +0000)] 
Font fixes for the font dialog

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

22 years agoCorrected typos for
Julian Smart [Sun, 11 Aug 2002 20:11:01 +0000 (20:11 +0000)] 
Corrected typos for

typedef void (wxEvtHandler::*wxIconizeEventFunction)(wxIconizeEvent&);
typedef void (wxEvtHandler::*wxMaximizeEventFunction)(wxMaximizeEvent&);

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

22 years ago Same typo.
Robert Roebling [Sun, 11 Aug 2002 19:39:51 +0000 (19:39 +0000)] 
 Same typo.

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

22 years ago Typo.
Robert Roebling [Sun, 11 Aug 2002 19:39:22 +0000 (19:39 +0000)] 
  Typo.

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

22 years ago Killing more wxConvLibc calls...
Robert Roebling [Sun, 11 Aug 2002 16:32:50 +0000 (16:32 +0000)] 
  Killing more wxConvLibc calls...

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

22 years ago Corrected dangerous cast.
Robert Roebling [Sun, 11 Aug 2002 16:17:23 +0000 (16:17 +0000)] 
  Corrected dangerous cast.

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

22 years ago Added wxString::FromAscii() wxString::ToAscii().
Robert Roebling [Sun, 11 Aug 2002 13:09:57 +0000 (13:09 +0000)] 
  Added wxString::FromAscii() wxString::ToAscii().
  Removed wxConvFile, made it a define wxConvLocal.
  Exchanged some wxConvLibc to wxConvLocal calls.

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

22 years agoOSX fix
Stefan Csomor [Sat, 10 Aug 2002 20:02:14 +0000 (20:02 +0000)] 
OSX fix

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

22 years agowxMac removed debugging code
Stefan Csomor [Sat, 10 Aug 2002 20:01:34 +0000 (20:01 +0000)] 
wxMac removed debugging code

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

22 years agocommented out controlDef for carbon
Stefan Csomor [Sat, 10 Aug 2002 19:00:34 +0000 (19:00 +0000)] 
commented out controlDef for carbon

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

22 years agofixed broken test in configure: no, DJGPP really is not UNIX...
Václav Slavík [Sat, 10 Aug 2002 18:23:40 +0000 (18:23 +0000)] 
fixed broken test in configure: no, DJGPP really is not UNIX...

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