Changelogs

Overview

These changelogs reflect the history of all files in the Subversion repository. The changelog has been generated at 2016-05-09 08:38:04

Changes per page:

25 50 100 250 500 1000 2000

Changelog for wxWidgets (70435 changes):

2002-08-10 11:24 RR, revision 16440

Fix for Unicode conversion.

2002-08-10 09:58 SC, revision 16439

corrected ::Clear

2002-08-10 09:45 SC, revision 16438

added new implementation for editable and brought selection behaviour in synch

2002-08-10 09:41 SC, revision 16437

implemented clipping for controls via callback (classic only)

2002-08-10 09:38 SC, revision 16436

window clipper added

2002-08-10 09:37 SC, revision 16435

added control action for redraws (classic only)

2002-08-10 09:36 SC, revision 16434

added clipping code for controls

2002-08-09 19:29 RD, revision 16433

Allow loading xrc resources from a string

2002-08-09 18:35 JS, revision 16432

Delete help text entry before adding new one, else you can't reset it.

2002-08-09 09:35 JS, revision 16431

Added brief explanation about building RPMs

2002-08-08 23:02 RD, revision 16430

More tool script tweaks

2002-08-08 22:34 RD, revision 16429

Added pyshell and pycrust scripts

2002-08-08 22:33 RD, revision 16428

Some little tweaks to PyCrust

2002-08-08 22:08 RD, revision 16427

new SWIGged files for wxGTK

2002-08-08 21:44 RR, revision 16426

Changed wxStat, wxAccess and wxOpen to no longer being just a define so that the signature is using wxChar under Unicode under Unix just as it does under Unicode under Mac. This required some modification in various places, but should make debugging a little easier, among others.

2002-08-08 21:44 RD, revision 16425

PyCrust updates from their CVS.

2002-08-08 21:41 RR, revision 16424

Adapted to Unicode compilation.

2002-08-08 21:40 RR, revision 16423

Hopefully corrected conversion buffer size.

2002-08-08 20:14 RD, revision 16422

Make batch files for the tool scripts, and other related changes for win32.

2002-08-08 19:11 RD, revision 16421

Fixes for Bug #592758

2002-08-08 18:32 RD, revision 16420

Updated version and other minor tweaks

2002-08-08 18:29 RD, revision 16419

New wxActiveX code

2002-08-08 18:28 RD, revision 16418

Moved tools to be a Python package in wxPython.tools, added scripts to import and launch each tool.

2002-08-08 18:26 RR, revision 16417

Compile fix.

2002-08-08 18:21 VS, revision 16416

added RPM spec file

2002-08-08 18:21 VS, revision 16415

unified archive naming to name-version-arch

2002-08-08 18:21 VS, revision 16414

tex2rtf: fixes to makefile.unx to make rpm spec file possible

2002-08-08 18:21 VS, revision 16413

tex2rtf fixes: removed missing files from src.rsp

2002-08-08 10:11 JS, revision 16412

Applied patch [ 579219 ] wxNotebook:SetPadding added This allows changing the padding of the icons and text in the tab of a wxNotebook for wxGTK. Since the container in the tab is only a horizontal container only the width component is used. Negative values are acceptable so no checks were made. It now defaults to a padding of 0 on the sides and 1 in between the icon and label, looks good for a few "themes" I tried. Note: Unfortunately there is no function to set the padding on the left or right side of a widget. gtk_box_set_child_packing sets padding on BOTH sides of a widget so you'd get double the spacing between an icon and the label. To get around this, the icon (if there was one) is removed and added back. That way the icon will provide the padding on the left and the label will provide the padding between and to the right. It looks nice for all sizes. The gtk_container_set_border_width unforuntately only adds borders to ALL sides equally. A simple check is to add m_notebook->SetPadding in one in the spinctrl callback in the controls sample. (set appropriate range too -10,20). Note that the tab sizes change to fit the width of the panel, if appropriate, and so the spacing between the icon and label changes accordingly. This isn't a bug, but it does look weird as you scan up and down the spacing (which nobody would normally do). I also changed all wxGtkNotebookPage variables to nb_page so that "int page" would be used to mean the page number. Just cosmetic for consistency with the rest of the functions that were already like that.

2002-08-08 10:04 JS, revision 16411

Applied patch [ 584057 ] Fixes calculation bug in wxThread::Sleep There's a problem in src/mac/thread.cpp function wxThread::Sleep when CLOCKS_PER_SEC is not 1000. The amount-to-sleep code doesn't take into account this value. Due to this when I did Sleep(1000) it was sleeping a fraction of a second because on my Mac CLOCKS_PER_SEC is 60. This patch fixes it. Dimitri Schoolwerth (dimitrishortcut)

2002-08-08 10:00 JS, revision 16410

Applied patch [ 588140 ] User Scaling of Rotated Text on wxGTK The effect of wxDC::SetUserScale() on wxDC::DrawRotatedText() is to scale the text **twice**. The code is in src/gtk/dcclient.cpp The first scaling operation occurs when choosing the GTK font size (as happens for wxDC::DrawText()). The rotated text is scaled a second time when blitting the rotated text bitmap to the DC, in the functions XLOG2DEV(x + dstX) and YLOG2DEV(y + dstY). The supplied patch moves the rotated bitmap co-ords (dstX, dstY) outside of the LOG2DEV functions. bryan cole (bryancole)

2002-08-08 09:57 JS, revision 16409

Applied patch [ 587450 ] Scoped Smart pointers and docs By Jesse Lovelace (thementat)

2002-08-08 09:46 JS, revision 16408

Applied patch [ 589903 ] Update doc for CW/wxMSW install This patch updates the CW section in docs/msw/install.txt for the development (2.3.3) branch. It fixes a couple typos and clarifies how to use the minimal project file as a template for other projects. Igor Mikolic-Torreira igormt@alumni.caltech.edu

2002-08-08 09:44 JS, revision 16407

Applied patch [ 587723 ] Update to cw.rsp file I've updated the file so it captures all the files that are unique to the wxMSW + CW combination. Even though not all of the samples have CW project files, all the samples are listed in the rsp. That way if more samples get project files prior to release 2.3.x or 2.4, there will be no need to modify this file. I did, however, remove all of the util sub-directories from cw.rsp because none of the util sub-directories have any CW project files (and I don't foresee adding any ;) Igor Mikolic-Torreira igormt@alumni.caltech.edu

2002-08-08 09:37 JS, revision 16406

Applied [ 587500 ] Update CW project file for wxMSW This patch updates the CW project file for building wxMSW. It patches the file src/wxWindowsW7.xml on the development branch. It does the following: (1) adds the file src/common/msgout.cpp to the build. (2) moves popupwin.cpp ahead of sub-libraries in the link order for linking the library (this is just paranoia on my part ;) Igor Mikolic-Torreira igormt@alumni.caltech.edu

2002-08-08 09:35 JS, revision 16405

Applied patch [ 587454 ] CW-related wx/wxchar.h fix This fixes the problem in include/wx/wxchar.h with including <wchar.h> for CW reported by Andreas Simanowski. The current version does not work with CW Win32 builds. The fix suggested by Andreas is incorrect, because it will break the wxMAC CW builds. The purpose of conditionals starting at line 77 is to correctly handle the various compilers. The fundamental problem with the existing code is that it begins by conditioning on __WIN32__. This is wrong, and makes it hard to handle compilers that work on more than one OS (such as CW). Instead the conditionals should be done purely on compilers. Each compiler can then set things appropriately. If a particular compiler works on more than one OS but has different needs on each OS, then this can be handled within the code for that compiler. The attached patch removes the top level conditional on __WIN32__ and restructures the remainder as a series of conditionals on individual compilers. Igor Mikolic-Torreira igormt@alumni.caltech.edu

2002-08-08 09:24 JS, revision 16404

Applied patch [ 590031 ] Slider: Events must be enabled earlier The current wxSlider - implementation gives a gtk-warning about not being able to find an event handler. This is because the first call of GtkEnableEvents has to happen a few lines earlier. The patch fixes this.

