wxWidgets.git
24 years agofix to allow non-extension based template choosing to work from Vegh Janos
Vadim Zeitlin [Wed, 23 Feb 2000 15:32:14 +0000 (15:32 +0000)] 
fix to allow non-extension based template choosing to work from Vegh Janos

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

24 years agoAdd exemple for redirecting cout
Sylvain Bougnoux [Wed, 23 Feb 2000 13:17:14 +0000 (13:17 +0000)] 
Add exemple for redirecting cout

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

24 years agoTablesInUse did not have DeleteContents() set to TRUE in __WXDEBUG__ mode
George Tasker [Wed, 23 Feb 2000 12:31:59 +0000 (12:31 +0000)] 
TablesInUse did not have DeleteContents() set to TRUE in __WXDEBUG__ mode

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

24 years agoAdded wxGrid::DrawGridSpace function to suppress junk beyond last
Michael Bedward [Wed, 23 Feb 2000 07:15:04 +0000 (07:15 +0000)] 
Added wxGrid::DrawGridSpace function to suppress junk beyond last
row and col of grid.

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

24 years agoSome mouse events need to be handled even when outside the grid.
Robin Dunn [Wed, 23 Feb 2000 07:03:56 +0000 (07:03 +0000)] 
Some mouse events need to be handled even when outside the grid.

Added flag and accessors to enable/disable the dragging of the grid
lines.

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

24 years agodelay getting the default editor and renderer (by data type) until
Robin Dunn [Wed, 23 Feb 2000 04:45:24 +0000 (04:45 +0000)] 
delay getting the default editor and renderer (by data type) until
actually needed

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

24 years agomultiple/single sel mode can now be toggled from menu
Vadim Zeitlin [Wed, 23 Feb 2000 00:30:59 +0000 (00:30 +0000)] 
multiple/single sel mode can now be toggled from menu

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

24 years agoMore wxWindow updates
David Webster [Tue, 22 Feb 2000 23:06:35 +0000 (23:06 +0000)] 
More wxWindow updates

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

24 years agoadded missing files to life & poem, added wxPython/demo
Ron Lee [Tue, 22 Feb 2000 22:48:00 +0000 (22:48 +0000)] 
added missing files to life & poem, added wxPython/demo

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

24 years ago Playing with scrolling, als fixed redraw
Robert Roebling [Tue, 22 Feb 2000 22:39:55 +0000 (22:39 +0000)] 
   Playing with scrolling, als fixed redraw
    bug in wxGrid (outer regions). You must
    not to maths with update regions within
    an scroll related OnPaint(). Everything
    else is allowed.

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

24 years agofixed divide by zero exception when layouting justified text
Václav Slavík [Tue, 22 Feb 2000 20:09:27 +0000 (20:09 +0000)] 
fixed divide by zero exception when layouting justified text

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

24 years agoone of error messages had way too much spaces in it
Václav Slavík [Tue, 22 Feb 2000 20:09:04 +0000 (20:09 +0000)] 
one of error messages had way too much spaces in it

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

24 years agobetter documented wxListCtrl::GetItem (it was absolutely unclear how to use it)
Václav Slavík [Tue, 22 Feb 2000 20:08:16 +0000 (20:08 +0000)] 
better documented wxListCtrl::GetItem (it was absolutely unclear how to use it)

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

24 years ago1. wxGridCellEditor::SetSize needs to use the wxSIZE_ALLOW_MINUS_ONE
Robin Dunn [Tue, 22 Feb 2000 20:02:48 +0000 (20:02 +0000)] 
1. wxGridCellEditor::SetSize needs to use the wxSIZE_ALLOW_MINUS_ONE
flag otherwise the choice editor will not move to row 1, (the wxRect
given has a -1 y value.)

2. I fixed wxGridCellChoiceEditor::BeginEdit to not only set the
current value into the text field, but also to make it the current
selection in the dropdown.

3. EndEdit was getting called twice for each cell when you leave it
with the TAB or ENTER.  I commented out a call to SaveEditControlValue
in SetCurrentCell to take care of this.  It shouldn't hurt anything
since SaveEditControlValue is also called within the
EnableCellEditControl(FALSE) which gets called next.  If this causes
no problems for anybody it can be removed entirely.

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

24 years agoAVI file playing on Windows is working
Guilhem Lavaux [Tue, 22 Feb 2000 18:20:46 +0000 (18:20 +0000)] 
AVI file playing on Windows is working
Many fixes

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

