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

2002-06-24 15:26 SC, revision 15940

corrected scoping

2002-06-24 15:19 VZ, revision 15939

old mingw32 compilation fix

2002-06-24 15:18 SC, revision 15938

support for arbitrary backgrounds via suppressing the ordinary control background eraser and supplying a hook for us.

2002-06-24 15:15 VZ, revision 15937

wxMotif compilation warning fix

2002-06-24 15:14 VZ, revision 15936

wxMotif compilation fix

2002-06-23 18:55 VZ, revision 15935

fixed compilation for Mac OS X 10.1.4

2002-06-23 17:23 GD, revision 15934

corrected printf format strings

2002-06-23 17:22 GD, revision 15933

improved memory liberation (explicitly set to NULL after delete)

2002-06-23 17:09 GD, revision 15932

corrected warnings for unused parameters

2002-06-23 16:58 GD, revision 15931

added attribute printf to perform printf format checks (GNU C)

2002-06-23 16:56 GD, revision 15930

added missing include file

2002-06-23 14:10 JS, revision 15929

Applied patch [ 546335 ] Added Automation types and array access

2002-06-23 14:01 JS, revision 15928

Applied patch [ 571965 ] update stc contrib stuff

2002-06-23 13:55 JS, revision 15927

Applied patch [ 566194 ] Adds taskbar sample to configure-targets

2002-06-23 13:53 JS, revision 15926

Added taskbar sample Makefile.in

2002-06-23 13:51 JS, revision 15925

Applied patch [ 565012 ] Add wxTextValidator to wxTextEntryDialog

2002-06-23 13:38 JS, revision 15924

Applied [ 565397 ] FL wxNewBitmapButton patch

2002-06-22 23:33 VS, revision 15923

forgot to check in new wxrc -- as a side effect, this commit also fixes the bug with deleting source files

2002-06-22 15:58 RL, revision 15922

arg type warning fixes.

2002-06-22 15:55 RL, revision 15921

removed missing treectrl sample bitmaps from dist target,

2002-06-22 14:05 GD, revision 15920

integrated wxMac specific changes into common file

2002-06-21 22:31 VZ, revision 15919

applied patch 568329

2002-06-21 22:07 VZ, revision 15918

added wxMemoryOutputStream test

2002-06-21 21:49 VZ, revision 15917

renamed wxWizard::Fit() to FitToPage() to avoid potential conflicts with wxWindow::Fit() (and the compiler warnings about it)

2002-06-21 21:38 GD, revision 15916

added attribute printf checks to printf like functions (when using gcc)

2002-06-21 21:37 GD, revision 15915

added macro definitions for printf like function checks when using gcc

2002-06-21 18:54 SC, revision 15914

switch back to non appearance fonts until problems are solved

2002-06-21 16:10 SC, revision 15913

changed key handling to new carbon-savvy implementation

2002-06-21 16:09 SC, revision 15912

routing key events to new app routine

2002-06-21 16:05 SC, revision 15911

changed handling to skip in order to have default handling working

2002-06-21 16:04 SC, revision 15910

take out key handling at control level, we'll remove that later on, if things are still working...

2002-06-21 16:01 SC, revision 15909

factored out key handling for better integrating with carbon

2002-06-21 15:59 SC, revision 15908

millisecond resolution supported for wxMac

2002-06-21 11:18 VZ, revision 15907

fixed stray _T()s

2002-06-21 09:46 CE, revision 15906

svg Unix fix

2002-06-21 06:54 SC, revision 15905

corrected Appearance measuring routines

2002-06-21 03:03 RD, revision 15904

Refactored my last change a bit and applied it in another place too. Added the wx prefix to the other static funcitons for consistency.

2002-06-21 02:04 RD, revision 15903

fixed a typo

2002-06-21 01:57 RD, revision 15902

This fixes a crash that would happen when DeleteAllItems is called when some items have attributes.

2002-06-21 00:19 RD, revision 15901

fixed typo

2002-06-21 00:17 RD, revision 15900

Updated build notes for wxPython on unix systems

2002-06-20 23:36 RD, revision 15899

A bit of cleanup

2002-06-20 22:33 VZ, revision 15898

fixed compilation with CW8 (SF patch 567845) and also added alignment fillers for wxCriticalSection::m_buffer

2002-06-20 22:25 VZ, revision 15897

wxThread::Delete() doesn't wait until the next event occurs before waking up any longer

2002-06-20 22:25 VZ, revision 15896

tried to fix a race condition in the sample, not sure if I really did it though

2002-06-20 21:55 VZ, revision 15895

added #defines required for 64 bit off_t (a.k.a. large files) support

2002-06-20 21:53 RD, revision 15894

Changes needed to allow compilation with SunCC.

2002-06-20 21:42 RD, revision 15893

Show changing the control colour when the validator fails.

2002-06-20 21:39 RD, revision 15892

Changes needed to allow compilation with SunCC.

2002-06-20 15:01 VZ, revision 15891

don't crash trying to dereference NULL m_selection (happens when showing a grid without any rows or columns)

2002-06-20 14:49 VZ, revision 15890

fixed setting tooltips for slider by moving the code working around comctl32.dll bug from wxToolBar to wxWindow so that it is used for all common controls

2002-06-20 14:34 CE, revision 15889

fix to tex format documentation for wxSVG

2002-06-20 12:52 VZ, revision 15888

added TRUE default value for Show() argument

2002-06-20 11:46 JS, revision 15887

ifdefed out Offset call for Mac

2002-06-19 20:25 GD, revision 15886

moved header detections before sizeof detections since some headers are conditionally used in the sizeof detections

2002-06-19 10:19 JS, revision 15885

Added SVG to distribution scripts

2002-06-19 09:21 CE, revision 15884

wxSVGDC class README.TXT

2002-06-19 09:17 CE, revision 15883

wxSVGDC class include files

2002-06-19 09:16 CE, revision 15882

wxSVGDC class test sample

2002-06-19 09:13 CE, revision 15881

wxSVGDC class documentation

2002-06-18 21:46 JS, revision 15880

Added AddGrab, RemoveGrab, IsGrabbed to wxTopLevelWindowGTK and AddGrabIfNeeded to wxHtmlHelpController, to assist with showing the help window from a modal dialog.

2002-06-18 19:59 DW, revision 15879

New .def file

2002-06-18 15:57 JS, revision 15878

Moved flicker-removal to GTK+ code

2002-06-18 15:23 VZ, revision 15877

relayout the window after adding/removing the columns (fixes a SF bug I closed a long time ago -- but forgot to commit the fix)

2002-06-18 15:12 JS, revision 15876

Remove flicker in Undo/Redo menus by only updating if we have some new text

2002-06-18 14:43 DW, revision 15875

OS/2 has it's own popup window source now.

2002-06-18 12:47 VZ, revision 15874

added ViewStart() as synonym for GetViewStart() in WXWIN_COMPATIBILITY_2_2 mode

2002-06-18 12:46 VZ, revision 15873

mention WXWIN_COMPATIBILITY_2_2

2002-06-18 08:29 JS, revision 15872

Set the clear region to be the update region if the update region is non-empty but the clear region is empty, because otherwise we're going to clear more than we repaint

2002-06-18 00:40 VZ, revision 15871

removed SetFocus() call in WM_LBUTTONDOWN handler once again: it is *WRONG*, please let me know if there is any problem this is supposed to fix but don't put it back

2002-06-18 00:34 VZ, revision 15870

richedit 1.0 controls now send the left up event

2002-06-17 22:08 DW, revision 15869

Catching up