2002-08-08 09:21 JS, revision 16403

Applied patch [ 591998 ] EventHandler chain incorrectly updated

2002-08-08 09:15 JS, revision 16402

Applied patch [ 590247 ] Fix bad calculation of listctrl update. In wxGenericListCtrl when removing single items a call to RefreshAfter would cause bad things to happen in GTK/X11. It would under certain circumstances put Xlib into an exponential memory and cpu usage mode. Causing eventual core dump but not before using all memory and swap. The problem is that RefreshAfter is passing a negative height rectangle refresh to GTK/X11. This stems from a mixture of using scrolled and unscrolled values to calculate the update region. This patch fixes the problem... by transforming to scrolled values earlier. And also adds one optimization to not update when the item is below the visible area. Tested on GTK.

2002-08-08 09:10 JS, revision 16401

Applied patch [ 592363 ] Owner Draw Round 2 fixes This patch fixes the following items in the owner draw code: * When an item is disabled, yet highlighted, the code will now retrieve the user's system settings for greyed-out text and use that color. Previously, the code had continued to print the disabled text with an embossed effect, which looked bad when the item was highlighted. * Menu formatting, such as hot-key underlining (example, "&Open"), has been fixed. * Measurements and alignments with accelerators/hot-keys has been fixed.

2002-08-08 09:00 JS, revision 16400

Applied [ 590985 ] fix for radiobox under motif

2002-08-08 08:54 JS, revision 16399

Applied patch [ 592063 ] generic notebook does not OnSelChanging Misc other mods

2002-08-08 08:51 JS, revision 16398

Removed bogus default parameters, applying patch [ 592492 ] motif, solaris 8, gcc 3.1 build failure

2002-08-07 21:06 RD, revision 16397

Typo fixes

2002-08-07 21:06 RD, revision 16396

Bug fix

2002-08-07 21:05 RD, revision 16395

bug fix

2002-08-07 20:21 JS, revision 16394

Added error directive for MSW since no longer needed.

2002-08-07 17:35 RR, revision 16393

Added support for outlines printing under wxGTK. I still have to figure out how to do scaling right, the current values are guesswork.

2002-08-07 17:34 RR, revision 16392

Compile fix for Unicode.

2002-08-07 15:56 JS, revision 16391

Updated file list

2002-08-07 15:50 JS, revision 16390

Added scripts to make Tex2RTF distribution on Unix

2002-08-07 15:48 JS, revision 16389

Added files to Tex2RTF file list

2002-08-07 15:24 JS, revision 16388

Added licence docs for Tex2RTF

2002-08-07 09:56 JS, revision 16387
  • D /wxWidgets/trunk/utils/tex2rtf/distrib/tex2rtfversion.txt

Removed temporary file

2002-08-07 09:56 JS, revision 16386

Added files for creating independent Tex2RTF distributions

2002-08-07 08:56 MBN, revision 16385

Fix makefile.g95 for make 3.77

2002-08-07 07:56 JS, revision 16384

Added ProcessIdle virtual function

2002-08-06 20:51 RR, revision 16383

Small fix for Pango printing with bitmaps.

2002-08-06 19:54 MBN, revision 16382

Patch [ 588732 ] makes wxRB_GROUP/radiobuttons working from Marcin Wojdyr (wojdyr) Applied with some modifications (remove buttons from the chain on destruction, or the program will segfault).

2002-08-06 19:14 RR, revision 16381

Compile fix.

2002-08-06 18:58 RR, revision 16380

Further code for Pango fonts (work now) and some code for Pango prining. Doesn't work..

2002-08-06 16:41 RR, revision 16379

Lots of work to set PangoFontDescription as the native font info data. WIP.

2002-08-06 03:35 DW, revision 16378

Lots of OS/2 updates

2002-08-06 03:34 DW, revision 16377

Some OS/2 Updates

2002-08-05 18:49 VZ, revision 16376

added a more convenient version of wxFileType::GetOpenCommand()

2002-08-05 18:04 RR, revision 16375

Lots of Unix/Unicode compile fixes, some of which are just #ifdef 0 such as the wxExecute calls in gdcps.cpp.

2002-08-05 18:00 GD, revision 16374

added missing include file for ProjectBuilder (Mac OS X)

2002-08-05 17:59 RR, revision 16373

Lots of updates for Unicode and GTK 2.0 support.

2002-08-05 17:57 RR, revision 16372

Added various MACROS for converting strings back and forth in the different ansi/unicode/gtk mode/versions.

2002-08-05 17:56 RR, revision 16371

Compile fix (include order) for Unicode under Unix.

2002-08-05 17:56 RR, revision 16370

Miserable hack around problem when shrinking a scrolled window with child windows when it was maxiamally scrolled.

2002-08-05 15:53 DW, revision 16369

OS/2 VA needs to include time.h to get the time calls.

2002-08-05 15:50 DW, revision 16368

FALSE, not false

2002-08-05 03:15 DW, revision 16367

Lots of fixes for common dialogs, radioboxes, static text, checkboxes and so on.

2002-08-05 03:13 DW, revision 16366

Font fix for OS/2 common control creation

2002-08-05 03:12 DW, revision 16365

Fixes for common dialogs

2002-08-04 19:03 JS, revision 16364

Applied patch from Benjamin Williams to improve wxMenu ownerdraw behaviour

2002-08-04 15:40 VS, revision 16363

wxCmdLineParser's output goes to stderr, not message box, under Unix

2002-08-04 15:40 VS, revision 16362

no more hacks needed in wxrc now that wxMessageOutput works...

2002-08-04 14:39 GD, revision 16361

updated xml project file with latest changes (spinctrl, display, msgout, ...)

2002-08-04 13:02 GD, revision 16360

add spinctrl header for wxMac

2002-08-04 13:01 GD, revision 16359

only set focus on textctrl item if it exists (exists if combo box is editable)

2002-08-04 08:59 SC, revision 16358

added border clipping

2002-08-03 23:30 MBN, revision 16357

Mention wxMessageOutput in changes.txt wxMessageOutputLog now available in all ports

2002-08-03 21:05 SC, revision 16356

added option for getting visible region w/o children clipped, added to redrawing of control code

2002-08-03 21:03 SC, revision 16355

added option for getting visible region w/o children clipped

2002-08-02 18:26 MBN, revision 16354

Documented wxMotif changes

2002-08-02 17:55 MBN, revision 16353

Fixed yet another error in my wxCmdLineParser mdifications.

2002-08-02 15:46 SC, revision 16352

corrected scrolling problems for controls, switched to separate wxSpinCtrl implementation, both wxComboBox and wxSpinCtrl now have proper parenting for their members

2002-08-02 15:44 SC, revision 16351

corrected scrolling problems for controls, switched to wxSpinCtrl

2002-08-02 15:41 SC, revision 16350

added a MacUpdateDimensions callback for DoMoveWindow

2002-08-02 15:36 SC, revision 16349

separate mac implementation

2002-08-02 15:33 SC, revision 16348

added a MacUpdateDimensions callback for DoMoveWindow

2002-08-02 15:30 SC, revision 16347

switch to a separate implementation for mac

2002-08-02 08:31 JS, revision 16346

Renamed internal GetClientWindow to GetClientAreaWindow so as not to clash with the MDI function of the same name

2002-08-02 08:16 MBN, revision 16345

Patch [ 584078 ] Misc samples fixes from Dimitri Schoolwerth Addresses: printf-format warinigs indentation/style unused variable warnings used wxID_ABOUT for about menu entry removed references to "minimal sample" in other samples some other misc warinigs

2002-08-01 20:00 JS, revision 16344

Applied [ 586524 ] wxVariant Enhancements.

2002-08-01 19:58 MBN, revision 16343

This is a quick hack: if there is no global wxMessageOutput instance, and there is a wxApp instance, call wxTheApp->DoInit() to initialize the global wxMessageOutput instance. The correct solution is to ensure that wxApp::DoInit is always called.