24 years agoCompilation fixes
Stefan Neis [Tue, 22 Feb 2000 17:25:06 +0000 (17:25 +0000)] 
Compilation fixes

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

24 years agoadded
Karsten Ballüder [Tue, 22 Feb 2000 17:23:26 +0000 (17:23 +0000)] 
added

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

24 years agoGetSubcontrols now returns a reference to an Arraylong
David Webster [Tue, 22 Feb 2000 17:19:38 +0000 (17:19 +0000)] 
GetSubcontrols now returns a reference to an Arraylong

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

24 years agono message
David Webster [Tue, 22 Feb 2000 17:11:02 +0000 (17:11 +0000)] 
no message

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

24 years agoadded combobox editor
Vadim Zeitlin [Tue, 22 Feb 2000 16:57:12 +0000 (16:57 +0000)] 
added combobox editor

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

24 years agocolumn autosizing added
Vadim Zeitlin [Tue, 22 Feb 2000 16:03:54 +0000 (16:03 +0000)] 
column autosizing added

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

24 years ago SetSelection() in wxNotebook now sets the focus,
Robert Roebling [Tue, 22 Feb 2000 15:29:59 +0000 (15:29 +0000)] 
  SetSelection() in wxNotebook now sets the focus,
  SPACE in wxListCtrl now sends Activate in multiple sel mode

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

24 years ago1. corrected bug with LIST_ITEM_ACTIVATED being sent even if second click in
Vadim Zeitlin [Tue, 22 Feb 2000 15:22:21 +0000 (15:22 +0000)] 
1. corrected bug with LIST_ITEM_ACTIVATED being sent even if second click in
   dbl click was on another item
2. moved private classes from listctrl.h -> listctrl.cpp
3. made sample messages include the item index

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

24 years agoadded renderers/editors for long/float, not fully tested yet, but seems to
Vadim Zeitlin [Tue, 22 Feb 2000 14:29:41 +0000 (14:29 +0000)] 
added renderers/editors for long/float, not fully tested yet, but seems to
work - see the demo in the (updated) sample

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

24 years ago dbbrowse.cpp dbbrowse.h
Mark Johnson [Tue, 22 Feb 2000 13:00:06 +0000 (13:00 +0000)] 
  dbbrowse.cpp dbbrowse.h

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

24 years agodon't draw cell highlight over the cell editor (improves wxGCBoolEditor appearance
Vadim Zeitlin [Tue, 22 Feb 2000 11:08:17 +0000 (11:08 +0000)] 
don't draw cell highlight over the cell editor (improves wxGCBoolEditor appearance

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

24 years ago dbbrowse.cpp dbbrowse.h de/dbbrowse.mo de/dbbrowse.po
Mark Johnson [Tue, 22 Feb 2000 10:53:40 +0000 (10:53 +0000)] 
  dbbrowse.cpp dbbrowse.h de/dbbrowse.mo de/dbbrowse.po

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

24 years ago1. wxMenuBar::FindMenu() made "const"
Vadim Zeitlin [Tue, 22 Feb 2000 10:17:32 +0000 (10:17 +0000)] 
1. wxMenuBar::FindMenu() made "const"
2. documented it
3. documented recent change to wxYield()

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

24 years agoattempt at HP-UX compilation fix
Vadim Zeitlin [Tue, 22 Feb 2000 10:09:27 +0000 (10:09 +0000)] 
attempt at HP-UX compilation fix

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

24 years agoadded wxLog::Suspend/Resume and wxYield() uses them now so that it won't flush
Vadim Zeitlin [Tue, 22 Feb 2000 10:00:29 +0000 (10:00 +0000)] 
added wxLog::Suspend/Resume and wxYield() uses them now so that it won't flush
the messages any more

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

24 years agoremoved some default value for wxGrid compatibility ctor resolving ambiguity of writi...
Vadim Zeitlin [Tue, 22 Feb 2000 09:56:22 +0000 (09:56 +0000)] 
removed some default value for wxGrid compatibility ctor resolving ambiguity of writing wxGrid(this, -1)

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

24 years agomoved wxMenuBar::FindMenu(title) from MSW to common code
Vadim Zeitlin [Tue, 22 Feb 2000 09:53:55 +0000 (09:53 +0000)] 
moved wxMenuBar::FindMenu(title) from MSW to common code

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