2002-06-17 19:38 SC, revision 15868

using Theme layout for measuring as well

2002-06-17 15:51 VZ, revision 15867

oops, typo in the large file support just checked in

2002-06-17 15:44 VZ, revision 15866

added configure support for the large files

2002-06-17 13:09 VZ, revision 15865

init the event id and timestamp fields for the mouse events

2002-06-17 09:07 CE, revision 15864

patch fixing b32 makefile (sourceforge Bugs item #566439)

2002-06-16 22:19 VZ, revision 15863

backported setting id for mouse event fix from 2.3

2002-06-16 15:38 MBN, revision 15862

Updated makefile

2002-06-16 15:17 MBN, revision 15861

Recent w32api have FONTENUMPROC; this also fixes GCC 3.1

2002-06-15 21:17 VZ, revision 15860

argh, another IsDialogMessage() fix: we still need to check all non top level parents

2002-06-15 20:09 VZ, revision 15859

fix for dialog navigation in the modal dialogs: do call IsDialogMessage() in this case

2002-06-15 17:03 VZ, revision 15858

allow overriding the default button labels in wxWizard

2002-06-15 15:32 VZ, revision 15857

changed WM_GETDLGCODE handling so that all windows get WM_CHARs by default

2002-06-15 15:20 VZ, revision 15856

removed unused wxWindow::m_doubleClickAllowed field

2002-06-15 15:04 MBN, revision 15855

Create a new icon for each image in a file with multiple icons. Fixes a bug reported on wx-dev.

2002-06-15 14:58 MBN, revision 15854

Better detection for Cygwin; thanks to Oscar Fuentes

2002-06-15 07:10 RD, revision 15853

SWIGged update for wxMac

2002-06-15 07:03 RD, revision 15852

SWIGged updates for wxGTK

2002-06-15 06:41 RD, revision 15851

Fix for the TAB in the autocomplete list not being used correctly

2002-06-15 05:52 RD, revision 15850

Changed name of demo so the list sorts nicer

2002-06-15 05:51 RD, revision 15849

Switched to new inline image format

2002-06-15 05:51 RD, revision 15848

Fixed a bunch of embarassing reference leaks

2002-06-15 01:43 RD, revision 15847

Fixed wxApp::OnAssert signature.

2002-06-15 00:10 VZ, revision 15846

generic log dialog resizing now works more reasonably (at least under Windows): you can't resize it vertically when it is collapsed and it doesn't change horizontal size when it is expanded or collapsed

2002-06-14 23:31 RD, revision 15845

Added wxArtProvider and other changes to match CVS updates

2002-06-14 23:28 RD, revision 15844

PyCrust update

2002-06-14 22:39 VZ, revision 15843

don't use WS_EX_CONTOLPARENT with the top level windows nor wxUniv (doesn't really hurt but is not needed neither)

2002-06-14 22:26 VZ, revision 15842

compilation fixes for wxUniv (moved wxDlgProc back to toplevel.cpp)

2002-06-14 22:05 VZ, revision 15841

compilation fix for !USE_PCH (patch 569132)

2002-06-14 15:24 RD, revision 15840

fixed missing comma

2002-06-14 14:17 CE, revision 15839

fixes MSW comparision where theme name extracted from the environment is in upper case

2002-06-14 13:04 CE, revision 15838

make file for wxUniversal and Borland/MSW

2002-06-14 13:03 CE, revision 15837

tmake files for wxUniversal and Borland/MSW

2002-06-14 10:21 CE, revision 15836
  • D /wxWidgets/trunk/samples/minifram/bitmaps/copy.bmp
  • D /wxWidgets/trunk/samples/minifram/bitmaps/cut.bmp
  • D /wxWidgets/trunk/samples/minifram/bitmaps/help.bmp
  • D /wxWidgets/trunk/samples/minifram/bitmaps/new.bmp
  • D /wxWidgets/trunk/samples/minifram/bitmaps/open.bmp
  • D /wxWidgets/trunk/samples/minifram/bitmaps/page.bmp
  • D /wxWidgets/trunk/samples/minifram/bitmaps/paste.bmp
  • D /wxWidgets/trunk/samples/minifram/bitmaps/preview.bmp
  • D /wxWidgets/trunk/samples/minifram/bitmaps/print.bmp
  • D /wxWidgets/trunk/samples/minifram/bitmaps/save.bmp
  • M /wxWidgets/trunk/samples/minifram/minifram.cpp
  • M /wxWidgets/trunk/samples/minifram/minifram.rc

minifram sample modified to use XPMs

2002-06-14 10:08 CE, revision 15835

comment added to toolbar to say using BMPs uses less pace than XPMs

2002-06-14 10:05 CE, revision 15834

treectrl sample modified to use XPMs

2002-06-14 00:19 RD, revision 15833

Missing ;

2002-06-13 23:59 VZ, revision 15832

fixed problems with hanging inside IsDialogMessage or DefDlgProc by forcing all parents of windows with WS_EX_CONTROLPARENT to have this style themselves as well

2002-06-13 23:57 VZ, revision 15831

added missing space before >> button label

2002-06-13 22:22 RD, revision 15830

New SWIGged code for wxMac, updated version in build script

2002-06-13 20:41 VZ, revision 15829

suppress an assert when a combobox receives WM_KILLFOCUS while it is being destroyed

2002-06-13 20:21 VZ, revision 15828

fixes to the sizers behaviour necessary to make the log dialog work again (thanks to Dimitri) and a few updates to the docs after the recent changes

2002-06-13 19:37 VZ, revision 15827

new wxASSERT implementation using wxAssert() helper function

2002-06-13 19:09 VZ, revision 15826

blind fix for latest mingw32 3.1

2002-06-13 18:51 VZ, revision 15825

blind fix for latest mingw32 3.1

2002-06-13 18:46 VZ, revision 15824

fix link of wxDateTime inline methods using mingw32

2002-06-13 18:12 VZ, revision 15823

fixed buglet in wxWindow::GetPosition docs

2002-06-13 17:51 GT, revision 15822

Enhanced the DataTypeSupported() function to show the native data type name that is being automatically used by the wxODBC class column types

2002-06-13 17:48 GT, revision 15821

Added a wxASSERT_MSG in ::SetColDefs() to trap for the user sending an index that is larger than the number of columns defined for the table

2002-06-13 16:57 RD, revision 15820

Added code (currently disabled) to show putting a wxGLCanvas on a panel

2002-06-13 16:51 RD, revision 15819

Patch #568403

2002-06-13 07:04 SC, revision 15818

adapted to new ..internal structure

2002-06-13 01:35 RD, revision 15817

fixed some paths in build scripts fixed yesterday's fix

2002-06-13 00:04 VZ, revision 15816

moved OnActivate() logic from wxFrame to wxDialog -- this fixes infinite loop when handling WM_ACTIVATE in DefDlgProc in some crazy situations

2002-06-12 21:20 JS, revision 15815

Fixed a bug in transferring data to a wxComboBox if string is not in the list of strings.

2002-06-12 20:26 VZ, revision 15814

added wxGetProcessId()

2002-06-12 19:54 RD, revision 15813

make the second parameter to wxTreeCtrl.GetFirstChild optional

2002-06-12 19:53 RD, revision 15812

little demo updates

2002-06-12 16:15 VZ, revision 15811

added clipping test

2002-06-12 16:08 VZ, revision 15810

use AF_INET instead of PF_INET in wxGetFullHostName

2002-06-12 15:26 VZ, revision 15809

added missing semicolons after asserts (patch 567853)

2002-06-12 14:12 VZ, revision 15808