2002-08-01 19:55 MBN, revision 16342

Assert is there is no wxMessageOutput

2002-08-01 19:54 JS, revision 16341

Applied patch [ 588734 ] Makes ProcessIdle() virtual

2002-08-01 19:51 JS, revision 16340

Applied patch [ 589484 ] wxGenericListCtrl, fix for direct use.

2002-08-01 19:12 MBN, revision 16339

Patch [ 584078 ] Misc samples fixes from Dimitri Schoolwerth Addresses: printf-format warinigs indentation/style unused variable warnings used wxID_ABOUT for about menu entry removed references to "minimal sample" in other samples some other misc warinigs

2002-07-31 21:06 MBN, revision 16338

Fixed logic error

2002-07-31 20:44 MBN, revision 16337

Patch [ 588837 ] Fixes comment style in gsocket.* C files should countain C-style commensts, not C++.

2002-07-31 20:40 MBN, revision 16336

Regenerated files.lst after addition of listbase.h

2002-07-31 20:35 MBN, revision 16335

Refactored wxListBox code so that it correctly implements wxControlWithItems, and removed some duplicated code. Implemented wxCheckListBox using the same technique as wxGTK.

2002-07-31 02:51 RD, revision 16334

My RPM spec now uses the --enable-rpath

2002-07-31 02:50 RD, revision 16333

Added --enable-rpath=dir that will cause the -rpath linker commands to be output by wx-config --libs

2002-07-30 22:01 VS, revision 16332