24 years agoMoved the wxDialog BringWindowToFront fix to Show because it happens in
Julian Smart [Tue, 22 Feb 2000 08:54:05 +0000 (08:54 +0000)] 
Moved the wxDialog BringWindowToFront fix to Show because it happens in
modeless dialogs too, if other windows have been disabled.

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

24 years agono message
David Webster [Tue, 22 Feb 2000 05:34:42 +0000 (05:34 +0000)] 
no message

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

24 years agoAdded view menu items to toggle row and col drag-resizing.
Michael Bedward [Tue, 22 Feb 2000 04:06:58 +0000 (04:06 +0000)] 
Added view menu items to toggle row and col drag-resizing.
Removed setting of cell background colour for the moment.

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

24 years agoAdded functions to enable/disable drag-resizing of rows and cols.
Michael Bedward [Tue, 22 Feb 2000 03:51:43 +0000 (03:51 +0000)] 
Added functions to enable/disable drag-resizing of rows and cols.

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

24 years ago Removed some debug code.
Robert Roebling [Tue, 22 Feb 2000 00:01:03 +0000 (00:01 +0000)] 
  Removed some debug code.

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

24 years agoforgot to uncomment a few things
Robin Dunn [Mon, 21 Feb 2000 23:22:40 +0000 (23:22 +0000)] 
forgot to uncomment a few things

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

24 years agoAdded ability for tables, grids, editors and renderers to handle nonstring data.
Robin Dunn [Mon, 21 Feb 2000 23:17:40 +0000 (23:17 +0000)] 
Added ability for tables, grids, editors and renderers to handle nonstring data.

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

24 years agoadded wxPython control files and a few changes
Ron Lee [Mon, 21 Feb 2000 23:02:25 +0000 (23:02 +0000)] 
added wxPython control files and a few changes

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

24 years agoadded PYTHON_DIST for creating Debian source
Ron Lee [Mon, 21 Feb 2000 22:57:54 +0000 (22:57 +0000)] 
added PYTHON_DIST for creating Debian source

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

24 years agoEnd of stream reading stuff
Guillermo Rodriguez Garcia [Mon, 21 Feb 2000 22:18:15 +0000 (22:18 +0000)] 
End of stream reading stuff

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

24 years agoadded typcast needed for VC++ 6
Robin Dunn [Mon, 21 Feb 2000 22:09:03 +0000 (22:09 +0000)] 
added typcast needed for VC++ 6

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

24 years agoremoved redundant #! line
Ron Lee [Mon, 21 Feb 2000 20:33:10 +0000 (20:33 +0000)] 
removed redundant #! line

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

24 years agoallow '=' inside a value on command line.
Ron Lee [Mon, 21 Feb 2000 20:29:12 +0000 (20:29 +0000)] 
allow '=' inside a value on command line.
return error code from calling makefiles in lower 8 bits so any
Makefile calling build.py will correctly interpret fatal build
errors.

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

24 years agomodified burnt_name to use only soname instead of full version name
Ron Lee [Mon, 21 Feb 2000 20:11:03 +0000 (20:11 +0000)] 
modified burnt_name to use only soname instead of full version name

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

24 years agoadded "bugs table" which will show non string data support when it's ready
Vadim Zeitlin [Mon, 21 Feb 2000 18:34:30 +0000 (18:34 +0000)] 
added "bugs table" which will show non string data support when it's ready

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

24 years agotiny fixes
Sylvain Bougnoux [Mon, 21 Feb 2000 18:13:09 +0000 (18:13 +0000)] 
tiny fixes

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

24 years agoCheck multiple selection :-)
Sylvain Bougnoux [Mon, 21 Feb 2000 18:08:07 +0000 (18:08 +0000)] 
Check multiple selection :-)

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

24 years agoadded SetColMinimalWidth()
Vadim Zeitlin [Mon, 21 Feb 2000 18:01:45 +0000 (18:01 +0000)] 
added SetColMinimalWidth()

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

24 years ago Slightly better GC pooling,
Robert Roebling [Mon, 21 Feb 2000 18:01:02 +0000 (18:01 +0000)] 
  Slightly better GC pooling,
  Implemented automatic updateregion clipping as MSW does.
  Made drawing sample a bit saner.

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