fixed infinite loop in wxCursor(wxImage) ctor

2002-06-12 14:12 VZ, revision 15807

fixed a warning

2002-06-12 14:05 VZ, revision 15806

typo fixes

2002-06-12 13:19 JS, revision 15805

Added HTML About box and changed player dialog label

2002-06-12 11:56 CE, revision 15804
  • D /wxWidgets/trunk/samples/mdi/bitmaps/bitmap1.bmp
  • D /wxWidgets/trunk/samples/mdi/bitmaps/bitmap2.bmp
  • D /wxWidgets/trunk/samples/mdi/bitmaps/calc.bmp
  • D /wxWidgets/trunk/samples/mdi/bitmaps/copy.bmp
  • D /wxWidgets/trunk/samples/mdi/bitmaps/cut.bmp
  • D /wxWidgets/trunk/samples/mdi/bitmaps/dirplain.xbm
  • D /wxWidgets/trunk/samples/mdi/bitmaps/draft.xbm
  • D /wxWidgets/trunk/samples/mdi/bitmaps/drawing.xbm
  • D /wxWidgets/trunk/samples/mdi/bitmaps/flowchar.xbm
  • D /wxWidgets/trunk/samples/mdi/bitmaps/help.bmp
  • D /wxWidgets/trunk/samples/mdi/bitmaps/helpcs.bmp
  • D /wxWidgets/trunk/samples/mdi/bitmaps/new.bmp
  • D /wxWidgets/trunk/samples/mdi/bitmaps/open.bmp
  • D /wxWidgets/trunk/samples/mdi/bitmaps/paste.bmp
  • D /wxWidgets/trunk/samples/mdi/bitmaps/preview.bmp
  • D /wxWidgets/trunk/samples/mdi/bitmaps/print.bmp
  • D /wxWidgets/trunk/samples/mdi/bitmaps/save.bmp
  • D /wxWidgets/trunk/samples/mdi/bitmaps/tick.bmp
  • D /wxWidgets/trunk/samples/mdi/bitmaps/write.xbm
  • M /wxWidgets/trunk/samples/mdi/mdi.cpp
  • M /wxWidgets/trunk/samples/mdi/mdi.rc

removing bitmaps from mdi sample

2002-06-12 10:33 VS, revision 15803

updated wxXRC sample

2002-06-12 08:29 JS, revision 15802

Applied recent FL patches from Benjamin Williams <biwilliajsb@yahoo.com>. 1) There is a problem in that floating frames are not currently supported with !mRealTimeUpdates. We wrote a patch to correct this problem. You will find it attached to this posting. Here is a description of what was changed and why. In cbBarDragPlugin::ShowHint(), SetBarState is called every time mpCurPane changes. This is correct. However, this also happens every time, even if mRealTimeUpdates is false. The state should not be changed during the drag operation if mRealTimeUpdates is off. This is corrected in this patch. Code was also added in cbBarDragPlugin::OnLButtonUp() to actually do the state changing, only if mRealTimeUpdates is off. Normally, this is performed in ShowHint if mRealTimeUpdates is on. I also took the liberty of changing the drag cursor back to an arrow. This is the way it is in MS Visual C++, and it looks way better. The MoveWindow cursor looks terrible, IMHO. When FL gets the embedded cursor code working, we can switch back to a hand or something else. 2) This time we have discovered a crash bug in FL. The steps to reproduce this bug are as follows: 1. Open up a pane, dock it. 2. Click the Expand button (arrow button) in the frame hints portion 3. Click it again to Collapse the pane. 4. Now click the close button of the pane. Crash. We investigated what was causing this problem, and it turns out that the button state never gets unset. Once a button is pressed, it is always pressed. Thus, when the expand/ collapse button is pressed, and then the close button is pressed, the pane will close, but then FL will also try to expand or collapse the pane as well, because it thinks that the expand/collapse button was set.

2002-06-11 22:07 JS, revision 15801

Initialise font family when initializing from native font, since this is otherwise uninitialised (the font family is taken from the ref data and not the native font data).

2002-06-10 17:58 MBN, revision 15800

Check for attributes before copying them

2002-06-10 15:59 VZ, revision 15799

attempts to fix wxMimeTypesManager mess: many bugs (entries priority, memory leaks, ...) fixed, but probably even more left

2002-06-09 23:02 RR, revision 15798

Moved wxCharhookEvent so that it sends the same keycode as wxCharEvent. Removed wxDestroyWindowEvent as it crashes all the time. Corrcted wxTreeCtrl's interception of wxCharEvents as it misinterpreted "F5" for "Z" e.g.

2002-06-09 22:19 VZ, revision 15797

added _T()s around the literal strings

2002-06-09 19:24 MBN, revision 15796

Update taskbar.h to use DECLARE/DEFINE_EVENT_TYPE; fixes an runtime error with MinGW and (probably) Cygwin.

2002-06-08 21:32 VZ, revision 15795

reenabled WS_EX_CONTROLPARENT style together with a check that the focus window is not disabled or hidden

2002-06-08 18:43 VZ, revision 15794

don't link in libwx_gtk twice when linking apps using OpenGL

2002-06-08 18:30 VZ, revision 15793

typo in dir enum test code fixed

2002-06-08 17:36 JS, revision 15792

Use standard IDC_HELP cursor instead of oversize custom cursor.

2002-06-08 15:11 VZ, revision 15791

compilation fix (for !PCH)

2002-06-07 23:37 VZ, revision 15790

no changes (reformatted some code just to be able to read it)

2002-06-07 23:36 VZ, revision 15789

fixed wxScrolledWindow::SetScrollbars() which was broken by the virtual size changes

2002-06-07 21:46 VZ, revision 15788

restored inline for wxCriticalSection methods for !MSW

2002-06-07 21:26 VZ, revision 15787

added thrimpl.cp

2002-06-07 21:26 VZ, revision 15786

oops, compilation fix

2002-06-07 21:17 VZ, revision 15785

patch 562893: bug in dll makefile.b32

2002-06-07 21:04 VZ, revision 15784

fixed bug in wxStrstr() replacement implementation (part of patch 565031)

2002-06-07 21:00 VZ, revision 15783

don't include winsock.h directly, this doesn't work (patch 565655)

2002-06-07 20:45 VZ, revision 15782

fixed text ctrl tooltips (patch 562210)

2002-06-07 20:41 VZ, revision 15781

CW compilation fix (patch 562701)

2002-06-07 20:39 VZ, revision 15780

fix tree icon refresh after collapsing a branch (patch 565294)

2002-06-07 20:15 VZ, revision 15779

applied typos and spelling error fixes patch from Olly Betts

2002-06-07 19:56 VZ, revision 15778

more MIME tests

2002-06-07 18:32 JS, revision 15777

Removed 'inline' which was causing unresolved symbols

2002-06-07 17:56 VS, revision 15776

wxMGL requires wxUSE_PALETTE

2002-06-07 17:56 VS, revision 15775

updated wxMGL's wxExecute signatures

2002-06-07 16:52 RD, revision 15774

Patch #565656, fix for compilers without precomp headers

2002-06-07 15:40 RD, revision 15773

Fixed bug that showed a small gap on the wxStaticBox when the label string was empty.

2002-06-07 08:47 JS, revision 15772

Added USE_SIMPLE_HELP_PROVIDER symbol to help demo so we can test wxSimpleHelpProvider under Windows.

2002-06-07 05:39 RD, revision 15771

Only catch double click on wxMSW

2002-06-07 00:34 VZ, revision 15770

added wxCRITICAL_SECTION macro