fixed icons displaying in wxHtmlHelpFrame (somebody obviously didn't bother to check his changes...)

2002-07-30 21:20 MBN, revision 16331

Due to my previous commit, calling wxWindow::Create( ... wxSize(-1,-1) was causing a BadMatch error *trying to set width/height to 0).

2002-07-30 19:04 JS, revision 16330

Added wx/listbase.h with wxListCtrl types, so we can have wxGenericListCtrl available on all platforms

2002-07-30 16:14 JS, revision 16329

Must include wx/listctrl.h unfortunately, for now

2002-07-30 16:01 JS, revision 16328

More tweaks so wxGenericListCtrl only uses generic components

2002-07-30 15:38 DW, revision 16327

Installation file

2002-07-30 14:13 DW, revision 16326

os2 distribution response file

2002-07-30 11:56 DW, revision 16325

Weekly Updates

2002-07-29 21:05 MBN, revision 16324

Fixed my utnpaste error (thanks to Marcin Wojdyr

2002-07-29 20:34 MBN, revision 16323

w32api 2.0 will have shlwapi.h

2002-07-29 20:31 MBN, revision 16322

Under MSW and GTK the foreground and background colour for a blit from a monochrome bitmap are the text for/background colours. Until now motif used the pen and background brush colours. Now Motif behaviour matches MSW and GTK one.

2002-07-29 20:28 RD, revision 16321

Changes to attempt to use a private wxGTK

2002-07-29 20:25 MBN, revision 16320

Generate EVT_SPINCTRL_UPDATED for wxMotif, too

2002-07-29 20:02 RD, revision 16319

Added some rectangle based method overloads

2002-07-29 19:17 JS, revision 16318

Added wxComboBox to scroll test to demonstrate Mac problem

2002-07-29 18:29 VZ, revision 16317

fixed bug due to which all items in a virtual control stayed sometimes selected even after Clear()ing it

2002-07-29 12:27 RN, revision 16316

Import regex from tcl 8.4.5

2002-07-29 12:27 , revision 16315

This commit was manufactured by cvs2svn to create branch 'RXSPENCER'.

2002-07-29 12:27 RN, revision 16314

Tcl regex lib

2002-07-29 10:56 RN, revision 16313

Import regex from tcl 8.4.5

2002-07-29 10:56 , revision 16312

This commit was manufactured by cvs2svn to create branch 'RXSPENCER'.

2002-07-29 10:56 RN, revision 16311

Tcl regex lib

2002-07-29 04:32 DW, revision 16310

Slider Updates

2002-07-29 04:13 RL, revision 16309

The world should not end if a server has no peer. Let's return FALSE instead. GAddress_copy should copy truthfully, not mangle the result if things are going badly. An earlier incarnation of the above. Disable events before closing the socket, though just disabling them at all will do. This was the cause of the nasty 'crash on fail to bind' behaviour that people have been seeing.

2002-07-28 20:53 MBN, revision 16308

Take into account icon mask in wxStaticBitmap

2002-07-28 20:51 MBN, revision 16307

Check for NULL pointer

2002-07-28 20:50 MBN, revision 16306

Calss interface updates (wxMotif-only). Made wxCheckBox inherit from wxChekBoxBase. Corrected virtual function hiding in wxListBox. Made wxRadioBox inherit from wxRadioBoxBase.

2002-07-28 18:48 VS, revision 16305

ported characters escaping in menus to GTK+ 2.0 (it is now possible to have / in menu entries, unlike in case of GTK+ 1.2; and \ was fixed to work in 2.0)

2002-07-28 16:23 RR, revision 16304

New implementation of ShowFullScreen(). It works so well, it is hard to believe.

2002-07-28 13:33 MBN, revision 16303

Implemented wxSpinButton for wxMotif. Renamed generic wxSpinCtrl::DoGetBestClientSize to DoGetBestSize ( the "Client" appears to be a relic of the past ).

2002-07-28 10:17 RR, revision 16302

Implement SetFilterIndex

2002-07-28 10:16 RR, revision 16301

IMplement SetFilterINdex()

2002-07-27 22:28 VS, revision 16300

How to use MSLU with MSVC/nmake

2002-07-27 22:28 VS, revision 16299

MSLU clarifications

2002-07-27 22:27 VS, revision 16298

libunicows moved to sourceforge

2002-07-27 21:29 RD, revision 16297

SWIGged updates for wxGTK

2002-07-27 20:24 MBN, revision 16296

Added statline.h to wxMotif files

2002-07-27 20:14 MBN, revision 16295

Check for NULL before dereferencing

2002-07-27 20:13 MBN, revision 16294

Added DoSetSize and DoMoveWindow to generic wxStaticLine. Now it works with sizers.

2002-07-27 20:12 MBN, revision 16293

Rename wxGenericImageList to wxImageList in generic wxListCtrl, too.

2002-07-27 20:10 MBN, revision 16292

Changed wxMotif's wxWindow::Create so it does not call DoSetSize anymore; now calling wxWindow::SetSize should call wxWindow::DoMoveWindow. As a result composite controls should work with Motif, too.

2002-07-27 18:14 VS, revision 16291

added a section on when to delete global objects

2002-07-27 18:14 VS, revision 16290

fixed typo

2002-07-27 18:14 VS, revision 16289

1. clarified relation between XRC .xrs files and ZIPs 2. some minor additions to XRC docs

2002-07-27 07:03 JS, revision 16288

Corrected typo

2002-07-27 05:15 RL, revision 16287

minus one show stopper typo and a couple of warnings on mingw.

2002-07-26 22:09 VS, revision 16286

added wxADJUST_MINSIZE to XRC

2002-07-26 22:08 VS, revision 16285

fix for memory leak in XRC-generated CXX resources code

2002-07-26 16:13 JS, revision 16284

Don't fail to register remaining window classes if one fails to register Set window proc for non-control windows

2002-07-26 07:13 SC, revision 16283

changed library include to use relative paths

2002-07-26 06:52 SC, revision 16282

added msgout.cpp

2002-07-26 01:51 RD, revision 16281

Show how to prevent deselection of specific items

2002-07-26 01:51 RD, revision 16280

Don't show a dialog upon import when Numeric isn't installed

2002-07-25 22:37 VS, revision 16279

backported buffer overflow fix for wxHTML to 2.2

2002-07-25 21:47 GD, revision 16278

prefix include file for Project Builder project

2002-07-25 20:29 MBN, revision 16277

Applied patch from Ian Brown to make menus look better in wxMotif (#586347)

2002-07-25 17:07 VZ, revision 16276

corrected Enable() docs to correspond to the real method signature

2002-07-25 13:29 JJ, revision 16275

Committing in . changed one parameter in the definition of wxBitmap from long to int. (just as it is in wxGTK). This solves a compilation problem on OpenVMS. Modified Files: wxWindows/include/wx/motif/bitmap.h wxWindows/src/motif/bitmap.cpp ----------------------------------------------------------------------

2002-07-25 13:18 JJ, revision 16274

Committing in . Updated OpenVMS compile support: setip.h_vms : added definition of wxExplicit descrip.mms : added msgout.cpp utilsunx.cpp : supressed unreacheable code warning in one routine by OpenVMS only #pragma's. Modified Files: wxWindows/setup.h_vms wxWindows/src/common/descrip.mms wxWindows/src/unix/utilsunx.cpp ----------------------------------------------------------------------

2002-07-25 09:58 SC, revision 16273

removed virtual modifier from Command handlers, added readonly and color information to textctrls

2002-07-25 09:08 MBN, revision 16272

Updated Makefiles for Motif

2002-07-25 08:42 SC, revision 16271

removed virtual modifier from Command handlers, added readonly and color information to textctrls

2002-07-25 01:28 RD, revision 16270

changes to match recent CVS updates

2002-07-25 01:27 RD, revision 16269

Added wxUSE_RICHEDIT to match usage in header

2002-07-24 19:46 MBN, revision 16268

Updated Makefiles for all but Motif; there is either a lock or a CVS problem.

2002-07-24 19:29 MBN, revision 16267

Added wxMessageOutput as per the discussion on wx-dev. Added wxApp::DoInit to initialize the global wxMessageOutput instance. Changed wxCommandLineParser to use wxMessageOutput.

2002-07-23 21:59 VZ, revision 16266

IsSingleLine() is now in the base class

2002-07-23 21:59 VZ, revision 16265

added operator++/-- for wxAutoULong (SF patch from Igor)

2002-07-23 20:51 RR, revision 16264

Changed wxGTK's notion of SetSize() to never allow setting the width and height to -1 even if the wxALLOW_MINUS_ONE flag is set.

2002-07-23 17:32 JS, revision 16263

Added wxMotif comments

2002-07-23 17:31 JS, revision 16262

Applied patch [ 585436 ] motif toolbar control alignment fix

2002-07-23 17:28 JS, revision 16261

Applied patch [ 585322 ] motif border style fix for statictext

2002-07-23 17:25 JS, revision 16260

Applied patch [ 584885 ] better colour handling in motif

2002-07-23 16:27 JS, revision 16259

Possibly cured the assertion message dialog paint problem, by explicitly calling OnInternalIdle if it's a message dialog within an assertion.

2002-07-23 14:09 VZ, revision 16258

fix to not show ampersands in the static box title (needed after the previous change)

2002-07-23 14:08 VZ, revision 16257

added test for toggling the main toolbar

2002-07-22 23:07 DW, revision 16256

Weekly catch up and slider fixes.

2002-07-22 23:06 DW, revision 16255

OS/2 tweaks.

2002-07-22 23:03 JS, revision 16254

Added wxListCtrl to derive from wxGenericListCtrl, ditto for wxImageList

2002-07-22 14:46 DW, revision 16253

FALSE not false.

2002-07-22 14:42 VZ, revision 16252

made wxDllLoader more backwards compatible

2002-07-22 13:37 JS, revision 16251

Changed main ftp address to ftp://biolpc22.york.ac.uk/pub

2002-07-22 08:51 JS, revision 16250

Applied patch [ 583922 ] Make generic/wxListCtrl avail. in WIN32 Generic wxListCtrl renamed to wxGenericListCtrl, wxImageList renamed to wxGenericImageList, so they can be used on wxMSW (Rene Rivera).

2002-07-22 03:29 DW, revision 16249

Dialogs and slider updates

2002-07-22 03:28 DW, revision 16248

OS/2 Update

2002-07-22 03:27 DW, revision 16247

Lots of updates for color dialog and sliders

2002-07-21 22:29 VS, revision 16246

Unicodification of wxDataStreams

2002-07-21 21:45 JS, revision 16245

Returned value from operator=

2002-07-21 20:44 VZ, revision 16244

fixed small memory leak

2002-07-21 20:32 JS, revision 16243

operator = implemented inline.

2002-07-21 18:51 VZ, revision 16242

added (and documented) trivial but useful IsSingleLine() and IsMultiLine() text control methods

2002-07-21 18:49 VZ, revision 16241

default style now applies to the text entered by the user as well (patch 574789)

2002-07-21 18:46 VZ, revision 16240

fixed a compilation warning

2002-07-21 18:44 VZ, revision 16239

fixed crash in text ctrl log on exit

2002-07-21 17:34 JS, revision 16238

Made wxMouseEvent = operator public

2002-07-21 14:43 VZ, revision 16237

fixed notebook sample page creation for wxGTK (patch 581280)

2002-07-21 14:29 VZ, revision 16236

1. more consistency in wxTree/ListEvent methods naming convention: GetKeyCode() instead of GetCode() 2. wxTreeEvent::GetKeyEvent()::IsAltDown() now works under MSW 3. wxTreeEvent::GetKeyCode() works for alnum keys

2002-07-21 13:47 VZ, revision 16235

don't cache the result of IsAlwaysConnected() and don't call IsOnline() unnecessarily from there

2002-07-21 12:41 VZ, revision 16234

reverted Chris' MSW additions patch (we should use IPC, not Windows-only functions to implement this functionality)

2002-07-21 12:38 VZ, revision 16233

mention that usually wxGetUserId() should be used to construct the lock name

2002-07-21 10:17 GD, revision 16232

corrected assertion with message

2002-07-21 02:57 RD, revision 16231

Test for wxPyTipProvider

2002-07-20 19:45 RD, revision 16230

Fix for wxPyTipProvider. Now it is possible to derive from it and implement GetTip.

2002-07-20 18:10 VS, revision 16229

read message catalogs from the location where wxWin was installed, too

2002-07-20 13:31 SC, revision 16228

added Mark Newsam's patch

2002-07-20 13:10 SC, revision 16227

added Mark Newsam's patch

2002-07-20 02:08 RD, revision 16226

SWIGged updates for wxGTK

2002-07-20 02:07 RD, revision 16225

SWIGged updates for wxMSW

2002-07-20 02:06 RD, revision 16224

signned/unsigned fix

2002-07-20 00:14 RD, revision 16223

Various little tweaks

2002-07-20 00:10 RD, revision 16222

Made the wxInputStream typemap useable outside the core wxc module

2002-07-20 00:07 RD, revision 16221

Added overloaded LoadMenuBar as LoadMenuBarOnFrame for wxPython

2002-07-20 00:06 RD, revision 16220

New wxActiveX code from Lindsay and added ability to load page from stream

2002-07-19 22:30 RD, revision 16219

Some refinements to my experimental RPM builder script and spec

2002-07-19 21:11 RD, revision 16218

Moved the check for page scrolling with the wheel into wxMouseEvent so it wouldn't have to be duplicated everywhere. Also fixed wxSTC so it can handle wheel page scrolling too.

2002-07-19 20:42 JS, revision 16217

Applied patch [ 573644 ] wxDisplay for Mac (again) Applied patch [ 573172 ] Implements wxDisplay for mac Applied patch [ 573356 ] wxDisplay for MSW Alterations: Put sample in regular samples, not contrib Removed multimon.h for copyright reasons

2002-07-19 20:20 JS, revision 16216

Applied patch [ 578189 ] wxMSW stable: revised CW project file

2002-07-19 20:13 JS, revision 16215

Applied patch [ 578052 ] Doc/View and recursion problems

2002-07-19 19:57 JS, revision 16214

Applied patch [ 581280 ] Revamped notebook sample

2002-07-19 19:53 JS, revision 16213

Applied patch [ 581139 ] Misc wxCmdLineParser changes/fixes

2002-07-19 19:43 JS, revision 16212

Applied patch [ 583877 ] Clone events correction Applied patch [ 583937 ] Fix in wxClassInfo

2002-07-19 19:36 RD, revision 16211

Fix for mousewheel events when it is set to page mode instead of lines.

2002-07-19 19:21 VS, revision 16210

explicitly pass -lstdc++ to the linker in case of DJGPP

2002-07-19 19:15 VS, revision 16209

use wxLogFatalError, not wxFatalError

2002-07-19 11:27 VS, revision 16208

dde.cpp is lowlevel file

2002-07-19 08:39 JS, revision 16207

Set default encoding

2002-07-18 12:59 GD, revision 16206

added missing return to avoid 'control reaches end of non-void function'

2002-07-18 06:29 RL, revision 16205

Added Set{Position,Size} to wxRect.

2002-07-18 06:16 RD, revision 16204

RPM experiments

2002-07-17 23:36 VZ, revision 16203

wxSTAY_ON_TOP support in wxMessageBox (patch 581826)

2002-07-17 21:55 VZ, revision 16202

explicit support for CW (patch 582581)

2002-07-17 21:53 VZ, revision 16201

maintenance update (patch 582592)

2002-07-17 16:58 MBN, revision 16200

Allow compiling wxMotif/GTK/X11 for Cygwin/XFree

2002-07-16 20:24 RD, revision 16199
  • D /wxWidgets/trunk/utils/wxPython

Whate are these still doing here? They shoul dhav ebeen removed 2 years ago!

2002-07-16 16:58 VS, revision 16198

patch 580632 - fixes incorrect path problem in wxrc

2002-07-16 14:23 VZ, revision 16197

fixed more printf() warnings

2002-07-16 14:10 JS, revision 16196

Updated utils/configure

2002-07-16 12:11 JS, revision 16195

Removed @IF-GMAKE... or something similar

2002-07-16 12:03 VZ, revision 16194

added wxEXPLICIT macro

2002-07-16 11:45 VS, revision 16193

minor mgl/install.txt updates

2002-07-16 10:36 JS, revision 16192

Added helpview

2002-07-16 10:05 JS, revision 16191

Added helpview to distrib lists

2002-07-16 10:01 JS, revision 16190

Added helpview Makefile.in; added helpview to list of utils in utils/Makefile.in

2002-07-16 04:09 DW, revision 16189

Fix for GetValue

2002-07-15 22:56 VS, revision 16188

wxMGL features detection fixes

2002-07-15 22:55 VS, revision 16187

wxPrinting fix for wxMGL

2002-07-15 22:55 VS, revision 16186

made printing to PS possible under wxMGL

2002-07-15 21:50 DW, revision 16185

Dialog processing updates and some timer fixes

2002-07-15 18:29 RD, revision 16184

Icons fetched from wxMimeTypesManager did not get the width/height of the icon, now they do.

2002-07-15 17:15 JS, revision 16183

Stripped menu control characters from buttons, static text, radiobox.

2002-07-15 17:10 RD, revision 16182

Assert that wxEXEC_SYNC is not passed in flags to wxProcess::Open

2002-07-15 17:09 RD, revision 16181

Patch #581167

2002-07-15 11:40 CE, revision 16180

single instance checker addition for MSW

2002-07-15 04:26 DW, revision 16179

Fix text placement in statusbar

2002-07-15 04:26 DW, revision 16178

Nicer looking OS/2 Statusbar

2002-07-14 20:26 MBN, revision 16177

Allow building wxProtocol without wxUSE_SOCKETS

2002-07-14 20:02 VZ, revision 16176

let the DefWindowProc() process messages sent to RAS window, otherwise the system can't shutdown properly while it exists

2002-07-14 19:55 VZ, revision 16175

fixed wxStrrchr(s, '\0') bug, added const and non const versions of wxStrchr, wxStrrchr, wxStrstr, ...

2002-07-14 17:39 RR, revision 16174

Let wxToolBar assume that no orientation flag means horizontal.

2002-07-14 17:08 RR, revision 16173

Corrected display for empty lines in text control.

2002-07-14 16:51 RR, revision 16172

Convert to and from \n and \r in wxMac's text control so that it always expects \n as in all other ports.

2002-07-14 13:21 GD, revision 16171

corrected warnings

2002-07-14 13:19 GD, revision 16170

removed unused variable

2002-07-14 13:18 GD, revision 16169

added unimplemented error messages

2002-07-14 13:13 GD, revision 16168

added unimplemented error message

2002-07-14 13:12 GD, revision 16167

added unimplemented message

2002-07-14 13:08 GD, revision 16166

explicitly raise modal dialogs in case a non modal window was selected to activate the application when a modal dialog is displayed

2002-07-13 12:14 GD, revision 16165

corrected return type of wxDetermineImageType

2002-07-12 23:25 RD, revision 16164

Changed wxProcess::Open to take a flags arg to pass to wxExecute. Fixed a few _'s without \'s in the docs

2002-07-12 21:37 RD, revision 16163

SWIGged changes for wxMac

2002-07-12 21:37 RD, revision 16162

SWIGged changes for wxGTK

2002-07-12 21:36 RD, revision 16161

build script tweaks

2002-07-12 21:34 RD, revision 16160

I forgot the wxSignal enum

2002-07-12 21:30 RD, revision 16159

Added wxProcess_Open and etc.

2002-07-12 21:29 RD, revision 16158

better cleanup

2002-07-12 20:27 RR, revision 16157

Tried to fix update/refresh again. The code erronously cleared the updated area if the area to be cleared was empty (such as after a call to Refresh(FALSE)).

2002-07-12 19:54 VZ, revision 16156

added a stupid wxProcess::Open() test -- it can't be really used for now though

2002-07-12 19:30 VZ, revision 16155

don't close end process pipe descriptor too early (fixes bug introduced by the last check in)

2002-07-12 18:17 VZ, revision 16154

treat NULL extension properly in wxLoad/SaveFileSelector; don't crash if NULL ext or what pointers are passed to them

2002-07-12 18:16 VZ, revision 16153

use wxFileInput/OutputStreams instead of reproducing their functionality in wxProcessFileInput/OutputStream

2002-07-12 18:15 VZ, revision 16152

added and documented wxProcess::Open()

2002-07-12 18:15 VZ, revision 16151

detect EOF properly in wxFileInputStream

2002-07-12 18:14 VZ, revision 16150

don't write the strings to the stream one char at a time, it's *horribly* slow

2002-07-12 16:08 JS, revision 16149

Added wxView::OnClosingDocument so the application can do cleanup.

2002-07-12 16:05 VZ, revision 16148

attempt to fix a rare crash which happens when changing the number of columns in a virtual list control

2002-07-12 15:45 RD, revision 16147

Allow wxComboBox to get key events for ENTER with wxPROCESS_ENTER style.

2002-07-12 14:44 VZ, revision 16146

0. wxExecute() with IO redirection now works again (but the real fix is in wxInputStream::Ungetch(), not here) 1. replaced multitude of pipe() calls &c with wxPipe class 2. fixed nasty bug in wxStreamTempBuffer::Update() which corrupted the data 3. increased buffer size to 4Kb from 1Kb

2002-07-12 14:43 JS, revision 16145

Somehow wxWizard lost the 'virtual' keyword for DoCreateControls

2002-07-12 14:41 VZ, revision 16144

fixed bug in Ungetch() which was preventing wxExecute() from working: this method must clear the EOF flag!

2002-07-12 13:23 VZ, revision 16143

added SetSashPosition() test

2002-07-12 09:05 JS, revision 16142

Added Ian Brown's fix for PopupMenu not blocking

2002-07-11 22:14 DW, revision 16141

Toolbar/tooltip udates

2002-07-11 20:41 RD, revision 16140

demo tweaks

2002-07-11 20:17 RD, revision 16139

Typo fixed

2002-07-11 20:16 RD, revision 16138

Changed the wxDateTime.Parse* methods to return an int that will be -1 on failure, and the index where parsing stopped otherwise.

2002-07-11 20:16 RD, revision 16137

Added wxEVT_SCROLL_ENDSCROLL

2002-07-11 17:55 RD, revision 16136

put unicode mods back in

2002-07-11 17:43 RD, revision 16135

New wxActiveX and wxIEHtmlWin from Lindsay

2002-07-10 21:12 RD, revision 16134

Ensure that the wxSTC gets the focus when clicked. #if'd out my wxPopupWindow meanderings and just use a simple wxListBox for the AutoComplete window.

2002-07-10 17:13 JS, revision 16133

Added back makefile.vc

2002-07-10 14:17 VZ, revision 16132

AIX linking fix (declare wxDataObject dtor)

2002-07-10 14:11 VZ, revision 16131

compilation fix

2002-07-10 09:06 JS, revision 16130

Removed some inappropriate use of verbatim

2002-07-10 05:47 DW, revision 16129

More tooltip handling

2002-07-09 23:34 VZ, revision 16128

extracted the scroll events docs in a single file which is now included by all the others

2002-07-09 23:33 VZ, revision 16127

report the sider events

2002-07-09 23:33 VZ, revision 16126

added ENDSCROLL event (patch 576176)

2002-07-09 23:04 VZ, revision 16125

the handling of Home/End in wxScrollBar was reversed -- fixed now

2002-07-09 22:41 VZ, revision 16124

fix linking on AIX/RS6000 by using -mminimal-toc option

2002-07-09 22:26 VZ, revision 16123

compilation fix for 64 bit statvfs under Solaris

2002-07-09 22:02 DW, revision 16122

Tooltip udpates

2002-07-09 21:01 RR, revision 16121

No events when setting values.

2002-07-09 21:01 RR, revision 16120

Don't let wxSlider send events when programmatically changing the controls.

2002-07-09 17:01 RD, revision 16119

Compilation fix

2002-07-09 13:27 VZ, revision 16118

compilation fixes for _LARGE_FILES

2002-07-09 13:10 VZ, revision 16117

implemented wxVariant::NullList() (patch 578257)

2002-07-09 11:59 VZ, revision 16116

updates to CW8 project files and such (patch 578186)

2002-07-09 11:52 VZ, revision 16115

automatically initialize m_cRef to 0 (patch 575011 + more)

2002-07-09 10:38 JS, revision 16114

Simplified helpview sample again and removed bitmaps.

2002-07-09 10:34 JS, revision 16113

Compiles

2002-07-09 10:25 JS, revision 16112
  • D /wxWidgets/trunk/utils/helpview/src/Makefile.vc

Removed makefile with capital M

2002-07-09 10:23 JS, revision 16111

Added helpview utility

2002-07-09 08:33 JS, revision 16110

Corrected a few typos and added references to files under docs.

2002-07-09 08:18 JS, revision 16109

Added comment about increased wxRadioBox space

2002-07-09 07:19 RR, revision 16108

Added port notes.

2002-07-09 06:13 RR, revision 16107

Makefile fix for "make win-dist".

2002-07-09 05:51 RR, revision 16106

Oops.

2002-07-09 05:04 DW, revision 16105

Tooltip updates

2002-07-09 05:03 DW, revision 16104

OS/2 fixes for new PNG lib

2002-07-09 05:03 DW, revision 16103

Updates for tooltip support

2002-07-08 23:09 RD, revision 16102

bug fix. The wxCharBuffer was being destroyed before it was used.

2002-07-08 23:04 GD, revision 16101

updated libpng from 1.0.3 to 1.2.4

2002-07-08 23:03 GD, revision 16100

corrected conflicts after import of libpng-1.2.4

2002-07-08 21:35 GD, revision 16099

readded previsouly removed files (needed for merge after import of libpng-1.2.4)

2002-07-08 21:22 GD, revision 16098

corrected conlfict after import of libpng-1.2.4

2002-07-08 21:19 GD, revision 16097

readded previously removed file

2002-07-08 20:58 JS, revision 16096

Added space under label since it was too close to first radio button.

2002-07-08 20:55 , revision 16095

This commit was manufactured by cvs2svn to create tag 'LIBPNG_1_2_4'.

2002-07-08 20:55 GD, revision 16094
  • R /wxWidgets/trunk/src/png/scripts/makefile.bor
  • R /wxWidgets/trunk/src/png/scripts/makefile.dec
  • R /wxWidgets/trunk/src/png/scripts/makefile.dj2
  • R /wxWidgets/trunk/src/png/scripts/makefile.knr
  • R /wxWidgets/trunk/src/png/scripts/makefile.msc
  • R /wxWidgets/trunk/src/png/scripts/makefile.os2
  • R /wxWidgets/trunk/src/png/scripts/makefile.std
  • R /wxWidgets/trunk/src/png/scripts/makefile.tc3
  • R /wxWidgets/trunk/src/png/scripts/makevms.com
  • R /wxWidgets/trunk/src/png/scripts/pngos2.def
  • R /wxWidgets/trunk/src/png/scripts/smakefile.ppc

This commit was generated by cvs2svn to compensate for changes in r16093, which included commits to RCS files with non-trunk default branches.

2002-07-08 20:55 GD, revision 16093

import of libpng-1.2.4

2002-07-08 20:55 , revision 16092

This commit was manufactured by cvs2svn to create branch 'LIBPNG'.

2002-07-08 20:52 GD, revision 16091

Initial revision

2002-07-08 20:48 GD, revision 16090
  • D /wxWidgets/trunk/src/png/ANNOUNCE
  • D /wxWidgets/trunk/src/png/CHANGES
  • D /wxWidgets/trunk/src/png/example.c
  • D /wxWidgets/trunk/src/png/INSTALL
  • D /wxWidgets/trunk/src/png/libpng.3
  • D /wxWidgets/trunk/src/png/libpng.txt
  • D /wxWidgets/trunk/src/png/libpngpf.3
  • D /wxWidgets/trunk/src/png/png.5
  • D /wxWidgets/trunk/src/png/png.c
  • D /wxWidgets/trunk/src/png/png.h
  • D /wxWidgets/trunk/src/png/pngconf.h
  • D /wxWidgets/trunk/src/png/pngerror.c
  • D /wxWidgets/trunk/src/png/pngget.c
  • D /wxWidgets/trunk/src/png/pngmem.c
  • D /wxWidgets/trunk/src/png/pngpread.c
  • D /wxWidgets/trunk/src/png/pngread.c
  • D /wxWidgets/trunk/src/png/pngrio.c
  • D /wxWidgets/trunk/src/png/pngrtran.c
  • D /wxWidgets/trunk/src/png/pngrutil.c
  • D /wxWidgets/trunk/src/png/pngset.c
  • D /wxWidgets/trunk/src/png/pngtest.c
  • D /wxWidgets/trunk/src/png/pngtrans.c
  • D /wxWidgets/trunk/src/png/pngwio.c
  • D /wxWidgets/trunk/src/png/pngwrite.c
  • D /wxWidgets/trunk/src/png/pngwtran.c
  • D /wxWidgets/trunk/src/png/pngwutil.c
  • D /wxWidgets/trunk/src/png/README
  • D /wxWidgets/trunk/src/png/scripts/makefile.sgi
  • D /wxWidgets/trunk/src/png/TODO
  • D /wxWidgets/trunk/src/png/Y2KINFO

remove conflicting libpng-1/0/3 files before import of libpng-1.2.4 files

2002-07-08 20:06 RD, revision 16089

Added generic static text control

2002-07-08 19:13 JS, revision 16088

Added download page link.

2002-07-08 18:23 DW, revision 16087

Toolbar fixes and weekly catch-up.

2002-07-08 17:57 VZ, revision 16086

fixed handling of Ctrl-arrows movement which was unselecting the previously selected items incorrectly

2002-07-08 17:48 VZ, revision 16085

applied the same fix for crashing if the END_EDIT event handler vetoes the event as for wxTreeCtrl; also added a few consts here and there

2002-07-08 16:43 VZ, revision 16084

really remove the selection when Unselect() is called

2002-07-08 16:38 VZ, revision 16083

fix crash when the user code refuses to validate the new text when editing the item and a generic label editing code cleanup

2002-07-08 16:35 VZ, revision 16082

made the validation message more clear

2002-07-08 14:25 VZ, revision 16081

compilation fix for VC++ when using std::iostream

2002-07-08 14:01 RR, revision 16080

This memory corruption caused me three and a half weeks of trouble.

2002-07-08 14:01 RR, revision 16079

Return to 20x20 default size.

2002-07-08 10:23 JS, revision 16078

Added files.lst to wxMotif distribution.

2002-07-08 03:41 DW, revision 16077

OS/2 loads bitmap resources via integer ID, not via a string filename

2002-07-08 03:39 DW, revision 16076

Toolbar updates

2002-07-08 03:38 DW, revision 16075

no message

2002-07-07 21:48 JS, revision 16074

Added USE_ALTERNATE_UI symbol to helpview.cpp. Set to 1 to: - provide different icons. - add an open file icon for the toolbar. - use a flat toolbar style. - show a file selector if no file was given on the command line. - remove 'Help:' from the title bar. Set to 0 to revert to previous behaviour.

2002-07-07 03:16 RL, revision 16073

Update Layout more correctly in DoSetVirtualSize. fixed format string typo.

2002-07-07 00:13 RD, revision 16072

installer fix

2002-07-07 00:09 RD, revision 16071

Changes for wxUSE_UNICODE==1

2002-07-07 00:05 RL, revision 16070

put wx/app.h back though, for people without precompiled headers. :)

2002-07-06 21:16 MBN, revision 16069

Made documentation for wxImage::GetData/SetData more explicit about the fact that wxImage owns the pointer.

2002-07-06 19:09 RD, revision 16068

Added note about the supportability of this module

2002-07-06 18:20 RD, revision 16067

SWIGged updates for wxMac

2002-07-06 18:13 RD, revision 16066

Some demo tweaks

2002-07-06 14:36 RR, revision 16065

Cosmetic change.

2002-07-06 14:35 RR, revision 16064

You can crash GTK with scrolled windows being only 20x20 pixels large. This took me merely three weeks to find out.

2002-07-06 13:14 VZ, revision 16063

fixed bug introduced by my previous GtkUpdateSize() commit

2002-07-06 12:49 MBN, revision 16062

GCC can't test prototype if using wchar_t instead of char.

2002-07-06 12:43 MBN, revision 16061

Fix MinGW compilation in some corner cases

2002-07-06 06:46 RD, revision 16060

Allow wxSTC to have scrollbars

2002-07-06 04:14 RD, revision 16059

Added name to wxShapeCanvas ctor for consistency

2002-07-06 01:47 RD, revision 16058

Licence --> License

2002-07-06 01:47 RD, revision 16057

SWIGged updates

2002-07-06 01:10 RD, revision 16056

typos

2002-07-06 00:56 RD, revision 16055

A few other tweaks, reduced some flicker in the demo, and etc...

2002-07-06 00:55 RD, revision 16054

Fix the crash-on-ActiveX-callback problem

2002-07-06 00:48 RD, revision 16053

Move wxContextMenuEvent back into the core

2002-07-06 00:47 RD, revision 16052

Actually check if the menu should be shown before popping it up

2002-07-06 00:42 RD, revision 16051

Add pos, size and style parameters to the window constructors

2002-07-05 22:28 VZ, revision 16050

compilation error fix (trailing comma in an enum)

2002-07-05 16:45 MBN, revision 16049

Fix some GCC 3.1 compilation warnings

2002-07-05 16:43 MBN, revision 16048

wxPerl documentation updates

2002-07-05 14:41 GT, revision 16047

Fixes the problem with VARCHAR fields not allowing the stored string to ever be lengthened beyond the original stored length of the field. NOTE: There may be a problem with NULLs now, so this needs further testing. I'm not sure if this affects NULL column handling

2002-07-05 14:09 JS, revision 16046

Added wxRadioButton::MSWWindowProc to reset m_focusJustSet -- otherwise, if RB1 has the focus, then you click on RB2, then back on RB1, no command event will be generated for the last click.

2002-07-05 13:24 VZ, revision 16045

use GtkUpdateSize() for consitency everywhere instead of directly setting m_sizeSet

2002-07-05 13:20 VZ, revision 16044

fixed SetToolBar(NULL) behaviour -- don't leave a hole from toolbar

2002-07-05 12:53 VZ, revision 16043

removed unneeded inclusion of wx/wx.h

2002-07-04 23:23 VZ, revision 16042

argh, last compilation fix had a typo, fixed now

2002-07-04 19:08 JS, revision 16041

Corrected my wrong application of patch

2002-07-04 17:26 VZ, revision 16040

undid the patches which shouldn't (IMHO) have been applied to this branch

2002-07-04 17:03 VZ, revision 16039

fixed typo in including function.tex

2002-07-04 16:57 VZ, revision 16038

old mingw32 compilation fix

2002-07-04 09:42 SC, revision 16037

only fowarding events if there is a focus window

2002-07-04 09:38 JS, revision 16036

Updated script + FAQs

2002-07-04 09:37 JS, revision 16035

Probably a typo correction(?)

2002-07-04 09:37 JS, revision 16034

Documented various patches from Mark Armstrong <marka@availsolutions.com>

2002-07-04 09:08 JS, revision 16033

Applied patch from Mark Armstrong <marka@availsolutions.com> This patch fixes a debug assertion in tooltips.

2002-07-04 09:08 JS, revision 16032

Applied patch from Mark Armstrong <marka@availsolutions.com> This patch fixes wx combo box callbacks being executed multiple times per MSW callback.

2002-07-04 09:07 JS, revision 16031

Applied patch from Mark Armstrong <marka@availsolutions.com> This patch fixes two problems. The first is a race condition during a thread exit and a join. The second is condition where a thread can hang during msg/event processing.

2002-07-04 09:05 JS, revision 16030

Applied patch from Mark Armstrong <marka@availsolutions.com> Allows GC pool to grow dynamically.

2002-07-04 09:04 JS, revision 16029

Applied patch from Mark Armstrong <marka@availsolutions.com> Allows you to set a thread priority under Linux.

2002-07-03 22:54 RD, revision 16028

Updates related to wxID_ANY and etc.

2002-07-03 22:05 RD, revision 16027

Added wxIEHtmlWin wrappers to wxPython.

2002-07-03 21:46 MBN, revision 16026

Updated Makefiles for MinGW GCC 3.1

2002-07-03 21:44 DW, revision 16025

Menu corruption fix

2002-07-03 21:44 DW, revision 16024

Nicer default fonts for OS/2

2002-07-03 21:34 RD, revision 16023

Made wxBU_EXACTFIT work as documented instead of being ignored.

2002-07-03 16:37 VZ, revision 16022

extracted the constants to their own chapter and documented wxID_ANY and other standard ids

2002-07-03 16:29 VZ, revision 16021

fixed a compilation warning about signed/unsigned comparison

2002-07-03 16:25 VZ, revision 16020

added wxID_ANY, replaced #define's with enum

2002-07-03 16:23 VZ, revision 16019

removed hardcoded 48 (number of standard colours) from a few places -- still left in the others though

2002-07-03 15:09 VZ, revision 16018

wxMotif compilation fix with gcc 3.1 (patch 576847)

2002-07-03 15:05 VZ, revision 16017

fixed off-by-few-pixels error in horz scrollbar calculations (patch 575412)

2002-07-03 15:01 VZ, revision 16016

typos and other doc corrections from Olly Betts (patch 573738)

2002-07-03 15:00 DW, revision 16015

Attempt to fix buggy menus.

2002-07-03 09:49 VS, revision 16014

fixed a Really Stupid Bug

2002-07-02 22:30 VZ, revision 16013

fixed checking/unchecking find/replace items in the menu problem (they becameo ut of sync with the real status)

2002-07-02 22:06 VS, revision 16012

fixed cmd line args parsing in wxrc (contributed patch)

2002-07-02 21:10 DW, revision 16011

Toolbar updates

2002-07-02 17:17 RD, revision 16010

Another demo tweak

2002-07-02 17:14 RD, revision 16009

SWIGged updates for wxGTK

2002-07-02 17:12 RD, revision 16008

Added note about module not being supported

2002-07-02 17:11 RD, revision 16007

Some improvements and additions for wxListCtrl and logging

2002-07-02 17:11 MBN, revision 16006

Allow compiling when _WIN32_IE < 0x300

2002-07-02 17:08 RD, revision 16005

Added menu sample, and some other minor changes to the demo

2002-07-02 13:25 CE, revision 16004

fix another icon error

2002-07-02 13:02 CE, revision 16003

fixes bugs reading icons

2002-07-02 09:05 JS, revision 16002

Removed strange _T()

2002-07-02 08:41 CE, revision 16001

UNC fix to directory path

2002-07-02 04:56 RL, revision 16000

added DECLARE_EXPORTED_LOCAL_EVENT_TYPE for use with user libs.

2002-07-02 01:21 RL, revision 15999

and yet once more to fix gtk compilation.. this is a nasty kludge though, if anyone knows better, please do..

2002-07-01 23:24 VZ, revision 15998

compilation fix (removed duplicate default parameter value)

2002-07-01 22:26 DW, revision 15997

Toolbar update

2002-07-01 22:22 DW, revision 15996

OS/2 updates and initial toolbar implementation

2002-07-01 20:34 CE, revision 15995

make motif cursor from wxImage

2002-07-01 17:45 RD, revision 15994

Fixed "different linkage" compile error

2002-07-01 15:18 VZ, revision 15993
  • D /wxWidgets/trunk/docs/html/roadmap.htm

removed out of date copy of the file which is now in wxWebSite module

2002-07-01 14:55 VZ, revision 15992

corrections to exiting the program, now we should wait for all threads to finish but not crash nor freeze

2002-07-01 11:45 VZ, revision 15991

fixed 2 bugs in 2 lines of wxFileSelector example code

2002-07-01 10:27 RL, revision 15990

Fix for the irksome, 'Details' sizing bug. Or at least a patch on a hornet's nest. Thanks to jill@emeraldgate.com for tracking this one (and the previous StatusBar patch too). There's more work here if someone wants it.. :-)

2002-07-01 09:42 JS, revision 15989

Corrected scoping error for i

2002-06-30 23:53 RL, revision 15988

Preserve prior StatusBar contents when adding removing fields (consistant with MSW behaviour). Made m_statusSring a wxArrayString, furthur simplification may be possible if someone is interested and has the time.

2002-06-30 23:48 RL, revision 15987

fixed some pesky compile warnings, hope this doesn't nuke some unsuspecting platform..

2002-06-30 22:44 RL, revision 15986

added export decls for MSW.

2002-06-30 22:41 RL, revision 15985

added export decls for MSW

2002-06-30 22:15 VS, revision 15984

fixed hidden root expansion in extreme usage case

2002-06-30 18:08 GD, revision 15983

added static library Project Builder project for wxWindows added Project Builder project for minimal sample

2002-06-29 16:25 GD, revision 15982

rename method to prevent collision with some BSD definitions of macro Free() (detected compiling mahogany)

2002-06-29 11:56 GD, revision 15981

improved error messages

2002-06-29 11:45 GD, revision 15980

ignore Project Builder build directory

2002-06-29 11:07 GD, revision 15979

keep name of wxmac icon for application bundles unstead of renaming it

2002-06-29 00:46 VZ, revision 15978

made wxGenericFontDialog derive from wxFontDialogBase

2002-06-28 22:34 VS, revision 15977

enlarged <UL> bullets a bit and nuked this weirdness about using rectangles where the rest of the world uses circles...

2002-06-28 17:47 RD, revision 15976

Return more items in wxListCtrl::GetColumn.

2002-06-28 11:41 CE, revision 15975

STC and Motif patch

2002-06-28 11:35 CE, revision 15974

STC and Motif patch

2002-06-28 08:52 CE, revision 15973

remove temportay fix to Makefile.in, now configure .in is fixed

2002-06-28 08:50 CE, revision 15972

make path absolute to install-sh, to fix contrib lib bug

2002-06-27 23:40 VZ, revision 15971

streamlined WM_NOTIFY processing code fixing a bug with toolbar tooltips in presence of the control in toolbar

2002-06-27 23:02 RD, revision 15970

Fixed compile error

2002-06-27 14:29 VZ, revision 15969

(blind) fixes for AIX: shared library extension there is apparently ".a", not ".so"; look for makeC++SharedLib in the PATH instead of hard coded location

2002-06-26 23:13 VZ, revision 15968

react to the year being changed in the spin control text zone and not only with the spin buttons

2002-06-26 22:15 JS, revision 15967

Eliminate flashing when writing text, by clearing instead of selecting all.

2002-06-26 20:11 RD, revision 15966

Some trace log updates

2002-06-26 20:08 RD, revision 15965

Added demo of using a sizer in a wxScrolledWindow

2002-06-26 19:16 VS, revision 15964

compilation fix (wxUniv/MSW)

2002-06-26 19:11 VS, revision 15963

fix for bug reported by Robert and Julian, probably causes other problems

2002-06-26 19:10 VS, revision 15962

compilation fix (wxUniv/MSW)

2002-06-26 19:10 VS, revision 15961

added some regression tests for wxHTML

2002-06-26 16:27 VZ, revision 15960

fixed warning about printf format specifications <-> argument mismatches in wxLogLastError

2002-06-26 16:27 VZ, revision 15959

fixed warnings about printf format specifications <-> argument mismatches

2002-06-26 15:43 VZ, revision 15958

added missing 'R' in RGB

2002-06-26 11:39 JS, revision 15957

Changed the UL bullet to be a square -- I couldn't get it to show anywhere near nicely as an ellipse, under Windows at least. Previously the bullet showed up as what looked like a tiny asterisk.

2002-06-26 10:48 JJ, revision 15956

Committing in . Update setup.h for OpenVMS Modified Files: wxWindows/setup.h_vms ----------------------------------------------------------------------

2002-06-26 07:33 JS, revision 15955

Corrected typo

2002-06-26 00:45 VZ, revision 15954

propgate WS_EX_CONTROLPARENT recursively upwards, not just to the immediate parent

2002-06-25 18:12 JS, revision 15953

Corrected OnAssert

2002-06-24 23:55 RD, revision 15952

Some typemap updates

2002-06-24 23:06 RD, revision 15951

SWIGged code update for wxMac

2002-06-24 22:35 VS, revision 15950

added QS_ALLPOSTMESSAGE

2002-06-24 21:59 RD, revision 15949

SWIGged updates for wxGTK

2002-06-24 21:52 RD, revision 15948

Added wxPyPanel

2002-06-24 21:51 RD, revision 15947

Fixed a typo

2002-06-24 21:51 RD, revision 15946

Added component control accessors to wxEditableListBox

2002-06-24 20:09 CE, revision 15945

a fix to preserve UNC paths when creating the commandline argument array tested with Borland/wxMSW; existing behaviour of replacing \\ with \ preserved except at start of string

2002-06-24 19:36 RD, revision 15944

better font sizes

2002-06-24 19:35 RD, revision 15943

fixed a comment

2002-06-24 18:35 RD, revision 15942

Don't try to release the mouse unless we actually have it captured. The mouse capture can be lost if an event handler shows a modal dialog, for example.

2002-06-24 18:28 SC, revision 15941

added WXDisplay for Mac