24 years agomake it possible to specify the virtual table size (this makes it easier to
Vadim Zeitlin [Mon, 21 Feb 2000 17:37:07 +0000 (17:37 +0000)] 
make it possible to specify the virtual table size (this makes it easier to
see that the memory taken by the grid doesn't depend on it with top)

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

24 years agoa couple of terrible typos fixed
Vadim Zeitlin [Mon, 21 Feb 2000 17:25:43 +0000 (17:25 +0000)] 
a couple of terrible typos fixed

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

24 years agoEliminate apparently unnecessary updates in SetScrollbars.
Stefan Neis [Mon, 21 Feb 2000 17:10:39 +0000 (17:10 +0000)] 
Eliminate apparently unnecessary updates in SetScrollbars.

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

24 years agoLeft() -> BeforeFirst()
Vadim Zeitlin [Mon, 21 Feb 2000 16:48:03 +0000 (16:48 +0000)] 
Left() -> BeforeFirst()

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

24 years agovirtualized m_row/col height/widths arrays
Vadim Zeitlin [Mon, 21 Feb 2000 16:39:23 +0000 (16:39 +0000)] 
virtualized m_row/col height/widths arrays

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

24 years agoadded wxCURSOR_DEFAULT to others (not GTK only), hide the current selection in
Vadim Zeitlin [Mon, 21 Feb 2000 14:35:44 +0000 (14:35 +0000)] 
added wxCURSOR_DEFAULT to others (not GTK only), hide the current selection in
the tree ctrl during dnd

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

24 years agoMichaels change to OnEraseBackground()
Vadim Zeitlin [Mon, 21 Feb 2000 14:31:55 +0000 (14:31 +0000)] 
Michaels change to OnEraseBackground()

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

24 years ago1. removed 3d border, but
Vadim Zeitlin [Mon, 21 Feb 2000 14:27:36 +0000 (14:27 +0000)] 
1. removed 3d border, but
 a) made DrawCellHighlight() virtual to allow overriding it in user code
 b) fixed bug with grid lines painting over the border, so it should really
    work now
2. char events to readonly cells are Skip()ped which makes Alt-X work for
   them too

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

24 years agoinclude
Vadim Zeitlin [Mon, 21 Feb 2000 14:25:20 +0000 (14:25 +0000)] 
include

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

24 years agoa couple of wors about wxObjArray::Index()
Vadim Zeitlin [Mon, 21 Feb 2000 14:19:02 +0000 (14:19 +0000)] 
a couple of wors about wxObjArray::Index()

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

24 years ago Implemented MSW's paint region clipping, but
Robert Roebling [Mon, 21 Feb 2000 14:16:32 +0000 (14:16 +0000)] 
  Implemented MSW's paint region clipping, but
   it exposed some bug in GTK's guffaw stuff.
  Implmented GC pooling.
  Implemented Corrcet mixing of pain region clipping,
    user clipping and masked bitmap clipping.
  Minor other corrections.

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

24 years ago Set logical functions to wxCOPY, no -1.
Robert Roebling [Mon, 21 Feb 2000 14:13:08 +0000 (14:13 +0000)] 
  Set logical functions to wxCOPY, no -1.

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

24 years ago Make use of FillRect() when possible.
Robert Roebling [Mon, 21 Feb 2000 14:12:20 +0000 (14:12 +0000)] 
  Make use of FillRect() when possible.

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

24 years agowxUSE_NEW_GRID implies wxUSE_GRID
Vadim Zeitlin [Mon, 21 Feb 2000 13:19:03 +0000 (13:19 +0000)] 
wxUSE_NEW_GRID implies wxUSE_GRID

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

24 years agocompile fix for wxUSE_STD_IOSTREAM case
Vadim Zeitlin [Mon, 21 Feb 2000 13:17:46 +0000 (13:17 +0000)] 
compile fix for wxUSE_STD_IOSTREAM case

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

24 years ago browsedb.cpp dbgrid.cpp dbtree.cpp dlguser.cpp de/dbbrowse.mo
Mark Johnson [Mon, 21 Feb 2000 12:31:07 +0000 (12:31 +0000)] 
browsedb.cpp dbgrid.cpp dbtree.cpp dlguser.cpp de/dbbrowse.mo
de/dbbrowse.po de/xget.cfg

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

24 years ago xget.cfg
Mark Johnson [Mon, 21 Feb 2000 12:30:20 +0000 (12:30 +0000)] 
  xget.cfg

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

24 years agoChanged system colours for better default display of wxGrid. Please revert
Michael Bedward [Mon, 21 Feb 2000 09:53:16 +0000 (09:53 +0000)] 
Changed system colours for better default display of wxGrid.  Please revert
this if it causes problems with other things and let me know on wxwin-dev.

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