2002-06-07 00:34 VZ, revision 15769

fixed glibc 2.1 detection test

2002-06-07 00:19 RD, revision 15768

minor tweaks and discuss unicode build in win32 build instructions

2002-06-06 19:37 VZ, revision 15767

make the incremental kbd search wrap to the beginning if necessary

2002-06-06 19:35 RR, revision 15766

Dislaying popup tip windows seems to work right now.

2002-06-06 19:18 VZ, revision 15765

marked the most important backwards incompatible changes with an exclamantion sign

2002-06-06 19:17 RD, revision 15764

SWIGged updates for wxGTK

2002-06-06 18:50 RD, revision 15763

Fix for compilation error in Unicode mode

2002-06-06 18:36 RD, revision 15762

Switch back to not using wxPopupWindow since wxMSW's version can't handle it...

2002-06-06 18:31 VZ, revision 15761

wxMutex changes (explicitly specify the type), return values for all wxMutex/wxSemaphore/wxCondition methods and general cleanup

2002-06-06 17:37 RD, revision 15760

Added wxPyWindow and wxPyControl which are just like their wx counterparts except they allow some of the more common C++ virtual methods to be overridden in Python derived classes. Changed wxGenButton to derive from wxPyControl.

2002-06-06 16:06 JS, revision 15759

Corrected typo in wxStringHashTable::Delete

2002-06-05 23:30 VZ, revision 15758

reverted wxPopupWindow implementation to the original version using WS_CHILD and desktop as parent; this fixes the activation problem but reopens the other ones

2002-06-05 23:13 VZ, revision 15757

VC++ warning fix

2002-06-05 22:37 VZ, revision 15756

bring the parent of a wxFRAME_FLOAT_ON_PARENT frame to the top when deleting it as Windows doesn't do it automatically

2002-06-05 21:11 JS, revision 15755

Added documentation for wxHelpProvider::RemoveHelp

2002-06-05 21:06 JS, revision 15754

Added Delete member to wxStringHashTable in order to implement wxHelpProvider::RemoveHelp, which is now called from ~wxWindowBase. Without cleaning up the hash tables, reused window addresses will cause the CS help to fail rather comically over time.

2002-06-05 20:50 RD, revision 15753

wxMac SWIGged updates

2002-06-05 20:00 GD, revision 15752

applied SourceForge patch # 544164 (hidden virtual method in wxMenuBar)

2002-06-05 16:45 RD, revision 15751

minor updates

2002-06-05 16:30 RD, revision 15750

Give wxMSW's wxDirDialog support for wxDD_NEW_DIR_BUTTON

2002-06-05 13:03 VZ, revision 15749

updated version from Henrik Ræder Clausen

2002-06-04 20:17 RD, revision 15748

Fixed a strange MSVC compile error (C2253) It thought a pure virtual function was being defined...

2002-06-04 20:05 VZ, revision 15747

added new Danish translator

2002-06-04 19:27 RD, revision 15746

Fix and update the note about handling EVT_KEY_DOWN preventing EVT_CHAR from being sent.

2002-06-04 19:25 RD, revision 15745

Changed FindTExt intercase to more easily handle additional flags. Fixed GetCharAt and GetStyleAt to only return values 0..255 instead of possibly negative values.

2002-06-04 18:14 VZ, revision 15744

added test for wxProgressDialog::Resume

2002-06-04 18:09 VZ, revision 15743

added default parameter values to the overloaded Show() and Enable() versions

2002-06-04 18:08 VZ, revision 15742

(re)enable Cancel button in Resume()

2002-06-04 15:00 VZ, revision 15741

added incremental keyboard search to wxTreeCtrl

2002-06-04 14:59 VZ, revision 15740

added and documented wxTIMER_XXX constants to be used instead of bool parameter to wxTimer::Start()

2002-06-04 12:48 VZ, revision 15739

commented out some strange test code which resulted in memory leaks

2002-06-04 11:01 JS, revision 15738

In SetProxy, add 1 to pos when parsing port since otherwise we include the colon.

2002-06-04 08:58 VZ, revision 15737

undid WS_EX_CONTROLPARENT change -- I recall now why we can't use it

2002-06-04 08:52 VZ, revision 15736

updated translations from Henrik Ræder Clausen

2002-06-03 23:11 VZ, revision 15735

mention EVT_KEY_DOWN/CHAR change

2002-06-03 23:10 VZ, revision 15734

set focus to the page after showing it -- otherwise it's lost (well, left on the previous, now hidden, page)

2002-06-03 23:00 VZ, revision 15733

use WS_EX_CONTROLPARENT to ensure correct Alt-mnemonic handling with nested panels

2002-06-03 19:30 JS, revision 15732

Removed spurious </a> after <img> tag

2002-06-03 19:19 MBN, revision 15731

Updated message catalogs to latest CVS

2002-06-03 14:56 DW, revision 15730

Weekly OS/2 catch-up.

2002-06-02 19:30 RR, revision 15729

Another typo fixed.

2002-06-02 18:02 RR, revision 15728

Probably fixed mouse event bug introduced recently.

2002-06-02 14:24 RR, revision 15727

Overrode wxMDIChildFrame's DoSetSize to not misplace the window when it was using wxFrame's method.

2002-06-02 14:17 RR, revision 15726

Implemented CharHook events. Implemented Destroy events. (both as per SF patches).

2002-06-02 12:05 RR, revision 15725

Small fix for make win-dist

2002-06-02 10:57 RR, revision 15724

Updates to (behaviour of) wxComboBox and wxSpinCtrl.

2002-06-02 10:57 RR, revision 15723

Removed hack in Toolbar that breaks UI updates under MSW.

2002-06-02 10:56 RR, revision 15722

Added simplistic make win-dist

2002-06-01 11:48 VZ, revision 15721

replaced quotes in #include with angle brackets

2002-05-31 16:03 RR, revision 15720

Added global skope too FinControl()

2002-05-31 14:18 VZ, revision 15719

removed unused wxWindowGTK::m_isFrame

2002-05-31 14:17 VZ, revision 15718

replaced m_isRadioButton with a virtual function

2002-05-31 14:14 VZ, revision 15717

replaced wxWindowGTK::m_isListBox with a virtual function

2002-05-31 14:13 VZ, revision 15716

replaced wxWindowGTK::m_isStaticBox with a virtual function and replaced 3 occurences of the code finding the window for the mouse events with one

2002-05-31 14:00 VZ, revision 15715

replaced wxWindowGTK::m_isListBox with a virtual function

2002-05-31 13:51 VZ, revision 15714

fixes for the focus handling: don't set back to back set/kill focus events

2002-05-31 13:49 VZ, revision 15713

added tests for the focus events

2002-05-31 10:00 RR, revision 15712

Added wxToolBar::FindControl() to fish out controls in a toolbar by its id.

2002-05-31 09:59 RR, revision 15711

Doc tweaks for FindWindowByXX Docs for SetThemeEnabled Docs for wxToolBar::FindControl

2002-05-31 07:41 RR, revision 15710

Documented wxClienData and friends.

2002-05-30 21:16 VZ, revision 15709

removed some duplicate code, no real changes

2002-05-30 19:49 RD, revision 15708

Updated setup.h settings

2002-05-30 18:40 RD, revision 15707

Updated wxPython build instructions

2002-05-29 18:47 RD, revision 15706

Removed Refresh from OnSize as it's not needed anymore

2002-05-29 08:31 JS, revision 15705

Applied patch #561454, testing for scrollbar

2002-05-29 08:28 JS, revision 15704

Corrected some typos

2002-05-28 21:50 DW, revision 15703

Catching up for the week

2002-05-28 17:14 VZ, revision 15702

corrected the completely wrong example (bug 545427)

2002-05-28 16:54 VZ, revision 15701

fix compilation without WXDEBUG (includes patch 561458)

2002-05-28 16:52 VZ, revision 15700

use new style ctor for wxFontDialog (patch 561411)

2002-05-28 16:51 VZ, revision 15699

added consts to wxAcceleratorTable ctors from wxAcceleratorEntry array (repaces patch 561183)

2002-05-28 16:44 VZ, revision 15698

fixed icon drawing when they have different sizes (patch 554973)

2002-05-28 16:30 VZ, revision 15697

unselected the current item when unfocusing it in a single selection list control (patch 540818)

2002-05-28 11:29 VZ, revision 15696

added asserts to ensure that the splitter windows have it as parent (otherwise they're not positioned correctly)

2002-05-27 22:14 RD, revision 15695

No, I didn't test it before. This is what I meant to do!

2002-05-27 22:06 RD, revision 15694

Patch 559673 and 561053

2002-05-27 21:22 RD, revision 15693

Some little demo updates

2002-05-27 21:21 RD, revision 15692

Fixed wxMac's wxStaticText::SetFont to behave like the others and resize the control to fit the text

2002-05-27 19:47 RD, revision 15691

Fixed a tex2rtf warning

2002-05-27 19:34 RD, revision 15690

SWIGged updates for wxMac

2002-05-27 19:23 RD, revision 15689

Changed the default style flags on wxSplashScreen

2002-05-27 18:39 RD, revision 15688

workaround for assert about wxFRAME_FLOAT_ON_PARENT

2002-05-27 18:24 RD, revision 15687

SWIGged updates for wxGTK

2002-05-27 17:55 RD, revision 15686

SWIGged updates for wxMSW

2002-05-27 17:54 RD, revision 15685

Fix exception when there are no items in the sizer yet

2002-05-27 17:53 RD, revision 15684

Added a bit of test code (commented out)

2002-05-27 17:53 RD, revision 15683

Reduce flicker in the demo when image is dragged out of the frame

2002-05-27 17:52 RD, revision 15682

changes to match recent CVS updates

2002-05-27 17:51 RD, revision 15681

Some cleanup

2002-05-27 17:50 RD, revision 15680

UsePrimarySelection

2002-05-26 22:41 VZ, revision 15679

added wxWizard::Fit()

2002-05-26 22:37 VZ, revision 15678

attempts to make GetBestSize() work using constraints (failed)

2002-05-26 12:51 VZ, revision 15677

set the id in wxMouseEvent (bug 484245)

2002-05-26 12:46 VZ, revision 15676

added more spin event handlers

2002-05-26 12:46 VZ, revision 15675

updated wxSpinXXX event docs

2002-05-26 12:19 VZ, revision 15674

add full 32 bit range support to wxSpinButton/Ctrl

2002-05-26 12:04 VZ, revision 15673

set the focus to the first control in the dialog when it is shwon

2002-05-26 11:49 VZ, revision 15672

globally renamed INT32 to JPEG_INT32 to solve the [re]definition problems with cygwin/mingw32 headers which sometimes define INT32 and sometimes don't

2002-05-26 10:53 VZ, revision 15671

added test for EditLabel, Unicode fixes

2002-05-26 10:53 VZ, revision 15670

fix for the crash when pressing TAB in the edit control created by EditLabel() (bug 555749)

2002-05-26 07:53 SC, revision 15669

make sure we are removing ourselves from the focus of the toplevel frame when deleting (copied from msw)

2002-05-26 07:49 SC, revision 15668

added accessors for last focus

2002-05-25 21:01 VZ, revision 15667

fixes to better remember the last focused child; also restore it using SetFocus() and not SetFocusFromKbd()

2002-05-25 20:34 VZ, revision 15666

fixed assert when using wxMiniFrame (result of recent changes)

2002-05-25 17:11 VZ, revision 15665

changes to wxFRAME_NO_TASKBAR/FLOAT_ON_PARENT styles handling which should now work more as expected

2002-05-25 14:24 VZ, revision 15664

new wxWindow::FindWindowByXXX() methods replacing the old global functions (patches 560214, 559916, 559811, ...)

2002-05-25 14:23 VZ, revision 15663

fixed calling Union() or Offset() on a previously Clear()ed region, also removed some duplicate code (bug 560302 and more)

2002-05-25 13:02 VZ, revision 15662

prevent the parent window from losing activation when a popup is shown

2002-05-25 09:40 RR, revision 15661

Set the focus to the html display window if the help frame comes to the front. With this, you can use context sensitive help systems without the mouse.

2002-05-24 22:23 VZ, revision 15660

added test for loading image from wxMemoryStream

2002-05-24 22:09 VZ, revision 15659

fixed wxStreamBuffer::Tell() to return at least sometimes a valid result

2002-05-24 21:31 VZ, revision 15658

wxTextCtrl::OnChar() can't be used to translate the key strokes in the text control

2002-05-24 17:15 RD, revision 15657

and fixed a type too

2002-05-24 16:28 RD, revision 15656

Fixed a quoting problem

2002-05-23 23:02 VS, revision 15655

backported fix for wxZipInputStream::OnSysSeek

2002-05-23 22:01 VZ, revision 15654

fixedb ug with normalization of UNC paths (patch 558701)

2002-05-23 21:52 VZ, revision 15653

popup windows wre not using TOPMOST style under wxUniv any longer -- fixed

2002-05-23 21:25 VZ, revision 15652

wxUniv compilation fixes (patch 559620)

2002-05-23 21:23 VZ, revision 15651

ixed compilation for wxUSE_STREAMS == 0

2002-05-23 20:35 RR, revision 15650

The combobox didn't like empty strings at all. It caused the pop-up-list to get skrewed up.

2002-05-23 17:57 RR, revision 15649

Redirect SetFocus Part II.

2002-05-23 17:57 RR, revision 15648

Redirect wxComboBox::SetFocus to its text field Part I.

2002-05-23 17:56 RR, revision 15647

Let wxFileSystem use wxFFileInputstream and not wxFileInoutStrea as that is broken on Macs.m

2002-05-23 17:54 RR, revision 15646

Did I change anything here?

2002-05-23 17:53 RR, revision 15645

wxSPinCtrl no longer set focus to its text field when setting a value.

2002-05-23 17:52 RR, revision 15644

wxButtons no longer leave junk on dialogs when moved.

2002-05-22 23:36 VZ, revision 15643

fixed propagating of EVT_WIZARD_XXX events to the parent

2002-05-22 23:14 VZ, revision 15642

restore the stream position in wxImageHandler itself instead of forcing all derived classes to do it themselves

2002-05-22 22:48 VZ, revision 15641

added \\server\dir\filename.exe test case

2002-05-22 22:47 VZ, revision 15640

no, we shouldn't inconditionally add the separator at the end even if wxPATH_GET_SEPARATOR was specified -- this is wrong for file names without path at all

2002-05-22 22:28 VZ, revision 15639

added wxDir::Exists() test

2002-05-22 21:01 RR, revision 15638

wxImage::Copy() didn't really just copy the image, it sometimes changed the mask colour, when it was unused. This patch makes life easier.

2002-05-22 18:04 VZ, revision 15637

added a compile time assert to prevent wxArray from compiling when sizeof(long) > sizeof(void *) as it is broken in this case

2002-05-22 17:22 RD, revision 15636

Fixed bug when sizer if offset from 0,0. Also removed old commented out code

2002-05-22 16:27 VZ, revision 15635

added a check which should prevent the crash of bug 555111

2002-05-22 15:56 VZ, revision 15634

fixed GL case in #include (patch 557178)

2002-05-22 15:54 VZ, revision 15633

mingw/cygwin compilation fix (patch 556157)

2002-05-22 15:49 VZ, revision 15632

fixed ProcessMessage() signature

2002-05-21 22:26 VS, revision 15631

download clarification

2002-05-21 21:03 RD, revision 15630

wxMac updates

2002-05-21 20:45 SC, revision 15629

survive delete within Notify

2002-05-21 20:44 SC, revision 15628

show/hide via moving

2002-05-21 20:43 SC, revision 15627

initial value set

2002-05-21 20:35 SC, revision 15626

added hide/show

2002-05-21 04:20 DW, revision 15625

Catching up for the week

2002-05-21 04:19 DW, revision 15624

Font dialog fix

2002-05-20 20:34 SC, revision 15623

carbon event handlers

2002-05-20 20:33 RD, revision 15622

wxSystemScreen --> wxSystemScreenType

2002-05-20 20:33 SC, revision 15621

Carbon-Standard conversion

2002-05-20 20:32 SC, revision 15620

Dan 'Bud' Keith's Implementation

2002-05-20 20:31 SC, revision 15619

OnInit for adding carbon event handlers

2002-05-20 20:28 SC, revision 15618

uma.h added

2002-05-20 20:18 SC, revision 15617

carbon event handlers for app level

2002-05-20 20:17 SC, revision 15616

Dan 'Bud' Keith's implementation

2002-05-20 20:15 SC, revision 15615

removed internal carbon events handlers, switch to using and resetting toplevel's handlers

2002-05-20 20:14 SC, revision 15614

added carbon event handlers

2002-05-20 20:13 SC, revision 15613

changing the focus part code

2002-05-20 16:16 JS, revision 15612

Applied drag fix to row labels as well

2002-05-20 15:28 VZ, revision 15611

added docs for a few missing methods (Inside, Deflate, Offset)

2002-05-20 14:06 SC, revision 15610

corrected initialization order of MLTE

2002-05-20 13:17 JS, revision 15609

Captured mouse in grid column label so the drag isn't prematurely and messily ended when moving out of the column label window.

2002-05-20 10:42 RR, revision 15608

Sometimes, deleting code can be a real gain. This fixes display corruption when a scroll window is made smaller and it was previously scrolled to the bottom or right most position.

2002-05-19 22:44 VS, revision 15607

Cosmetic changes to wxSS::GetScreen: 1) Renamed to GetScreenType (so that the name better describes its function) 2) Changed use of <,>,<=,>= operators together with wxSYS_SCREEN_* so that 'foo is smaller that bar' is written as 'foo < bar' and not (sic) 'foo > bar'