24 years agoFixed (I hope) the wxDialog reactivation bug
Julian Smart [Mon, 21 Feb 2000 09:42:31 +0000 (09:42 +0000)] 
Fixed (I hope) the wxDialog reactivation bug

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

24 years agomodif time of FS inet and FS mem files is not wxDateTime::Now, not wxDateTime::Today
Václav Slavík [Mon, 21 Feb 2000 08:37:46 +0000 (08:37 +0000)] 
modif time of FS inet and FS mem files is not wxDateTime::Now, not wxDateTime::Today

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

24 years agowxGTK compilation fix (wxFrame::Show call without argument)
Václav Slavík [Mon, 21 Feb 2000 08:37:39 +0000 (08:37 +0000)] 
wxGTK compilation fix (wxFrame::Show call without argument)

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

24 years ago browsedb.h dbbrowse.cpp dbbrowse.h dbgrid.h dbtree.h
Mark Johnson [Mon, 21 Feb 2000 08:05:13 +0000 (08:05 +0000)] 
  browsedb.h dbbrowse.cpp dbbrowse.h dbgrid.h dbtree.h
  dlguser.cpp dlguser.h doc.cpp doc.h pgmctrl.h de/dbbrowse.mo
  de/dbbrowse.po

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

24 years agoFrame and Window coding
David Webster [Mon, 21 Feb 2000 05:12:34 +0000 (05:12 +0000)] 
Frame and Window coding

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

24 years agowxImage::Rotate corrections added; docview improvements (menus updated properly)
Julian Smart [Sun, 20 Feb 2000 12:40:08 +0000 (12:40 +0000)] 
wxImage::Rotate corrections added; docview improvements (menus updated properly)

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

24 years ago configure changes
Robert Roebling [Sun, 20 Feb 2000 10:23:06 +0000 (10:23 +0000)] 
  configure changes
  grid 3d changes

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

24 years ago browsedb.cpp dbtree.cpp
Mark Johnson [Sun, 20 Feb 2000 10:04:48 +0000 (10:04 +0000)] 
  browsedb.cpp dbtree.cpp

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

24 years ago help.de/compiler.htm help.de/dbbrowse.htm help.de/getcol.htm
Mark Johnson [Sun, 20 Feb 2000 07:06:51 +0000 (07:06 +0000)] 
  help.de/compiler.htm help.de/dbbrowse.htm help.de/getcol.htm
  help.de/getcolsh.htm help.de/icons.htm help.de/picgrams.htm
  help.de/problems.htm help.de/remstar.htm help.de/sample.htm
  help.de/startprm.htm help.de/todo.htm help.de/wxdb.htm
  help.de/wxtable.htm help.std/compiler.htm
  help.std/dbbrowse.htm help.std/getcol.htm
help.std/getcolsh.htm help.std/icons.htm help.std/picgrams.htm
  help.std/problems.htm help.std/remstar.htm help.std/sample.htm
  help.std/startprm.htm help.std/todo.htm help.std/wxdb.htm
  help.std/wxtable.htm

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

24 years agoOpps. Sorry - typo fixes
Guillermo Rodriguez Garcia [Sun, 20 Feb 2000 02:52:01 +0000 (02:52 +0000)] 
Opps. Sorry - typo fixes

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

24 years agoDon't try to translate empty strings (just a cosmetical issue - it should
Guillermo Rodriguez Garcia [Sun, 20 Feb 2000 01:08:40 +0000 (01:08 +0000)] 
Don't try to translate empty strings (just a cosmetical issue - it should
not fail anyway, but it is cleaner this way)

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

24 years agoProcess all pending events before starting to delete pending objects -
Guillermo Rodriguez Garcia [Sun, 20 Feb 2000 01:04:34 +0000 (01:04 +0000)] 
Process all pending events before starting to delete pending objects -
specially important for wxPostEvent to work OK.

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

24 years agoSolved bug which was breaking richedit ctrls for non-unicode builds on some compilers.
Guillermo Rodriguez Garcia [Sun, 20 Feb 2000 01:03:15 +0000 (01:03 +0000)] 
Solved bug which was breaking richedit ctrls for non-unicode builds on some compilers.
Fixed some small non-fatal bugs like missing c_str() and the like.

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

24 years agoFixed these:
Guillermo Rodriguez Garcia [Sat, 19 Feb 2000 06:49:20 +0000 (06:49 +0000)] 
Fixed these:

text.cpp:588: passing `const char *' as argument 1 of
`wxWindowBase::SetClientData(void *)' discards qualifiers
text.cpp:592: passing `const char *' as argument 1 of
`wxWindowBase::SetClientData(void *)' discards qualifiers

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

24 years agoSolved multiple memory leaks.
Guillermo Rodriguez Garcia [Sat, 19 Feb 2000 04:22:08 +0000 (04:22 +0000)] 
Solved multiple memory leaks.
Added some comments (on-screen, not to the code)
Inverted the original XBM file.

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

24 years agofixed bug in wxMemoryInput/OutputStream::OnSysRead/Write that caused incorrect LastRe...
Václav Slavík [Sat, 19 Feb 2000 00:55:10 +0000 (00:55 +0000)] 
fixed bug in wxMemoryInput/OutputStream::OnSysRead/Write that caused incorrect LastRead reports

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

24 years agoripper_main.o does not belong to HelpGen
Václav Slavík [Sat, 19 Feb 2000 00:55:05 +0000 (00:55 +0000)] 
ripper_main.o does not belong to HelpGen

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

24 years agono message
David Webster [Fri, 18 Feb 2000 23:35:39 +0000 (23:35 +0000)] 
no message

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

24 years agoadded dnd support to generic wxTreeCtrl
Vadim Zeitlin [Fri, 18 Feb 2000 22:12:58 +0000 (22:12 +0000)] 
added dnd support to generic wxTreeCtrl

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

24 years agotoggle button doesn't send event if mouse is released outside of the
Robin Dunn [Fri, 18 Feb 2000 21:21:04 +0000 (21:21 +0000)] 
toggle button doesn't send event if mouse is released outside of the
button.

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

24 years agofixed some typos
Robin Dunn [Fri, 18 Feb 2000 21:01:27 +0000 (21:01 +0000)] 
fixed some typos

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

24 years agoauto arrays can't be initialized - compile error for HP-UX
Vadim Zeitlin [Fri, 18 Feb 2000 20:45:56 +0000 (20:45 +0000)] 
auto arrays can't be initialized - compile error for HP-UX

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

24 years agoHP-UX recommendations added
Vadim Zeitlin [Fri, 18 Feb 2000 20:40:38 +0000 (20:40 +0000)] 
HP-UX recommendations added

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

24 years agowx-config is configurable...
Robin Dunn [Fri, 18 Feb 2000 20:28:36 +0000 (20:28 +0000)] 
wx-config is configurable...

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

24 years agomore long/double to int conversion warnings from HP-UX logs fixed
Vadim Zeitlin [Fri, 18 Feb 2000 20:20:15 +0000 (20:20 +0000)] 
more long/double to int conversion warnings from HP-UX logs fixed

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

24 years ago* ESD works in full duplex (theorically)
Guilhem Lavaux [Fri, 18 Feb 2000 19:05:27 +0000 (19:05 +0000)] 
* ESD works in full duplex (theorically)

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

24 years ago* Some more missing files. MMBoard tested (wave files) on MSVC 5
Guilhem Lavaux [Fri, 18 Feb 2000 19:00:52 +0000 (19:00 +0000)] 
* Some more missing files. MMBoard tested (wave files) on MSVC 5

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

24 years ago* Make some more work on the video for Linux (Unix hopefully as I use XAnim)
Guilhem Lavaux [Fri, 18 Feb 2000 18:36:00 +0000 (18:36 +0000)] 
* Make some more work on the video for Linux (Unix hopefully as I use XAnim)
* Added some datas for Windows

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

24 years ago help sample useful again
Robert Roebling [Fri, 18 Feb 2000 16:57:47 +0000 (16:57 +0000)] 
  help sample useful again

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

24 years agoAdded missing Unref() in wxImage::Create()
Guillermo Rodriguez Garcia [Fri, 18 Feb 2000 16:15:17 +0000 (16:15 +0000)] 
Added missing Unref() in wxImage::Create()

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

24 years agoSolved a typo related to masks. Was setting *all* pixels in the mask
Guillermo Rodriguez Garcia [Fri, 18 Feb 2000 16:10:11 +0000 (16:10 +0000)] 
Solved a typo related to masks. Was setting *all* pixels in the mask
to rgb(0,0,0) - hence no mask at all :-) Corrected related OS/2 code
as well (this is where the typo was introduced in the first place)

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