2002-05-19 08:00 SC, revision 15606

corrected direction when sending events

2002-05-19 07:09 GD, revision 15605

corrected assignement operator

2002-05-18 23:36 VZ, revision 15604

refuse to run if not executed by the main configure script

2002-05-18 23:33 VZ, revision 15603

pass IF_GNU_MAKE and other configure params to the samples configure in wxUSE_GUI==0 case too

2002-05-18 17:30 RD, revision 15602

Applied patch to adjust ownership and permissions in the installer package.

2002-05-18 12:41 VZ, revision 15601

check the return code of wxStream::Read() in wxImageHandler::DoCanRead() and avoid reading uninitialized memory when it fails

2002-05-18 11:05 JS, revision 15600

Updated font dialog constructors to use a reference to the font data as per more recent convention

2002-05-17 23:54 VZ, revision 15599

made SetItemText() work for the item which we're about to start editing

2002-05-17 20:14 SC, revision 15598

conditionalized theme box drawing

2002-05-17 20:13 SC, revision 15597

autoresize upon setting new bitmap

2002-05-17 20:13 SC, revision 15596

fixed wxScreenDC for X

2002-05-17 17:19 RD, revision 15595

Fixed the package build script so wxPython is built with the same version of wxWindows made by the same script.

2002-05-17 16:00 RD, revision 15594

Commented out debug messages

2002-05-17 14:10 SC, revision 15593

title-less windows also for windows

2002-05-17 12:22 SC, revision 15592

using QD Text under non OSX

2002-05-17 12:20 SC, revision 15591

working closer to proper MLTE support under OSX

2002-05-17 12:19 SC, revision 15590

no event upon changing value only anymore

2002-05-17 12:18 SC, revision 15589

conditials for TARGET_CARBON when drawing using appearance text box

2002-05-17 12:16 SC, revision 15588

changed char event handling for ctrl-chars and skipped events

2002-05-17 12:08 SC, revision 15587

added GetApplicationScript for non Carbon builds

2002-05-17 06:01 RD, revision 15586

A few little tweaks

2002-05-17 05:36 RD, revision 15585

A few little tweaks, reswigged code for wxMac

2002-05-17 05:33 RD, revision 15584

Scripts to make a installer package in a disk image for wxPython and for Python too. It's a strange mixture of sh, csh and perl, but it works.

2002-05-16 19:27 VZ, revision 15583

fixed the selection rectangle drawing (was off by 1)

2002-05-16 19:26 VZ, revision 15582

use the menu item text, not label, in the owner drawn items

2002-05-16 18:48 VZ, revision 15581

fixed wrong array index in UuidToCForm

2002-05-16 12:49 JJ, revision 15580

Committing in . OpenVMS configuration file update. Modified Files: wxWindows/setup.h_vms ----------------------------------------------------------------------

2002-05-16 10:45 VZ, revision 15579

generate EVT_SCROLL events for the standalong scrollbars, not EVT_SCROLLWIN

2002-05-15 20:03 JS, revision 15578

Check for null return value in wxClientDC constructor

2002-05-15 19:59 JS, revision 15577

Don't call a function that might do drawing when setting a null image list (might be deleting the tree control)

2002-05-15 19:46 RD, revision 15576

Updates from contributor

2002-05-15 19:46 RD, revision 15575

An implementation of wxPen.GetDashes. wxSplitterEvent derives from wxNotifyEvent.

2002-05-15 19:45 RD, revision 15574

demo update

2002-05-15 19:09 RD, revision 15573

Some files to ignore

2002-05-15 19:07 RD, revision 15572

wxSTC changes to help it work better on wxMac

2002-05-15 19:06 RD, revision 15571

more demo updates

2002-05-15 13:13 JS, revision 15570

Added missing const for operator !=

2002-05-15 06:22 GD, revision 15569

applied copy constructor fix to assignment operator as well

2002-05-15 05:05 RD, revision 15568

Re-enable clipboard and DnD classes for wxMac

2002-05-15 05:05 RD, revision 15567

demo updates

2002-05-14 20:38 JS, revision 15566

In an expose event, the m_clearRegion is also updated as well as m_updateRegion because otherwise in a scroll or resize, a custom OnEraseBackground method will draw over more window than OnPaint will redraw -- clearly not what's wanted.

2002-05-14 18:10 VZ, revision 15565

don't send SPLITTER_POS_CHANGED events when the splitter position was changed from the program itself

2002-05-14 17:58 VS, revision 15564

no, DO NOT use wxMessageBox where wxLogError is more suitable (and don't display Information icon when reporting an *error* (sigh...))

2002-05-14 15:49 JS, revision 15563

Fixed double deletion in region iterator

2002-05-14 14:37 RD, revision 15562

Fixed a lost #else

2002-05-14 14:05 JS, revision 15561

Initialized control member pointers and checked for null pointer to make controls sample run on MacOS X again

2002-05-14 13:53 JS, revision 15560

Now shows author correctly under MacOS X

2002-05-14 12:28 VZ, revision 15559

added missing extern "C" required for Sun CC

2002-05-14 11:33 , revision 15558
  • A /wxWidgets/tags/INT32_TO_JPEG_INT32
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/.cvsignore
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/acinclude.m4
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/aclocal.m4
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/art
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/autogen.sh
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/BuildCVS.txt
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/config.guess
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/config.sub
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/configure
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/configure.in
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/contrib
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/debian
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/demos
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/descrip.mms
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/difflast.pl
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/distrib
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/docs
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/include
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/install-sh
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/lib
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/locale
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/Makefile.in
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/Mingw32-gcc295.patches
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/make-deb
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/misc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/mkinstalldirs
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/regen
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/samples
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/setup.h.in
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/setup.h_vms
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/.cvsignore
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/common
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/cwcopysetup.bat
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/cwdcopysetup.bat
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/cygnus.bat
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/files.lst
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/generic
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/gtk
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/gtk1
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/html
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/iodbc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/mac
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/make.env.in
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makeb32.env
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makebcc.env
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makefile.bcc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makefile.dos
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makefile.va
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makefile.vc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makeg95.env
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makelib.b32
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makelib.bcc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makelib.env.in
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makelib.g95
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makelib.vc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makelib.wat
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makemac6.mcp
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makemac7.mcp
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makemsc.env
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makeprog.b32
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makeprog.bcc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makeprog.env.in
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makeprog.g95
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makeprog.msc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makeprog.sl
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makeprog.va
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makeprog.vc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makeprog.wat
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makesc.env
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makesl.env
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/maketwin.env
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makeva.env
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makevc.env
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/makewat.env
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/mgl
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/microwin
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/mingegcs.bat
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/mingw32.bat
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/motif
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/msw
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/ntwxwin.mak
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/os2
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/png
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/regex
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/stc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/tiff
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/univ
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/unix
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/Wxwindll.icc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/wxBase.dsp
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/wxBase.dsw
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/wxJpeg.icc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/wxPng.icc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/wxTiff.icc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/wxUniv.dsp
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/wxUniv.dsw
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/wxWin.icc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/wxWindows.dsp
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/wxWindows.dsw
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/wxWindowsM7.mcp
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/wxWindowsW7.xml
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/wxwindowsM5.xml
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/wxXpm.icc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/wxZlib.icc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/x11
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/xrc
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/src/zlib
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/utils
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/wx-config.in
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/wxBase.spec
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/wxGTK.spec
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/wxMotif.spec
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/wxPython
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/wxWINE.spec
  • D /wxWidgets/tags/INT32_TO_JPEG_INT32/wxwin.m4

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

2002-05-14 11:33 VZ, revision 15557

renamed main to mymain to suppress the warnings

2002-05-14 11:28 VZ, revision 15556

fixed a warning

2002-05-14 11:28 JS, revision 15555

Initialized the controls on the widgets spinbutton page and checked for NULL in one of the event handlers, since on the Mac the event handler may be called before the control is properly initialized Tested for an empty string in Mac's textctrl.cpp else we get a crash if there is nothing in the text control

2002-05-14 11:09 VZ, revision 15554

wanted to fix zlib include path but it turned out to be already ok so I just added a comment saying why should it be left like this

2002-05-14 07:50 RD, revision 15553

swigged updates for wxMac

2002-05-14 07:49 RD, revision 15552

Fixing nested triple quotes again

2002-05-14 07:49 RD, revision 15551

Use the stdout/stderr window by default on Mac too. Force it on in the demo.

2002-05-14 07:47 RD, revision 15550

Minor updates to build scripts

2002-05-14 07:44 RD, revision 15549

wxSTC begins to work on wxMac...

2002-05-14 00:06 RD, revision 15548

If'd out the listbox on wxPopupWindow test for now

2002-05-13 23:50 VZ, revision 15547

documented wxFileName::SplitPath(), added more obsolescence notes about the functions superseded by wxFileName

2002-05-13 23:49 VZ, revision 15546

cleared the wxFileNameFromPath mess

2002-05-13 23:31 RD, revision 15545

Added some inline helpers so the dependence on wxUSE_UNICODE and wxUSE_WCHAR_T can be localized instead of having #if's all over the place.

2002-05-13 20:33 RD, revision 15544

The use of wxPopupWindow fo rhte autocomplete and calltip windows is now a little better integrated.

2002-05-13 18:11 DW, revision 15543

Popup Window now supported in OS/2 (for tipwindows and such associated with toolbars).

2002-05-13 18:10 DW, revision 15542

Weekly catch up.

2002-05-13 18:09 DW, revision 15541

WXPM now uses popupwindows.

2002-05-13 16:54 JS, revision 15540

textctrl.cpp: Removed assert from CanRedo/CanUndo since the best behaviour is to return FALSE (Redo/Undo functions are unimplemented) treectrlg.cpp: in InsertItem, allow previous item to be null in order to insert at first position of possibly-empty child list dcclient.cpp: allow setting of null font (common espec. on Windows)

2002-05-13 15:49 DW, revision 15539

Compiler bug

2002-05-13 10:11 JS, revision 15538

Eliminated a couple of warnings

2002-05-13 05:41 GD, revision 15537

use built-in wcslen instead of disabling wide character support for Darwin

2002-05-12 22:46 VZ, revision 15536

fixed bug with using wrong interval (-1) when restarting a running timer

2002-05-12 22:26 VZ, revision 15535

fixes to wxFontDialog after recent changes

2002-05-12 19:35 VZ, revision 15534

fixed wxFontDialog API: accept const ref instead of (well, in addition to) a possibly NULL pointer

2002-05-12 18:43 JS, revision 15533

Added overloaded AddChild from contributor

2002-05-12 16:08 JS, revision 15532

Fixed mouse handling for captured windows Didn't need most of the cshelp fix

2002-05-12 12:47 JS, revision 15531

Don't use context id for context help since it doesn't seem to be working at present

2002-05-12 12:46 JS, revision 15530

Added recursive event handler pushing to fix context help problem.

2002-05-12 11:34 JS, revision 15529

Added missing brace in checkbox.tex

2002-05-12 11:28 VZ, revision 15528

added the test for GtkText inside wxYield crash

2002-05-12 11:26 VZ, revision 15527

fixed crashes in GtkText when it was refreshed from inside wxYield

2002-05-12 11:25 VZ, revision 15526

made wxIsInsideYield global -- will be fixed when we have some better way to test if we're inside wxYield() from wxApp

2002-05-12 11:10 JS, revision 15525

Added deprecated property classes for future reference (maybe separate manual)

2002-05-12 09:17 GD, revision 15524

use tm_gmtoff instead of timezone variable if tm struct member exists

2002-05-12 08:49 GD, revision 15523

no timezone variable is only a warning instead of an error (use tm_gmtoff instead, in particular for Darwin / Mac OS X)

2002-05-12 07:48 GD, revision 15522

corrected wxFontData assignement operator (was recursive!)

2002-05-12 04:16 RD, revision 15521

swigged updates for wxGTK

2002-05-12 03:20 RD, revision 15520

various tweaks and updates

2002-05-11 23:40 VZ, revision 15519

added a comment about the default button handling

2002-05-11 23:34 VZ, revision 15518

don't treat Enter always as Tab, just for the text controls

2002-05-11 23:24 VZ, revision 15517

fixed typo

2002-05-11 22:31 VZ, revision 15516

changed the handling of the default buttons to be more logical

2002-05-11 17:14 GD, revision 15515

added wxControlWithItems constructor/destructor (for Darwin)

2002-05-11 17:13 GD, revision 15514

corrected pragma interface

2002-05-11 15:09 VZ, revision 15513

fixed zlib compression test

2002-05-11 15:08 VZ, revision 15512

fixed incorrect assert for the default compression level value

2002-05-11 14:41 VZ, revision 15511

don't test for msvcrt under Unix nor libw under Windows in wcslen() test

2002-05-11 13:45 VZ, revision 15510

fixed the rule for compiling the RC files

2002-05-11 08:43 MBN, revision 15509

const KEY_T& does not do the right thing for pointers.

2002-05-11 06:55 SC, revision 15508

appearance box drawing

2002-05-11 06:55 SC, revision 15507

appearance fonts

2002-05-11 06:54 SC, revision 15506

key handling

2002-05-11 06:54 SC, revision 15505

corrected background

2002-05-11 06:53 SC, revision 15504

common value changed code for spinbutton

2002-05-11 06:53 SC, revision 15503

fixed redrawing bug

2002-05-11 06:52 SC, revision 15502

added carbon events for navigation keys, size corrections

2002-05-11 06:51 SC, revision 15501

tooltip displaying correct background under OSX , antialiased system font used

2002-05-11 06:50 SC, revision 15500

toplevel native window disposal in deferred delete clas

2002-05-11 06:49 SC, revision 15499

changed initialization of TXN in order to avoid crashes on OSX

2002-05-11 06:48 SC, revision 15498

native window disposal is moved to deferred delete, size of parent taken into account for apply background

2002-05-11 06:45 SC, revision 15497

corrected appeaance of boxes und OSX

2002-05-11 06:43 SC, revision 15496

switched to appearance savvy gui/system fonts

2002-05-11 06:39 SC, revision 15495

exposed background theme

2002-05-11 06:39 SC, revision 15494

DrawParagraph changed

2002-05-11 06:38 SC, revision 15493

common value change method

2002-05-11 06:38 SC, revision 15492

added keyboard focus & typein

2002-05-10 19:21 VZ, revision 15491

some warnings fixed, checks for various wxUSE_XXX added

2002-05-10 19:15 VZ, revision 15490

fixes for BSD make

2002-05-10 19:01 GD, revision 15489

removed test supposed to detect lazy binding issues since it breaks loading of dynamic modules

2002-05-10 18:41 RD, revision 15488

Fixed a crash when GetMonthControl returns NULL

2002-05-10 18:28 VZ, revision 15487

fix compilation for the platforms which don't have RTLD_NOW/GLOBAL (like OpenBSD 3.0)

2002-05-10 18:21 VZ, revision 15486

don't define wxUSE_WCHAR_T on systems without wcslen(), don't check for wchar_t twice

2002-05-10 16:56 VZ, revision 15485

test for HAVE_FNMATCH, not HAVE_FNMATCH_H

2002-05-10 16:55 VZ, revision 15484

HAVE_FNMATCH added

2002-05-10 15:16 VZ, revision 15483

renamed Wiztest.bmp to wiztest.bmp

2002-05-10 12:56 VZ, revision 15482

fixed compilation error when x-compiling (patch from Fabian Wenzel)

2002-05-10 12:53 VZ, revision 15481

set OPENGL_LIBS when x-compiling for MSW (patch from Fabian Wenzel)

2002-05-10 12:51 VZ, revision 15480

1. moved the test for glibc >= 2.1 after AC_PROG_CC 2. fixed this test so the result is realyl cached 3. added test for fnmatch() because when cross-compiling we can find fnmatch.h but fnmatch() could still be unaccessible

2002-05-10 12:26 VZ, revision 15479

Unicode compilation problems in the samples (patch from Dimitri)

2002-05-10 04:09 DW, revision 15478

Fix for upside down bmp projections

2002-05-10 04:08 DW, revision 15477

Folder icon

2002-05-09 23:04 VZ, revision 15476

fixed return value of Enable() and Disable()

2002-05-09 23:01 VZ, revision 15475

don't put the windows created with y or height of -1 off screen

2002-05-09 22:49 RD, revision 15474

Added a couple missing WXDLLEXPORTs

2002-05-09 22:34 , revision 15473

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

2002-05-09 22:34 VZ, revision 15472

applied patch to build wxMSW with CW7 (patch 550445)

2002-05-09 22:21 VZ, revision 15471

fixed list item attributes when inserting/deleting items (patch 548391)

2002-05-09 21:58 VZ, revision 15470

tests for multiple selection check listboxes

2002-05-09 18:52 RD, revision 15469

swigged updates for wxMac

2002-05-09 18:21 RD, revision 15468

updates for recent CVS changes

2002-05-09 17:21 VZ, revision 15467

added/documented wxApp::FilterEvent

2002-05-09 15:59 VZ, revision 15466

added (and documented) wxSafeShowMessage, use it in wxLogFatalError instead of wxMessageBox

2002-05-09 15:59 VZ, revision 15465

added build options check

2002-05-09 15:58 VZ, revision 15464

the build options are now checked in the application, not the library which allows to avoid having to define wxGetBuildOptions()

2002-05-09 15:57 VZ, revision 15463

no changes

2002-05-09 12:38 GD, revision 15462

updated CodeWarrior 5.3 exported xml projects

2002-05-09 12:18 GD, revision 15461

implement explicit copying instead of forbidding it

2002-05-09 10:01 JS, revision 15460

Customization dialog not implemented, so don't show the menu item

2002-05-09 00:28 VZ, revision 15459

generate the mouse click events for the static controls

2002-05-09 00:28 VZ, revision 15458

test that static text and box get the click events

2002-05-08 23:59 SC, revision 15457

fixed casting for X

2002-05-08 23:30 SC, revision 15456

added spinctrl to be ignored when clicked (otherwise its siblings on the same window position will not get the clicks)

2002-05-08 23:28 SC, revision 15455

display rect fixed

2002-05-08 23:25 SC, revision 15454

only use tool window style for floating windows, no modal dialog class (layer problems)

2002-05-08 23:23 SC, revision 15453

added mlte initialization

2002-05-08 23:22 SC, revision 15452

added mlte implementation

2002-05-08 23:14 SC, revision 15451

added rtti info (python problem)

2002-05-08 22:55 SC, revision 15450

layout improvement on mac

2002-05-08 22:53 SC, revision 15449

added small font for wxSWISS

2002-05-08 22:52 SC, revision 15448

filename workaround CW bug in debug builds

2002-05-08 22:50 SC, revision 15447

added rtti to tooltip, mlte implementation to textctrl

2002-05-08 22:29 VZ, revision 15446

added missing wxListItem copy ctor to wxMSW, moved wxListItem to the header to avoid duplicating it in wxMSW and the generic versions

2002-05-08 22:20 VZ, revision 15445

compilation fix for wxObject NO_COPY

2002-05-08 21:28 GD, revision 15444

regenerated for new build.h file

2002-05-08 21:17 GD, revision 15443

implemented lazy binding detection (broken RTTI classinfo detection) forbid copying of wxObject and wxClassInfo corrected conditional compilation for CodeWarrior 5.3

2002-05-08 21:13 GD, revision 15442

implemented explicit copy constructors (needed for cloning) declared private assignement operators

2002-05-08 19:57 MBN, revision 15441

Added documentation for wxListItem. Still need to strip the one in wxListCtrl::SetItem, or better move it to listitem,tex+mark it obsolete.