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.

2002-05-08 19:51 MBN, revision 15440

Fix _ quoting to make tex2rtf happier

2002-05-08 19:44 GD, revision 15439

added missing include file

2002-05-08 19:00 JS, revision 15438

Added Ok() member for print data, print dialog, page dialog, page dialog data so we can test in advance whether the print/page setup dialogs will fail. Removed assertions that would fire if the default printer was not found, for example. Added call to Ok() from HTML print code with suitable error message. Commented out my erroneous fix to wxStaticText.

2002-05-08 18:45 GD, revision 15437

improved dependencies for Info.plist corrected makefile (spaces => tabs)

2002-05-08 18:18 GD, revision 15436

corrected application bundle building for Mac OS X

2002-05-08 17:13 GD, revision 15435

added handling of -undefined and -flat_namespace options

2002-05-08 14:17 GD, revision 15434

corrected warnings when compiling with -Wall -W

2002-05-08 14:14 VZ, revision 15433

added missing header for not PCH case

2002-05-08 14:11 GD, revision 15432

improved out of memory handling by return failure status where possible and adding asserts in debug mode (suggested by SourceForge patch # 544906) corrected warnings when compiling with -Wall -W

2002-05-08 14:02 GD, revision 15431

removed useless trailing semicolon

2002-05-08 14:00 GD, revision 15430

corrected warnings when compiling with -Wall -W

2002-05-08 13:55 GD, revision 15429

implemented missing copy constructor (needed for non trivial member) corrected warnings when compiling with -Wall -W

2002-05-08 13:47 GD, revision 15428

ignore Mac OS X specific files

2002-05-08 13:30 GD, revision 15427

added DECLARE_NO_COPY_CLASS where appropriate since wxObject should not provide implicit copy constructor or assignement (will be corrected)

2002-05-08 13:28 MBN, revision 15426

Fixed programming error (and BCC warning).

2002-05-08 13:24 GD, revision 15425

corrected warnings when compiling with -Wall -W

2002-05-08 13:19 GD, revision 15424

corrected conditional compilation for Darwin / Mac OS X

2002-05-08 13:17 GD, revision 15423

corrected warnings when compiled with -Wall -W

2002-05-08 13:14 GD, revision 15422

ignore Mac OS X specific files

2002-05-08 12:48 GD, revision 15421

improved dynamic shared library creation for Darwin / Mac OS X

2002-05-08 12:42 JJ, revision 15420

Committing in . updates for OpenVMS Modified Files: wxWindows/src/common/descrip.mms wxWindows/src/motif/clipbrd.cpp Added Files: wxWindows/samples/db/descrip.mms ----------------------------------------------------------------------

2002-05-08 12:36 GD, revision 15419

implemented cbCommonPaneProperties copy constructor and assignment operator

2002-05-08 12:32 GD, revision 15418

pi is static to avoid link error under Mac OS X (already defined by system lib)

2002-05-08 05:22 DW, revision 15417

More of the same.

2002-05-07 23:29 VZ, revision 15416

added src/msw/popupwin.cpp to the makefiles

2002-05-07 23:27 VZ, revision 15415

fixed Windows style of wxPopupWindow

2002-05-07 23:16 VZ, revision 15414

fixed typos and tmakecmd/TMAKE/TM confusion

2002-05-07 22:27 DW, revision 15413

More image processing updates

2002-05-07 21:58 GD, revision 15412

corrected warnings when compiling with -Wall -W

2002-05-07 20:40 GD, revision 15411

implemented explicit copy constructor and assignement operator

2002-05-07 19:59 VZ, revision 15410

Added wx/build.h

2002-05-07 19:56 VZ, revision 15409

added wxBuildOptions and check that they are the same for the program and the library on startup

2002-05-07 19:52 GD, revision 15408

ignore CodeWarrior output files

2002-05-07 17:03 DW, revision 15407

More image updates

2002-05-07 16:40 VZ, revision 15406

fixed typo for MSW cross-compilation

2002-05-07 16:40 VZ, revision 15405

fixed compilation without PCH

2002-05-07 16:35 VZ, revision 15404

removed Left(char ch) version which doesn't exist any more

2002-05-07 04:56 DW, revision 15403

Mono bitmap processing updates

2002-05-06 22:35 RR, revision 15402

Fixed tree control redraw bug, which had nothing ro do with scrolling. Someone just removed my use

2002-05-06 21:48 DW, revision 15401

OS/2 Image processing updates along with some statusbar updates

2002-05-06 21:47 DW, revision 15400

OS/2 Image processing updates

2002-05-06 14:59 RD, revision 15399

Fixed nested triple quotes problem

2002-05-06 14:09 VZ, revision 15398

wxPanel is a canvas in wxUniv sense of the word

2002-05-06 13:46 JS, revision 15397

Did a small amount of proofreading of the ODBC docs.

2002-05-06 11:40 VZ, revision 15396

added wxCheckBox::IsChecked() to wxMac and documented it

2002-05-06 10:52 VZ, revision 15395

include wx/defs.h to get wxUSE_FFILE

2002-05-06 10:51 VZ, revision 15394

typo fixed: __WXUNIV__ => __WXUNIVERSAL__

2002-05-05 23:09 VZ, revision 15393

fixed multiple bugs in multiple selection wxCheckListBoxes

2002-05-05 21:31 VZ, revision 15392

fixed compilation and added a test for OnErase() to the sample

2002-05-05 20:03 GD, revision 15391

use Darwin specific double step shared library linking script do not add shared library resources to generated executables

2002-05-05 19:56 GD, revision 15390

script to link a mach-o dynamic shared library for Darwin / Mac OS X

2002-05-05 19:27 MBN, revision 15389

Documentation for wxClipboard::Flush Added \label in window.tex

2002-05-05 18:27 VS, revision 15388

fixes to gcc pragmas

2002-05-05 18:26 VS, revision 15387

gcc pragmas fixes

2002-05-05 16:09 GD, revision 15386

improved opening/closing of shared library resources so that Mach-O shared library resources are opened in wxApp::Initialize and closed in wxApp::CleanUp

2002-05-05 14:25 VZ, revision 15385

added files for LaTeX compilation (second part of the patch 551210)

2002-05-05 14:24 VZ, revision 15384

fixed LaTeX compilation problems (part of patch 551210)

2002-05-05 14:18 VZ, revision 15383

added wxShutdown (patch 547443)

2002-05-05 11:36 RR, revision 15382

Corrected double clicks (always on the same window). Corrected mouse up events (same window as mouse down).

2002-05-05 09:35 JS, revision 15381

Doc tweaks Added back mouse sensitivity to wxStaticText Added code to widgets sample to test for sensitive wxStaticTexts

2002-05-05 07:31 RR, revision 15380

Corrected wrong use of delete in region code.

2002-05-05 04:21 RD, revision 15379

swigged code update for wxMac

2002-05-05 04:20 RD, revision 15378

swigged code update for wxGTK

2002-05-05 04:17 RD, revision 15377

Various minor tweaks and updates

2002-05-04 18:33 RR, revision 15376

Added screen design to system settings for different dialog layouts on desktop vs PDA screens

2002-05-04 15:26 SN, revision 15375

Updated documentation according to recent array changes.

2002-05-04 14:22 VZ, revision 15374

reverted the header change to include the generic one always

2002-05-04 14:19 GD, revision 15373

utility scripts to manipulate xml CodeWarrior 5.3 project files

2002-05-04 14:17 GD, revision 15372

updated todo list

2002-05-04 14:16 GD, revision 15371

updated Universal Interfaces requirements for CodeWarrior 5.3

2002-05-04 13:17 GD, revision 15370

added missing include file

2002-05-04 12:45 VZ, revision 15369

fixed compilation when included directly and not via wx/dirdlg.h

2002-05-04 12:43 VZ, revision 15368

fixed wxDirDialog ctor docs

2002-05-04 12:38 VZ, revision 15367

wxDirDialog now has the same ctor under all platforms and also uses the correct default title string

2002-05-04 12:01 VZ, revision 15366

no changes (0 -> NULL)

2002-05-04 11:57 VZ, revision 15365

initialize wxBitmapButton members

2002-05-04 11:53 RR, revision 15364

Made OnInit() and OnRun() logic like MSW when it comes to quitting the app with no windows. Fixed overlapping windows when detaching the toolbar from the main frame.

2002-05-04 10:50 VS, revision 15363

added CSS stylesheets support to tex2rtf

2002-05-04 08:50 GD, revision 15362

corrected Mac OS X resources compilation target

2002-05-04 04:53 RD, revision 15361

swigged updated code for wxMac

2002-05-04 00:23 RD, revision 15360

swigged code update for wxGTK

2002-05-03 23:33 RD, revision 15359

Updates for Push/Pop status text

2002-05-03 23:32 RD, revision 15358

Probably only whitespace changes

2002-05-03 23:31 RD, revision 15357

A test case to show the problem with putting a wxListbox (and possibly other controls) on a wxPopupWindow in wxMSW

2002-05-03 23:30 RD, revision 15356

Make it easier to not use wxPopupWindow in wxSTC, and for now, don't use it at all for the AutoComplete window.

2002-05-03 22:31 RD, revision 15355

Fixed problem in InsertItems of always adding ownerdraw data even when not an ownerdrawn listbox. If some items were already appended then the indexes would not match.

2002-05-03 20:24 GD, revision 15354

corrected conditional compilation for Darwin

2002-05-03 20:20 GD, revision 15353

corrected warnings when compiling with -Wall -W

2002-05-03 20:15 GD, revision 15352

wxTextCtrl bug related to \n handling is Carbon related and is therefore common to CodeWarrior builds and Apple DevTools builds

2002-05-03 19:49 GD, revision 15351

corrected warnings when compiling with -Wall -W

2002-05-03 19:46 GD, revision 15350

corrected comment typo

2002-05-03 19:43 GD, revision 15349

added missing include file

2002-05-03 19:41 GD, revision 15348

corrected warnings when compiling with -Wall -W

2002-05-03 19:33 GD, revision 15347

corrected include guards

2002-05-03 19:14 GD, revision 15346

applied solution derived from SourceForge patch # 546915 for Mach-O shared library resource problems when resources are not placed in the application

2002-05-03 17:48 GD, revision 15345

corrected warnings and removed useless extern declaration

2002-05-03 17:46 GD, revision 15344

static C++ object initialization only seems to be necessary when the library initialization routine needs to use static C++ objects

2002-05-03 17:43 GD, revision 15343

install both compiled and ascii resource files for Mac OS X

2002-05-02 23:56 RD, revision 15342

These methods should be public

2002-05-02 23:22 VZ, revision 15341

don't look for the catalogs in the Unix standard paths under Windows

2002-05-02 20:09 MBN, revision 15340

Missing bracket in array.tex Documentation for wxStatusBar::Push/PopStatusText Documentation for wxFrame::Push/PopStatusText and Get/SetStatusBarPane.

2002-05-02 20:07 MBN, revision 15339

Implemented wxStatusBar::Push/PopStatusText. Implemented wxFrame::Push/PopSTatusText ( just forward to the status bar ). Implemented wxFrame::DoGiveHelp, to show menu/toolbar help in the status bar. Added Get/SetStatusBarPane to get/set the status bar pane the menu/toolbar help will be show in

2002-05-02 20:03 MBN, revision 15338

Generate EVT_TOOL_ENTER when the user moves the mouse out of the toolbar

2002-05-02 19:56 MBN, revision 15337

wxExecute takes a char**, not a wxChar**

2002-05-02 16:03 SC, revision 15336

corrected DoDrawPoint

2002-05-02 13:56 VZ, revision 15335

you don't have to set BCCDIR for compilation with Borland any longer (patch 550105)

2002-05-02 13:52 VZ, revision 15334

dumb fix for wxDC::Clear() crash

2002-05-02 13:52 VZ, revision 15333

small code cleanup while looking for an inexistent problem

2002-05-02 13:36 VZ, revision 15332

splitted wxFileStream docs in 2 files to make the classes appear in the alphabetic order (patch 549657)

2002-05-02 13:30 VZ, revision 15331

fixed type: wxUint16 -> wxUint32 (patch 549556)

2002-05-02 06:18 RD, revision 15330

Changes for the embedded sample to build on Linux Swigged updates for wxGTK

2002-05-02 04:45 RD, revision 15329

Fixed the bugs preventing wxPython from being embedded in a wxWindows app, and added a sample showing how to do it.

2002-05-02 02:49 RD, revision 15328

Removed wxVTKRenderWindow since VTK now includes a much better python module that allows you to use VTK in a wxPython window.

2002-05-02 02:46 RD, revision 15327

Changed the name of export.h to wxPython.h so it wouldn't be so generic. This is the header that should be included by 3rd party stuff that is embedding wxPython or making a new wxPython extension module.

2002-05-01 16:44 VZ, revision 15326

changed wxUSE_MS_HTML_HELP to 1 by default

2002-05-01 16:25 VZ, revision 15325

fixed definition of TRUE broken by the last commit

2002-05-01 16:20 VZ, revision 15324

added WX_TRUE_DEFINED to allow preventing the redefinition of TRUE/FALSE

2002-05-01 16:15 VZ, revision 15323

added a few more consistency tests which used to be in wx\msw\setup.h

2002-05-01 16:14 VZ, revision 15322

disabled wxWin memory debugging by default

2002-05-01 16:13 VZ, revision 15321

fixed the wrong custom build messages

2002-05-01 08:57 MBN, revision 15320

Fixed Unicode breakage I caused

2002-04-30 22:31 DW, revision 15319

More image processing updates

2002-04-30 22:29 DW, revision 15318

Some new members to assist in bitmap rendering

2002-04-30 07:34 JS, revision 15317

Renamed wxBuffer to deBuffer

2002-04-30 04:27 RD, revision 15316

wxTimer was in the wrong place in the demo

2002-04-30 04:26 RD, revision 15315
  • D /wxWidgets/trunk/wxPython/SWIG

Removed the old patch files for swig

2002-04-30 02:56 RD, revision 15314

Ignore generated Makefile

2002-04-30 02:49 RD, revision 15313

swigged updates for wxMac fix for wxMac refresh problem in the demo

2002-04-29 23:21 RD, revision 15312

swigged updates for wxGTK

2002-04-29 23:17 RD, revision 15311

Switch to using a wxBufferedPaintDC, also draw/erase the focus indicator differently to workaround double focus event problem.

2002-04-29 23:09 RD, revision 15310

Put the panel-under-htmlwindow hack back in since the problem still happens.

2002-04-29 20:19 RD, revision 15309

Updates for building wxSWIG on Linux

2002-04-29 20:04 RD, revision 15308

Added execut bit for configure

2002-04-29 19:56 RD, revision 15307

Since I have made several changes to SWIG over the years to accomodate special cases and other things in wxPython, and since I plan on making several more, I've decided to put the SWIG sources in wxPython's CVS instead of relying on maintaining patches. This effectivly becomes a fork of an obsolete version of SWIG, :-( but since SWIG 1.3 still doesn't have some things I rely on in 1.1, not to mention that my custom patches would all have to be redone, I felt that this is the easier road to take.

2002-04-29 18:55 RD, revision 15306

Various minor updates

2002-04-29 18:38 VS, revision 15305

fixed wxZipInputStream::OnSysSeek wrt memory requirements and malloc(0) (will backport to 2.2)

2002-04-29 14:55 VZ, revision 15304

don't generate an endless stream of asserts for the 0-sized images

2002-04-29 12:37 VZ, revision 15303

added Append(const wxString&) overload and replaced all wxASSERTs with wxASSERT_MSGs in attempt to make them more clear

2002-04-29 06:38 SC, revision 15302

setting the correct event object for EVT_ENTER_WINDOW and EVT_LEAVE_WINDOW

2002-04-29 04:00 DW, revision 15301

Lots of image/bitmap processing updates.

2002-04-29 04:00 DW, revision 15300

New Moddef file

2002-04-28 15:34 SN, revision 15299

Minor changes to test/show expanded array functions.

2002-04-28 14:39 VZ, revision 15298

don't pass arrays by value (and also fixed signed/unsigned comparison warning

2002-04-28 14:30 VZ, revision 15297

changed DoDragDrop(bool) into DoDragDrop(int) and added support for wxDrag_DefaultMove flag

2002-04-28 13:34 VZ, revision 15296

added a (commented out) example of how to force the default action to be move

2002-04-28 13:28 VZ, revision 15295

removed a wxPaintDC::Clear() fatal to wxGTK

2002-04-28 10:33 VS, revision 15294

compilation fixes for C++ standard library

2002-04-28 09:35 GD, revision 15293

derive wxBitmapButton from wxBitmapButtonBase

2002-04-28 00:39 SN, revision 15292

Replaced internal calls to XToCol/YToRow added in 1.197 by internal macro which treats the out of grid case in a way that's more suitable.

2002-04-27 22:59 VS, revision 15291

use XML namespace in XRC files

2002-04-27 22:47 VZ, revision 15290

fixed uninitialized m_bPassMessages and wxLogChain::SetLog() which was completely wrong

2002-04-27 22:37 VZ, revision 15289

really fixed memory leak in wxLogChain

2002-04-27 22:33 VZ, revision 15288

fixed memory leak in wxLogChain

2002-04-27 22:14 VZ, revision 15287

fixed memory leak in wxLogChain

2002-04-27 20:02 VZ, revision 15286

some docs for wxArray(int n) mods

2002-04-27 20:02 VZ, revision 15285

wxArray(int n) mods for wxArrayString

2002-04-27 11:10 VZ, revision 15284

mention that creation time only lives up to its name under Windows

2002-04-27 11:05 VZ, revision 15283

fixed wxFileName::GetModificationTime()

2002-04-27 11:03 GD, revision 15282

ignore process serial number command line argument (-psn) passed to application when launched from the Finder

2002-04-27 10:38 VZ, revision 15281

ARCHINCDIR must be defined in makeb32.env, not makefile.b32 (patch 548990)

2002-04-27 10:37 SN, revision 15280

Fixes to my last commit.

2002-04-27 10:35 VZ, revision 15279

fixes for operator new declaration/definition (patch 549349)

2002-04-26 23:08 VZ, revision 15278

clean up of memory debugging macros and chanegs to compile with CW7 (patch 548408)

2002-04-26 22:44 VZ, revision 15277

added a few virtual keywords for consistency (no real changes) (patch 543922)

2002-04-26 22:26 DW, revision 15276

More bitmap and imaging updates

2002-04-26 21:59 VZ, revision 15275

fixed array tests compilation and a bug in obj array test

2002-04-26 21:58 VZ, revision 15274

added support for add/insert/deleting many items at once in wxArray (patch 548050)

2002-04-26 21:06 VZ, revision 15273

implement wxColourDialog::Move() (patch 548048)

2002-04-26 20:35 VZ, revision 15272

refresh and flicker even more to ensure proper refresh in the resizeable dialogs

2002-04-26 20:34 VZ, revision 15271

added VC++ project file

2002-04-26 19:38 RR, revision 15270

Added sample to reproduce resize display bug.

2002-04-26 18:28 RR, revision 15269

Added background inheritance to wxUniv. Added sample to show this...

2002-04-26 17:40 SC, revision 15268

corrected wxMacSetColorTableEntry (although it is not needed currently)

2002-04-26 14:54 JJ, revision 15267

Committing in . OpenVMS also need wxBuffer defined. Modified Files: wxWindows/utils/dialoged/src/reswrite.cpp ----------------------------------------------------------------------

2002-04-26 13:08 DW, revision 15266

Minor OS/2 bug with a misplace #endif

2002-04-26 12:58 DW, revision 15265

Updates to OS/2 to catch up with lib changes and for image processing.

2002-04-26 09:52 JS, revision 15264

Fixed my sloppy fix for redundant path separators

2002-04-25 20:20 MBN, revision 15263

Rewrote Metal theme to use delegation. requires more cut'n'paste than I like, but I don't see any way around this - sigh. Anyway 594 << 4000 lines :-)

2002-04-25 20:19 MBN, revision 15262

Glitches in wxDelegateRenderer

2002-04-25 18:19 VZ, revision 15261

fixed typo in wxString::swap() which was completely broken

2002-04-25 18:12 VZ, revision 15260

fixed bug with the text attr not being reset even after SetDefaultStyle(wxTextAttr()) call

2002-04-25 10:25 JS, revision 15259

In GetPath(), don't append separator if there's already one at the end

2002-04-25 09:06 SC, revision 15258

updated to 1.1.4

2002-04-24 20:31 RL, revision 15257

Added {S,G}etItem{Text,Background}Colour methods.

2002-04-24 19:53 SC, revision 15256

uses native implementation for mac

2002-04-24 16:54 SC, revision 15255

corrected eventobject setting for mouse events and capture

2002-04-24 14:40 SC, revision 15254

changed window creation class for dialogs (layering probs under X)

2002-04-24 12:41 SN, revision 15253

Fixed compilo (include image.h since cursor.h no longer does this implicitly).

2002-04-24 05:59 GD, revision 15252

corrected post increment operators which must return value before increment

2002-04-23 23:51 VZ, revision 15251

replaced unnecessary #include with a forward decl

2002-04-23 22:03 VS, revision 15250

no need to expand the hidden root (in fact, it is forbidden now)

2002-04-23 22:03 VS, revision 15249

use some Audacity icons in wxHTML instead of my uglu ones (with author's permission)

2002-04-23 22:03 VS, revision 15248

gcc3 compilation fix

2002-04-23 20:16 MBN, revision 15247

Make Univ/GTK compile again

2002-04-23 17:56 SN, revision 15246

Speed-up for very large grids by more efficient search for rows/columns that need to be updated (in various locations).

2002-04-23 16:18 VS, revision 15245

added wx/msw/missing.h

2002-04-23 15:58 RD, revision 15244

A couple demo tweaks

2002-04-22 21:45 RD, revision 15243

Changes to match CVS updates over the weekend.

2002-04-22 21:25 RL, revision 15242

buggy cast == buggy scrolling in Life!

2002-04-22 21:18 RD, revision 15241

Added wxImage.GetDataBuffer which returns an in-place edit buffer of the image data. (Patch #546009)

2002-04-22 15:44 VZ, revision 15240

reset g_delayedFocus when the window is deleted to avoid crashes when using it

2002-04-22 15:44 VZ, revision 15239

removed unused OnSetFocus()

2002-04-22 15:22 VZ, revision 15238

fixed warnings about main used as a variable name

2002-04-22 14:33 JS, revision 15237

Added some missing wxTextCtrl features to to-do list in wxX11's readme.txt Made the wxTipDialog fonts all Swiss (TODO: use current GUI setting for the font family) Worked around focus anomaly by suppressing parent's FocusIn event when child's focus is being set by clicking on it (TODO: move some of this to SetFocus() to make it work programmatically)

2002-04-22 14:01 VZ, revision 15236

compilation fix for ms_dllext definition and old compilers

2002-04-22 12:53 JS, revision 15235

Made default theme win32 under wxX11 since I think the default should be 'vanilla'; less exciting but as fast as possible

2002-04-22 12:28 VZ, revision 15234

fixed a fatal bug in DLL loading code: the deleted entries were never removed from the list of the loaded libraries

2002-04-22 11:19 JS, revision 15233

Fixed drawing sample compilo for wxMotif (doesn't have wxRegion::Offset) Put m_ok earlier in SelectBitmap, else get assert after SelectObject(wxNullBitmap) 'Fixed' longlong to long conversion messages by redefinging GetMillisecondsTime

2002-04-22 10:32 JS, revision 15232

Fixed wxMotif compilo

2002-04-22 09:09 JS, revision 15231

wxUniversal fixes: window.cpp's WM_CLOSE now calls Close() for wxUniv, else dialogs/ frames won't get closed using system menu/button. Added missing NULL init for m_artProvider in themes to cure crash Added 2 sample dsp files for wxUniv (not ideal perhaps but it will save these getting lost, and much user frustration)

2002-04-22 04:12 DW, revision 15230

More bitamp and image fixes

2002-04-21 17:36 MBN, revision 15229

Removed the need for wxStream::GetSize in wxHTML. Ascape '&' in text/plain.

2002-04-21 16:43 RR, revision 15228

Bunch of GTK theme changes. Make wxStatusBar use themes. SetStatusText() now uses Refresh() since I don't know why it shouldn't.

2002-04-21 11:45 VS, revision 15227

wxWizardPage(Simple) can do two-phase creation now

2002-04-21 00:33 VZ, revision 15226

use SetFocusFromKbd() instead of SetFocus()

2002-04-21 00:32 VZ, revision 15225

fixed WM_GETDLGCODE processing to include the bits returned by the DefWindowProc() as well; removed unneeded SetFocus()

2002-04-21 00:32 VZ, revision 15224

implement SetFocusFromKbd() to select all text in the controls whose dialog code has DLGC_HASSETSEL

2002-04-21 00:31 VZ, revision 15223

added and documented wxWindow::SetFocusFromKbd

2002-04-20 23:36 VZ, revision 15222

initialize (and delete) the themes art provider - fixes wxUniv app crashes

2002-04-20 23:30 VZ, revision 15221

compilation sample in !WXWIN_COMPATIBILITY_2_2 mode

2002-04-20 21:18 JS, revision 15220

Typo fixed in tsizer.tex; no change to setup0.h

2002-04-20 13:59 VZ, revision 15219

mention that doing SetFocus() results in the focus event being sent

2002-04-20 13:53 VZ, revision 15218

fixed initial focus handling in the dialog and made SetFocus() send the focus events as under wxMSW

2002-04-20 13:51 VZ, revision 15217

added wxGetTopLevelParent()

2002-04-20 12:30 VZ, revision 15216

fixed another return FALSE in a function returning a pointer (patch 545046)

2002-04-20 11:20 VZ, revision 15215

made operator==() and \!=() const (still doesn't make them correct probably)

2002-04-20 11:10 VZ, revision 15214

fixed huge memory leak in wxFileDialog (closes patch 544060)

2002-04-20 10:00 VZ, revision 15213

fixed logic in limiting spin ctrl values (patch from Dimitri)

2002-04-20 09:57 VZ, revision 15212

implemented DoGetSize() for wxSlider (patch from Dimitri)

2002-04-20 09:53 VZ, revision 15211

fixed focus tracking for spin controls (patch from Dimitri)

2002-04-19 22:12 RL, revision 15210

Added knowledge of virtual size to wx(Scrolled)Windows, they can now manage their own scrollbars with the help of a sizer or other user clues (SetVirtualSizeHints) without the need for an ancillary container. Added SetSizerAndFit convenience method. SetSizer now enables/disables AutoLayout automagically. Logic bugfix for scrollsub sample. Syntax bugfix in parser.y. Compiler warning fix in textctrl.cpp. Modified Files: docs/latex/wx/scrolwin.tex docs/latex/wx/sizer.tex docs/latex/wx/window.tex include/wx/scrolwin.h include/wx/sizer.h include/wx/window.h include/wx/generic/scrolwin.h include/wx/gtk/scrolwin.h samples/scrollsub/scrollsub.cpp src/common/parser.y src/common/sizer.cpp src/common/wincmn.cpp src/generic/scrlwing.cpp src/gtk/scrolwin.cpp src/msw/textctrl.cpp

2002-04-19 21:40 DW, revision 15209

More updates for gdi

2002-04-19 21:05 GD, revision 15208

poll is not available under Darwin/Mac OS X and select should be used instead

2002-04-19 20:12 RD, revision 15207

SWIGed changes for wxGTK

2002-04-19 20:12 RD, revision 15206

Demo updates

2002-04-19 18:39 GD, revision 15205

use specific linker flags under Mac OS X when linking executables against the wxWindows dynamic shared library (LDFLAGS_EXE)

2002-04-19 17:39 RR, revision 15204

Updated makefile for mobile sample. Updated changes.txt. Moved contents of ::Update() to ::GtkUpdate() Moved internal idle functions in wxApp to its own function. Tried to fix themed background redraw problem (probably same bug in wxNotebook and in wxStatusBar and others).

2002-04-18 23:32 VZ, revision 15203

select the whole text in the single line text control when its SetFocus() is called (which also happens when the user TABs to it)

2002-04-18 16:41 RR, revision 15202

Moved mobile dir. Made enable-no_rtti etc NO default.

2002-04-18 13:30 DW, revision 15201

back to void for DoFloodFill

2002-04-18 13:15 JS, revision 15200

Only create wxBuffer on wxMSW and wxMac platforms

2002-04-18 05:43 RD, revision 15199

Typo fix

2002-04-18 05:43 RD, revision 15198

Reorganized the tree in the wxPython demo, hooked the MDI demos into the main demo.

2002-04-18 05:42 RD, revision 15197

wxDF_HTML and FloodFill interface updates

2002-04-18 05:37 RD, revision 15196

Some wxGrid related classes now support OOR.

2002-04-18 05:36 RD, revision 15195

Don't do the wx cleanup if wxPython didn't do the initialization.

2002-04-18 05:35 RD, revision 15194

Moved the cleanup code to an EVT_WINDOW_DESTROY handler.

2002-04-18 05:32 RD, revision 15193

Some secondary grid classes now derive from wxClientDataContainer.

2002-04-18 05:12 DW, revision 15192

Bitmap updates

2002-04-17 22:44 RR, revision 15191

Various changes to focus handling when TLW start. Changed wxWindow::Clear() to use m_clearRegion.

2002-04-17 18:03 RD, revision 15190

Added some methods to be consistent with wxWindow

2002-04-17 18:03 RD, revision 15189

A few tweaks and cleanups

2002-04-17 18:00 RD, revision 15188

Removed package from imports since the modules are in the same package.

2002-04-17 14:16 VZ, revision 15187

corrected assert even better

2002-04-17 14:09 JS, revision 15186

Corrected assertion

2002-04-17 11:48 JS, revision 15185

Added wxDF_HTML Added VC++/non-Unicode for setting HTML clipboard data Changed FloodFill to return a bool value

2002-04-17 06:19 GD, revision 15184

corrected thread detection for Darwin / Mac OS X

2002-04-16 23:06 VS, revision 15183

some wxArtProv docs

2002-04-16 23:03 VS, revision 15182

wxArtProvider HOWTO extended: update documentation

2002-04-16 23:03 VS, revision 15181

make wxArtProvider pure virtual (I was not so on a purpose in some early stage but I think that it is relevant no more...)

2002-04-16 23:03 VS, revision 15180

wxHtmlHistoryItem needs not be wxObject

2002-04-16 23:02 VS, revision 15179

wxHtmlBookRecords needs not be wxObject

2002-04-16 23:01 VS, revision 15178

fixed outdated filenames

2002-04-16 21:52 RD, revision 15177

Use the OOR typemap for wxTreeCtrls too.

2002-04-16 21:33 RD, revision 15176

typo fixes

2002-04-16 21:32 RD, revision 15175

A new listctrl mixin class

2002-04-16 21:31 RD, revision 15174

Use the OOR typemap for wxTreeCtrls too.

2002-04-16 21:04 SC, revision 15173

added patch for theme savvy checkbox metrics

2002-04-16 20:05 MBN, revision 15172

Moved text control subclassing code inside MSWOnNotify. Now all edit controls for tree labels are subclassed (previously only the ones created by EditLabel were ). Now GetEditControl() always returns a pointer to a textctrl when editing is in progress. Removed #if-0 code in GetEditControl() to do the above.

2002-04-16 19:56 JS, revision 15171

Pass validator, not wxDefaultValidator!

2002-04-16 19:34 VZ, revision 15170

removed redundant code

2002-04-16 19:29 VZ, revision 15169

added test for wxNO_DEFAULT in wxMessageBox

2002-04-16 18:18 RR, revision 15168

Untested mini-change for wxGTK idle handling. Handle internal idle (i.e. update handing) *after* sending idle events so that if the user calls Refresh() in OnIdle() the regions will be updated afterwards.

2002-04-16 18:00 GT, revision 15167

Fixes for documentation compilation

2002-04-16 17:12 RL, revision 15166

replace zsh'ism(?) with a posix parameter expansion for CFLAGS default.

2002-04-16 14:55 VZ, revision 15165

always let the multiline text control process the Enter key presses

2002-04-16 13:19 VZ, revision 15164

don't include -D_REENTRANT in the linker flags

2002-04-16 13:15 VZ, revision 15163

add -pthread like options to the linker flags as well; also (finally!) fixed -g and -On handling in CFLAGS

2002-04-16 12:34 VZ, revision 15162

typo fixed: should be lpthread, not -lpthread in THREAD_OPTS

2002-04-16 12:32 VZ, revision 15161

thread detection fixed for Solaris

2002-04-16 11:57 VZ, revision 15160

try just -lpthread in the thread detection code too

2002-04-16 11:41 GD, revision 15159

Added -bind_at_load linker option for Darwin/Mac OS X: executables must necessarily fully bind the wxWindows library at program launch otherwise lazy binding breaks RTTI class info

2002-04-16 08:57 VZ, revision 15158

return NULL from the functions returning a pointer, not FALSE (patch 544557)

2002-04-16 08:43 VZ, revision 15157

return NULL from a function returning a pointer, not FALSE

2002-04-16 07:43 VZ, revision 15156

better, more generic and backwards compatible, fix for TRUE/FALSE in C code

2002-04-15 20:38 VZ, revision 15155

use -pthread or equivalent when using threads; many fixes (?) for the threads detection under FreeBSD

2002-04-15 19:46 VZ, revision 15154

fixed remove() return code test to avoid spurious debug error message

2002-04-15 19:45 VZ, revision 15153

fixed a few minor bugs: handle the directory parameter to Create() correctly, better error checking

2002-04-15 19:38 RD, revision 15152

Applied TRUE/FALSE fix here too.

2002-04-15 19:08 VZ, revision 15151

don't try to remove -g flag from CFLAGS, it is not necessary and doesn't work correctly anyhow (patch 543395)

2002-04-15 19:02 VZ, revision 15150

compilation fix after TRUE/FALSE change

2002-04-15 18:49 VZ, revision 15149

corrected const char * to char * conversions (patch 543896)

2002-04-15 18:47 VZ, revision 15148

corrected passing const char * to a function taking char * (part of the patch 543892)

2002-04-15 18:43 GD, revision 15147

corrections for compilation with Apple DevTools applied SourceForge patch #543872

2002-04-15 18:43 VZ, revision 15146

fixes for BCC makefiles from Chris (patch 544015)

2002-04-15 18:27 VZ, revision 15145

redefined TRUE and FALSE to be of type bool

2002-04-15 18:24 VZ, revision 15144

added wx/ipc.h and used/documented it

2002-04-15 18:23 VZ, revision 15143

explain how to choose the theme for wxUniv apps

2002-04-15 18:11 VZ, revision 15142

compilation fix for OSF/1

2002-04-15 17:59 VZ, revision 15141

fixed minor typo in Borland instructions

2002-04-15 17:30 RD, revision 15140

Some updates for 2.3.3

2002-04-15 03:31 DW, revision 15139

Bitmap and menu updates

2002-04-14 20:41 RR, revision 15138

Fixed (minor) problems reported by Ron in scrolled window. The original patch was not unproblematic.

2002-04-14 16:26 VZ, revision 15137

fixed bug in generation of thumb scroll events

2002-04-14 14:42 RR, revision 15136

Three more attempts to get metal look. - Added a few flags for inheriting background. - Added wxWindow param to wxR::DrawBackground() - Added wxR::DrawButtonSurface() - Removed wxR::DrawBackground() from wxR::DrawButtonBorder() - Adde DrawMetal to Metal theme Fixed minor bug in wxGTK scrollbar. Changed code in wxX11 wxTLW so that startup flicker no longer occurs in wxFrame.

2002-04-14 11:05 JS, revision 15135

Applied custom character filter patch for text validator Corrected typo in spinbutt.tex

2002-04-13 19:02 RR, revision 15134

Fix wxListCtrl bakground colour bug Part II. Make wxWindow::Refresh() wake up idle.

2002-04-13 19:01 RR, revision 15133

Fix wxListCtrl background colour bug Part I

2002-04-13 16:41 VZ, revision 15132

include wx/event.h before declarign the types (patch 543270)

2002-04-13 15:16 JS, revision 15131

Fixed GetVirtualSize for wxGTK's wxScrolledWindow

2002-04-13 12:38 VS, revision 15130

fixed make uninstall

2002-04-13 07:24 JS, revision 15129

Added missing CreateManifest() to initialisation

2002-04-13 03:42 RD, revision 15128

SWIGged updates for wxMAC

2002-04-13 02:46 RD, revision 15127

Changed the #if used to turn on UNIX domain sockets to match what is used in sckaddr.h so wxMAC will compile again. If wxMAC/darwin can actually use UNIX domain sockets then this change should probably go the other way...

2002-04-13 01:42 RD, revision 15126

SWIGged updates for wxGTK

2002-04-13 01:42 RD, revision 15125

Already had wxEVT_MOUSE_CAPTURE_CHANGED, don't need it twice

2002-04-13 01:37 RD, revision 15124

Added wxMouseCaptureChangedEvent. Added some missing Capture related methods.

2002-04-13 01:36 RD, revision 15123

Typos fixed

2002-04-13 00:54 RD, revision 15122

Fix for Python 2.2 defining NDEBUG and conflicting with __WXDEBUG__

2002-04-13 00:39 RD, revision 15121

Use wxBufferedDC in the doodle sample

2002-04-12 22:29 VZ, revision 15120

don't let IsDialogMessage() have VK_ESCAPE, this fixes closing the tree in place editor with Escape

2002-04-12 22:27 VZ, revision 15119

always handle Enter ourselves while editing tree ctrl labels

2002-04-12 22:00 VZ, revision 15118

fixed the bug which resulted in not showing the grid withotu scrollbars at all

2002-04-12 20:26 JS, revision 15117

Implemented wxMouseCaptureChangedEvent and made wxGenericDragImage check it the capture before release it. Documented wxMouseCaptureChangedEvent and GetCapture/FindCapture.

2002-04-12 19:05 VZ, revision 15116

test wxExecute() in the sample

2002-04-12 16:31 RD, revision 15115

Added test showing problem with small grids

2002-04-12 15:13 VZ, revision 15114

implemented IPC using Unix domain sockets

2002-04-12 14:18 VZ, revision 15113

fixed bug with not NUL-terminating the string in GAddress_UNIX_SetPath

2002-04-12 13:15 JS, revision 15112

Applied docview patch Removed richedit sample compilation

2002-04-12 10:24 VZ, revision 15111

a preprocessor constant must be 0, not FALSE

2002-04-12 10:23 VZ, revision 15110

bug/typo fixed: function returning a pointer should return NULL, not FALSE

2002-04-12 09:57 VZ, revision 15109

replaced SetName() with SetText()

2002-04-12 09:31 VZ, revision 15108

implemented wxChoice::Delete

2002-04-11 23:13 RD, revision 15107

Better error message, flags --> style in wxHtmlWindow, etc.

2002-04-11 23:12 RD, revision 15106

Fixed GetShapeList and similar methods to use OOR.

2002-04-11 21:56 RR, revision 15105

Made metal theme a little faster.

2002-04-11 19:43 JS, revision 15104

Undo/Redo update handlers now set the text as well as enabling/disabling, making it possible for several different types of control to share the same menu items and set the text differently.

2002-04-11 19:11 VZ, revision 15103

don't use socket function when wxUSE_SOCKETS==0

2002-04-11 19:00 VZ, revision 15102

typo (thanks Nerijus)

2002-04-11 19:00 VZ, revision 15101

updated to mention X11

2002-04-11 18:49 JS, revision 15100

Corrected the sizer code for the navigation tool window -- it was mixing panel and frame. Now the panel is sized, and the resulting fit used to resize the frame.

2002-04-11 18:44 VZ, revision 15099

fixed 2 small typos (reported by Janos Vegh)

2002-04-11 18:43 JS, revision 15098

Sorry, that SetClientSize change was wrong, since sizers are working in whole-window coordinates. Reverted.

2002-04-11 18:41 VZ, revision 15097

fixed 2 bugs which were fixed in GetFullPath() but not GetPath() and which were broken by the last commit

2002-04-11 16:50 JS, revision 15096

Added back the missing Undo/Redo accelerators that unaccountably went missing after 2.3.1

2002-04-11 16:07 SC, revision 15095

RemoveChild added for correct disposal of scrollbar

2002-04-11 15:31 SC, revision 15094

RemoveChild added for correct disposal of scrollbar

2002-04-11 12:21 VZ, revision 15093

added more GetPath() tests

2002-04-11 12:20 VZ, revision 15092

fixed GetPath() trailing separator bug, rewrote GetFullPath() in terms of GetPath()

2002-04-11 11:53 VZ, revision 15091

added missing WINAPI to GET_LONG_PATH_NAME typedef (thanks to Dimitri)

2002-04-11 11:32 VZ, revision 15090

generate the focus events for wxComboBox, also solves the tab navigation bugs

2002-04-11 11:13 VZ, revision 15089

mention wxDIALOG_NO_PARENT

2002-04-11 09:11 JS, revision 15088

wxSizer::Fit calls SetClientSize, not SetSize. This fixes the tool window in the Life demo.

2002-04-10 22:29 DW, revision 15087

Menuing and statusbar updates

2002-04-10 20:38 RR, revision 15086

Added "metal" theme. Added bool param to wxUniv indicating if the controls takes its background from the parent (such as static texts, radio buttons etc).

2002-04-10 20:32 RD, revision 15085

Oops, forgot the braces.

2002-04-10 20:26 RD, revision 15084

Moved check for m_lastKeydownProcessed to WM_CHAR case because I think Vadim was asleep when he moved it out of HandleChar to the end of the WM_KEY_DOWN case. <wink> It would never be true where the check was before...

2002-04-10 19:27 RD, revision 15083

SWIGged updates for wxGTK

2002-04-10 19:06 RD, revision 15082

Ensure the caret flashes properly

2002-04-10 18:42 RD, revision 15081

Refresh of PyCrust

2002-04-10 18:39 RD, revision 15080

Changes to match cvs update

2002-04-10 18:15 JS, revision 15079

wxScrolledWindow::GetVirtualSize now returns client size if scrolling parameters have not been set. This makes Layout() work again for scrolled windows.

2002-04-10 16:17 DW, revision 15078

Fixed LINKAGEMODE use

2002-04-10 16:01 RR, revision 15077

Work on wxEdit sample.

2002-04-10 14:23 JS, revision 15076

Corrected PositionToXY, XYToPosition code Implemented GetSelection, SetInsertionPoint(End)

2002-04-10 13:00 JS, revision 15075

Fixed single-line text control breakage (sorry). Now only skips the refresh when the new and old values are the same.

2002-04-10 09:35 JS, revision 15074

Added a wxDD_NEW_DIR_BUTTON style for wxDirDialog (currently, works for the generic implementation only). Renamed wxDIRCTRL_EDITABLE to wxDIRCTRL_EDIT_LABELS. Removed reported memory leaks from dynload.cpp using wxModule -- this may cause problems if other modules want to use wxPluginLibrary.

2002-04-10 08:22 SC, revision 15073

background setup correctly

2002-04-10 06:07 SC, revision 15072

removed code (not necessary anymore)

2002-04-10 04:38 DW, revision 15071

Lots of updates

2002-04-10 00:23 VZ, revision 15070

no changes

2002-04-10 00:22 VZ, revision 15069

don't send dummy scroll events from wxNotebook when the page is changed using the built-in spin control

2002-04-09 23:56 VZ, revision 15068

wxSizeEvent now carries the total size, not just the client size

2002-04-09 23:55 VZ, revision 15067

added another size to the status bar display

2002-04-09 22:52 VS, revision 15066

hidden root works in wxGenericDirCtrl again

2002-04-09 22:49 VZ, revision 15065

fixed the initial wxCalendarCtrl position and a minor appearance bug (the first closes the bug 539857)

2002-04-09 22:44 VS, revision 15064

fixed incorrect wxCHECK (was a wrong negation before)

2002-04-09 22:43 VS, revision 15063

don't allow expanding/collapsing hidden root node

2002-04-09 22:42 RD, revision 15062

Include wx/object.h to get the global memory operators if defined.

2002-04-09 22:25 VZ, revision 15061

added support for the multiline button labels

2002-04-09 22:14 RD, revision 15060

A little black magic... When the C++ object (for a window or whatever) is deleted there is no way to force the Python shadow object to also be destroyed and clean up all references to it. This leads to crashes if the shadow object tries to call a method with the old C++ pointer... The black magic I've done is to replace the __class__ in the Python instance object with a class that raises an exception whenever a method call is attempted.

2002-04-09 22:01 RD, revision 15059

A little black magic... When the C++ object (for a window or whatever) is deleted there is no way to force the Python shadow object to also be destroyed and clean up all references to it. This leads to crashes if the shadow object tries to call a method with the old C++ pointer... The black magic I've done is to replace the __class__ in the Python instanc object with a class that raises an exception whenever a method call is attempted.

2002-04-09 21:57 RD, revision 15058

New PyCrust from Patrick O'Brien

2002-04-09 20:55 RD, revision 15057

Forgot to set OOR info on wxSplashScreen

2002-04-09 19:40 VZ, revision 15056

made one button label multiline for testing

2002-04-09 19:34 MBN, revision 15055

Allow building with wxUSE_CALENDARCTRL=0

2002-04-09 18:32 SC, revision 15054

added possible mach-o compliant version

2002-04-09 14:40 JS, revision 15053

Removed redundant project file Updated release scripts Reduced widgets sample size Put back some conditional compilation for dir ctrl style

2002-04-09 13:51 SC, revision 15052

change in wxFileDataObject::SetData behaviour broke DnD of multiple files

2002-04-09 10:35 VZ, revision 15051

fixed a bug in wxStopWatch::Pause() (wouldn't pause if called immediately after Start()) and changed Pause()/Resume() calls to nest

2002-04-09 10:31 JS, revision 15050

Made widgets sample take up less space

2002-04-09 01:25 RD, revision 15049

Some little additions to how wxBufferedDC is wrapped. SHow how to use the wxBufferedDC in the demo. Other demo tweaks

2002-04-08 22:56 VS, revision 15048

forgot to check-in wxGTK wxDC changes

2002-04-08 22:50 VS, revision 15047

compatibility macro

2002-04-08 21:48 RR, revision 15046

More wxEdit.

2002-04-08 21:48 RR, revision 15045

wxTextCtrl::SetValue() sets m_modified to FALSE. Make scrollbars take MSW's "empty" look on start-up.

2002-04-08 21:46 RR, revision 15044

Buttons need to be small on PDAs.

2002-04-08 21:34 RD, revision 15043

SWIGged updates for wxGTK

2002-04-08 20:56 RD, revision 15042

Updates to match recent CVS changes. Plugged some resource count leaks.

2002-04-08 20:39 JS, revision 15041

Added dependencies to .dsw file

2002-04-08 20:20 JS, revision 15040

Project file update

2002-04-08 20:17 JS, revision 15039

Added define to STC VC++ project file Ming/Cygwin makeprog.env clean target now cleans .exes Edited version in install.txt Copied HTML files from web files

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

A little less flicker when selecting text.

2002-04-08 17:15 JS, revision 15037

More BC++ makefile tweaks

2002-04-08 17:14 JS, revision 15036

Further fixes to references

2002-04-08 16:46 JS, revision 15035

Removed a lot of redundant references to wxWindow::On... functions. Added initial artprov.tex. Sorted out duff references.

2002-04-08 16:31 VZ, revision 15034

fixed format parameter in wxGetVolumeString() (closes patch 541037)

2002-04-08 16:28 VZ, revision 15033

fixed several bugs in Mkdir() and also modified its API to be more user friendly (based on the patch 541033 from Chris Elliott)

2002-04-08 16:15 VZ, revision 15032

added GetPath(flags) version to allow retrieving the volume as well

2002-04-08 16:02 VZ, revision 15031

added the keyboard sample

2002-04-08 15:35 RD, revision 15030

Added missing files

2002-04-08 14:21 JS, revision 15029

Added makefiles to widgets sample

2002-04-08 14:12 JS, revision 15028

BC++ 32-bit makefile now copies setup.h to the correct place Fixed compilo in treetest.cpp Fixed version numbers in make*.env Added dummy keyboard.rc so makefile.vc works

2002-04-08 14:05 VZ, revision 15027

wxMSW doesn't send CHAR events for Caps/Scroll/NumLock neither

2002-04-08 14:00 VZ, revision 15026

added a few debugging messages

2002-04-08 13:35 VZ, revision 15025

report all ASCII keys, not just the US-ASCII ones

2002-04-08 13:35 VZ, revision 15024

fix for non-US keyboards: the ASCII chars must be unsigned

2002-04-08 13:24 VZ, revision 15023

wxGTK keyboard handling now behaves (mostly) like wxMSW

2002-04-08 11:55 JS, revision 15022

Re-enabled dynamic library code in wxFileName so that normalization works again in Win32. I don't know why it had been disabled.

2002-04-08 11:36 VZ, revision 15021

some kbd processing code cleanup, no real changes yet

2002-04-08 11:34 JS, revision 15020

Added further keyboard sample makefiles

2002-04-08 11:15 JS, revision 15019

Added wxDIRCTRL_EDITABLE style so we can choose whether items are editable or not

2002-04-08 10:58 VZ, revision 15018

fixed crash in SetFirstVisible()

2002-04-08 10:55 VZ, revision 15017

Unix makefile for the new sample

2002-04-08 10:50 JS, revision 15016

Canvas: added some DECLARE_CLASS macros to stop it failing in class info initialisation Mmedia: compiles agin Plot: corrected VC++ project settings Simple toolbar: should draw a highlight again now Generic dir control: moved control ids to header for apps that need to get hold of the individual controls Scintilla: unconditionally compile Scintilla_LinkLexers() to correct link error in sample

2002-04-08 10:43 VZ, revision 15015

temporary compilation fix

2002-04-08 09:27 SC, revision 15014

new makefile

2002-04-07 23:14 VS, revision 15013

Don't allow expanding/collapsing hidden root

2002-04-07 23:08 VS, revision 15012

oops, forgot to implement Home button

2002-04-07 23:07 VS, revision 15011

cleaned up the mess caused by FloodFill patch

2002-04-07 23:05 VS, revision 15010

cleaning up the mess created by the FloodFill patch

2002-04-07 22:58 JS, revision 15009

Fixed some bit-rot problems in contribs

2002-04-07 22:47 JS, revision 15008

Changed caret to black and made it go when control isn't focussed

2002-04-07 22:42 VZ, revision 15007

fix for splitting the UNC paths

2002-04-07 22:37 VZ, revision 15006

added ra key methods docs

2002-04-07 22:29 VZ, revision 15005

added wxTextCtrl::EmulateKeyPress

2002-04-07 21:12 JS, revision 15004

Removed leaks from Forty demo Added VC++ project file for artprov sample Updated file lists

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

added raw key code and flags support (based on patch from Bryce Denney)

2002-04-07 21:02 VZ, revision 15002

added option to show the raw key codes

2002-04-07 20:46 RR, revision 15001

Further work on wxTextCtrl.

2002-04-07 18:28 GD, revision 15000

updated CodeWarrior 5.3 exported xml projects

2002-04-07 18:21 GD, revision 14999

removed unnecessarily overridden wxControl method

2002-04-07 18:08 VZ, revision 14998

added a new sample to show the key events

2002-04-07 17:56 GD, revision 14997

updated CodeWarrior 5.3 exported xml projects

2002-04-07 17:49 GD, revision 14996

removed 68K targets and preferences added new/missing source files

2002-04-07 17:33 VZ, revision 14995

reformatted to fit in the page width

2002-04-07 17:28 VZ, revision 14994

compilation fix for USE_PCH

2002-04-07 17:20 VZ, revision 14993

refresh the dialog children forcefully even if wxCLIP_CHILDREN was specified

2002-04-07 17:20 VZ, revision 14992

removed Robert's test code

2002-04-07 17:09 JS, revision 14991

Version updates, manual date change, no change to dragimmg.cpp

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

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

2002-04-07 17:05 GD, revision 14989

removed 68K targets and preferences and renamed output libraries

2002-04-07 16:05 VS, revision 14988

*DO* use wxTR_EDIT_LABELS, it is neccessary

2002-04-07 16:05 VS, revision 14987

update from gtk/changes.txt to changes.txt (sic...)

2002-04-07 16:05 VS, revision 14986

add artprov sample to the list

2002-04-07 16:05 VS, revision 14985

added wxArtProvider technote

2002-04-07 14:50 RR, revision 14984

Added first test app to "mobile".

2002-04-07 14:47 RR, revision 14983

Make wxFileDialog even smaller under X11.

2002-04-07 14:46 RR, revision 14982

Make text control send text update events. Something else.

2002-04-07 13:29 GD, revision 14981

improved conditional compilation test (added wxUSE_POSTSCRIPT)

2002-04-07 13:26 GD, revision 14980

removed unused enum

2002-04-07 12:05 RR, revision 14979

Test case for MSW display corruption in 2.3.3

2002-04-07 10:18 RR, revision 14978

Further work on wxTextCrl. Makefile fix for wxEmulator.

2002-04-06 22:31 VZ, revision 14977

refresh the dialogs after resize - this is the only way to deal with the display corruption problem

2002-04-06 22:27 VZ, revision 14976

cleaned up the checkbox creation code (~70 lines of code became 3)

2002-04-06 22:23 VZ, revision 14975

no significant changes

2002-04-06 21:12 VZ, revision 14974

reverted Robert's test code

2002-04-06 20:54 VZ, revision 14973

fixed bug with initial path being a root directory on the drive

2002-04-06 20:21 JS, revision 14972

Strange sizing fix in DoResize() to workaround apparent wxChoice returned size inconsistency

2002-04-06 19:07 VS, revision 14971

fixed wxEncodingConverter::Convert docs

2002-04-06 18:11 RR, revision 14970

Added support for variable-width fonts to wxTextCtrl. This excludes syntax highlighting, which is probably OK.

2002-04-06 15:04 VS, revision 14969

added wxFontMapper::Get/Set

2002-04-06 15:01 VS, revision 14968

reverted Julian's unintentional breakage of wxChoice

2002-04-06 15:01 VS, revision 14967

clear wxArtProvider cache when pushing new provider

2002-04-06 15:01 VS, revision 14966

more samples/artprov stuff

2002-04-06 15:00 VS, revision 14965

fixed typo

2002-04-06 14:55 VS, revision 14964

added resources browser to wxArtProvider sample (similar to the one from gtk-demo)

2002-04-05 23:25 DW, revision 14963

New moddef file

2002-04-05 22:18 VS, revision 14962

info about removal of wxhtml.rc

2002-04-05 22:09 DW, revision 14961

Catching up to new common class interfaces.

2002-04-05 21:47 RD, revision 14960

more tweaks for API changes

2002-04-05 20:55 RD, revision 14959

A few little cleanups, etc.

2002-04-05 20:52 JS, revision 14958

Made sure the 'best' size doesn't get set for wxChoice

2002-04-05 20:39 RR, revision 14957

Fixed the background colour bug.

2002-04-05 20:20 VZ, revision 14956

SetPath() is now implemented in dirdlg.cpp

2002-04-05 20:08 DW, revision 14955

need wxUSE_WCHAR_T around wxConvLocal

2002-04-05 19:55 DW, revision 14954

FALSE not false

2002-04-05 18:32 VZ, revision 14953

some updates I forgot to commit before: mention wxCondition and wxIconBundle changes

2002-04-05 18:23 VZ, revision 14952

compilation fix for !WXWIN_COMPATIBILITY_2_2

2002-04-05 18:11 VZ, revision 14951

compilation fix for !WXWIN_COMPATIBILITY_2_2

2002-04-05 17:27 VZ, revision 14950

added a few missing tree events to the docs

2002-04-05 17:24 RR, revision 14949

Add test for display clutter under MSW.

2002-04-05 11:14 VZ, revision 14948

minor fix to wxFileName::MakeRelativeTo(), removed broken and misleading IsWild() method, added IsDir() one

2002-04-05 10:43 VZ, revision 14947

warning fix for cygwin (patch 539654)

2002-04-05 10:11 VZ, revision 14946

more fixes to handling the paths with trailing slashes in wxDirDlg

2002-04-05 07:08 JJ, revision 14945

Committing in . Complile issues for OpenVMS + obvious typo in wxWindows/src/motif/dcclient.cpp Modified Files: wxWindows/src/common/descrip.mms wxWindows/src/motif/dcclient.cpp wxWindows/src/unix/utilsunx.cpp ----------------------------------------------------------------------

2002-04-05 00:28 RD, revision 14944

Added a few new flags, etc.

2002-04-05 00:28 RD, revision 14943

Added wxFileHistory demo

2002-04-04 21:14 JS, revision 14942

No change

2002-04-04 21:05 JS, revision 14941

Don't set a normal cursor for the frame, set the NULL cursor, else text controls (for example) can get the wrong cursor.

2002-04-04 21:03 JS, revision 14940

Added FAQ topic for FL

2002-04-04 18:33 VZ, revision 14939

files needed for building with CodeWarrior 7 (patch 531011)

2002-04-04 18:04 VZ, revision 14938

use full 32bit range for the process ids

2002-04-04 17:24 JS, revision 14937

Removed wxTR_HIDE_ROOT under Windows, and removed wxTR_EDIT_LABELS for now

2002-04-04 13:13 JS, revision 14936

Added wxTB_NODIVIDER and wxTB_NOALIGN so native Windows toolbar can used in FL. Adjusted Windows toolbar height for wxTB_NODIVIDER style. Removed some false memory leak reporting from fontmap.cpp, mimecmn.cpp, strconv.cpp. Added and used MapBitmap function in newbmpbtn.cpp so the right colours are used under Windows. <controversial>Added iniconf.cpp to WIN32 compilation</conroversial>

2002-04-04 05:44 RD, revision 14935

SWIGged updates for wxMac

2002-04-03 20:34 RD, revision 14934

Demo update

2002-04-03 20:33 RD, revision 14933

Updates for wxListCtrlAutoWidthMixin needed for wxGTK

2002-04-03 20:26 RD, revision 14932

Added sending of column dragging events to the generic wxListCtrl.

2002-04-03 19:32 MBN, revision 14931

Fix for broken BCC

2002-04-03 19:25 RD, revision 14930

SWIGged updates for wxGTK

2002-04-03 19:17 MBN, revision 14929

Mention wxCURSOR_BLANK

2002-04-03 18:19 RR, revision 14928
  • D /wxWidgets/trunk/tests

Noone is using the tests dir either.

2002-04-03 18:16 RR, revision 14927
  • D /wxWidgets/trunk/user

The user dir was last changed in Okt 98, so I guess it is mostly obsolete.

2002-04-03 18:15 RD, revision 14926

Move font and encoding related classes to a new module. Added wxLocale and wxEncodingConverter.

2002-04-03 16:01 VZ, revision 14925

don't show generic dir dlg when it's the same as the standard one

2002-04-03 14:39 RR, revision 14924

Small typo, big effect.

2002-04-03 14:32 VZ, revision 14923

fixed error checking in wxKill

2002-04-03 13:04 VZ, revision 14922

added a note about the constraints being deprecated

2002-04-03 13:01 VZ, revision 14921

reuse the fonts in the resource loading code (patch from Tom Felici)

2002-04-03 12:54 VZ, revision 14920

don't reenable the disabled windows in OnShow(), it is unnecessary and the code there was buggy

2002-04-03 12:49 GD, revision 14919

corrected FSSpec to POSIX file name conversions for Mac OS X (Apple DevTools)

2002-04-03 01:16 RD, revision 14918

Since wxConditionInternal is a friend of wxMutex and wxMutex has copy prevention, then wxConditionInternal needs copy protection too so the default copy and assignment won't generate link errors.

2002-04-03 00:13 VZ, revision 14917

fixed a race condition resulting in returning incorrect thread exit code

2002-04-02 23:26 VZ, revision 14916

fixed OnDropFiles() signature

2002-04-02 19:40 RR, revision 14915

Fix some crashes in new wxTextCtrl.

2002-04-02 17:46 MBN, revision 14914

wxCalendarCtrl::Destroy() now deletes year spin control and month combo box; tested in MSW and GTK .

2002-04-02 17:43 SC, revision 14913

added floodfilling for image

2002-04-02 17:42 SC, revision 14912

adapted to new APIs for threads and floodfilling

2002-04-02 17:37 MBN, revision 14911

Blind fix for bug #529874 . wxPropertyListView::OnOk should set sm_dialogCancelled to FALSE.

2002-04-02 16:24 VZ, revision 14910

compilation warning fixed

2002-04-02 15:37 VZ, revision 14909

changed wxCondition API to take a reference, not pointer, to wxMutex

2002-04-02 13:22 VZ, revision 14908

compilation fixes for the recent commit

2002-04-02 13:15 VZ, revision 14907

added wxSemaphore (with docs), new version of wxCondition and bug fixes to wxThread (patch 538242 by K.S. Sreeram)

2002-04-02 12:41 JS, revision 14906

Now set the client and main windows in wxAdoptedWindow::SetHandle

2002-04-02 10:26 VZ, revision 14905

added the include files section (patch 538251)

2002-04-02 10:20 VZ, revision 14904

fixed paper size calculation (convert from 10ths of mm to mm correctly)

2002-04-02 09:59 VZ, revision 14903

compilation warning fixes

2002-04-02 09:39 JS, revision 14902

Added includes to correct compilo

2002-04-02 09:15 JS, revision 14901

Added wxImage::FloodFill file

2002-04-02 00:36 RD, revision 14900

wxWindowMSW now eats EVT_CHAR if the key was handled in EVT_KEY_DOWN

2002-04-01 23:58 VZ, revision 14899

more informational assert about the base class being unknown to wxRTTI system (patch 538103)

2002-04-01 22:17 JS, revision 14898

Added reference to FloodFill additions

2002-04-01 22:14 JS, revision 14897

Separated wxImage::FloodFill from image.cpp

2002-04-01 21:55 VZ, revision 14896

fixed wxCheckListBox behaviour in presense of wxLB_SORT style (bug 529786)

2002-04-01 21:47 JS, revision 14895

Added FloodFill patch for samples

2002-04-01 21:40 JS, revision 14894

Applied FloodFill patch

2002-04-01 21:33 VZ, revision 14893

use the new wxExecute() API (no real changes)

2002-04-01 21:31 VZ, revision 14892

use the new API in the sample as it's more readable

2002-04-01 21:31 VZ, revision 14891

sleep while waiting for the spawned process to terminate so that we don't eat 100 of the CPU

2002-04-01 20:34 RD, revision 14890

Fixed a few little bugs in how some methods are wrapped

2002-04-01 20:33 RD, revision 14889

Added wxIconBundle and wxTopLevelWindow.SetIcons.

2002-04-01 20:31 RD, revision 14888

Added wxListCtrlAutoWidthMixin from Erik Westra.

2002-04-01 20:29 RD, revision 14887

A saner implementation for the new wxToolBar methods that keeps backwards compatilibilty (including keyword args names for wxPython) and still exposes the new stuff.

2002-04-01 20:28 RD, revision 14886

Some cleanup

2002-04-01 20:27 RD, revision 14885

Trying wxTE_PROCESS_ENTER and EVT_TEXT_ENTER on a combobox, doesn't work yet.

2002-04-01 14:09 JS, revision 14884

Modifications to get wxNanoX compiling again

2002-04-01 13:36 VZ, revision 14883

restored full redraw on repain behaviour by default, also some cleanup in the windows classes registration code

2002-04-01 11:59 RR, revision 14882

Made wxFileDialog PDA friendlier.

2002-04-01 11:41 RR, revision 14881

Temporarily use self-made wxTextCtrl in wxX11 until the in /src/univ.cpp works better.

2002-03-31 14:07 RR, revision 14880

As in 2.2.9, toolbars should not get the focus.

2002-03-31 14:06 RR, revision 14879

Minor tweak (up-ported from 2.2.9) to make flat toolbars look slightly better even without rebar controls underneath.

2002-03-31 12:06 RR, revision 14878

Compile fix when not using WXR resources.

2002-03-31 12:06 RR, revision 14877

Compile fix for MinGW32

2002-03-30 23:27 VZ, revision 14876

fix for the paths with trailing (back)slashes

2002-03-30 22:53 RR, revision 14875

some more tweaks were required

2002-03-30 21:18 RR, revision 14874

Rewrote wxToolBar another time. Other minor tweaks.

2002-03-30 19:57 VZ, revision 14873

fixed an apparent bug in DetermineScaling()

2002-03-30 11:16 RR, revision 14872

Added code for erasing the small square between scrollbars. Corrected window size if scrollbars is removed/added. Reduce flicker in scrollbars. Prevent scrollbars from jumping back to original position if the mouse just barely left the scrollbar.

2002-03-30 01:28 RR, revision 14871

Configure changes for StrongARM cross-compilation.

2002-03-30 01:19 RD, revision 14870

Give access to m_lastKeydownConsumed

2002-03-30 01:18 RD, revision 14869

Don't set the longhelp in the statusbar if there isn't one.

2002-03-30 01:18 RD, revision 14868

Set flags and libs for using unicows if MSLU=1

2002-03-29 22:58 RR, revision 14867

Some work for wxX11 on 8-bit visuals.

2002-03-29 21:11 RR, revision 14866

Removed old #ifdef from GTK 1.0

2002-03-29 18:01 RR, revision 14865

A bit of scrolling works under GTK 2.0

2002-03-29 17:34 RR, revision 14864

Make scrollbars appear.

2002-03-29 17:23 RR, revision 14863

Preventing bitmap crash differently.

2002-03-29 15:43 RR, revision 14862

Disabled masked bitmaps under GTK 2.0 until I know why they crash.

2002-03-29 15:04 RR, revision 14861

Pop-up menus no longer jump before appearing. Added wxTLW::DoGetSize() which uses cashed values.

2002-03-29 14:14 RR, revision 14860

Implemented two-window approach for pop-ups, since e.g. menus have borders.

2002-03-29 13:52 RR, revision 14859

Wrong #ifdef for GTK 1.2

2002-03-29 13:05 RR, revision 14858

More work on GTK 2.0 drawing.

2002-03-29 11:15 VZ, revision 14857

commented out an unused var

2002-03-29 10:49 VZ, revision 14856

corrected the previous warning fix so that it doesn't break the code

2002-03-29 09:39 VZ, revision 14855

fixed fl compilation after the recent tbar changes (patch 536539)

2002-03-29 09:35 VZ, revision 14854

compilation fix

2002-03-29 09:07 VZ, revision 14853

fixed signed/unsigned comparison warning

2002-03-28 23:56 RR, revision 14852

Put some life into GTK 2.0 drawing.

2002-03-28 22:32 VZ, revision 14851

fixed VC++ warning in optimized build

2002-03-28 22:32 MBN, revision 14850

Add missing include

2002-03-28 21:42 JS, revision 14849

In bitmap.cpp, CreateFromImage, took GetWidth and GetHeight out of loop. Fixed wxWindowX11::FindFocus so text selections work again.

2002-03-28 20:55 MBN, revision 14848

Fix for daily builds

2002-03-28 20:51 MBN, revision 14847

Fixed problems with wxFrame::SetIcons

2002-03-28 19:48 JS, revision 14846

Compile corrections

2002-03-28 19:15 VZ, revision 14845

applied cleanups for CW build (patch 531007)

2002-03-28 19:14 VZ, revision 14844

unapplied part of Dimitri's patch at his request

2002-03-28 19:10 VZ, revision 14843

incremented the year in the copyright (very important, I know)

2002-03-28 18:57 RR, revision 14842

More changes for better redraw flow under X11. Probably fixed problem with TLW appearing wrong.

2002-03-28 14:30 SC, revision 14841

added iconbndl method, removed deleted files from project

2002-03-28 14:26 SC, revision 14840

changed implementation (was using now removed methods)

2002-03-28 14:15 SC, revision 14839

changed image.h include to be correct in all (precomp and non-precomp) cases

2002-03-28 14:14 SC, revision 14838

corrected dynarray.h include

2002-03-28 12:52 VZ, revision 14837

fixed a buffer overflow (!) in wxHtmlTagsCache

2002-03-28 12:31 VZ, revision 14836

fixed a (harmless) BoundsChecker warning

2002-03-28 12:07 VZ, revision 14835

fixed compilation in Unicode build

2002-03-28 12:07 VZ, revision 14834

fixed typos in Unicode configs of wxBase (thanks Dimitri)

2002-03-28 11:44 VZ, revision 14833

committing the file which I forgot to commit yesterday (sorry)

2002-03-28 09:08 RR, revision 14832

Compile fix for TLW under X11.

2002-03-28 09:08 RR, revision 14831

Compile fix for wxFileName.

2002-03-28 00:37 VZ, revision 14830

use PALETTERGB instead of RGB when creating wxMask from colour

2002-03-28 00:29 VZ, revision 14829

basic wxFileName functions seem to work under Windows

2002-03-27 23:31 VZ, revision 14828

added test of wxFSVolume

2002-03-27 23:17 VZ, revision 14827

wxFileName::Get/SetTimes() finally seem to work under Windows

2002-03-27 22:29 VZ, revision 14826

fixed bug in ConvertWxToFileTime (bug 525868)

2002-03-27 22:09 RR, revision 14825

wxX11 wants to have the border style flag in wxWindowX11.

2002-03-27 19:04 VZ, revision 14824

fixed data format cast (patch 528965)

2002-03-27 19:00 VZ, revision 14823

minor cosmetic fixes

2002-03-27 18:45 VZ, revision 14822

Unicode compilation fixes (patch from Dimitri)

2002-03-27 18:43 VZ, revision 14821

removed a few warnings and CW compilation problems (patch from Dimitri)

2002-03-27 18:39 VZ, revision 14820

fix for building in a directory with a long name (patch 534399)

2002-03-27 18:36 VZ, revision 14819

added wxEXEC_MAKE_GROUP_LEADER (patch 535422)

2002-03-27 17:15 VZ, revision 14818

added wxExecute tests and a few other misc additions

2002-03-27 16:35 VZ, revision 14817

compilation warning fixed

2002-03-27 16:35 VZ, revision 14816

compilation warning about signed/unsigned comparison fixed

2002-03-27 16:30 VZ, revision 14815

compilation fix: include wx/iconbndl.h

2002-03-27 14:46 JJ, revision 14814

Committing in . OpenVMS complie support Modified Files: wxWindows/src/common/descrip.mms wxWindows/src/unix/descrip.mms wxWindows/src/unix/utilsx11.cpp ----------------------------------------------------------------------

2002-03-27 01:44 RD, revision 14813

Updates for new wxToolBar API

2002-03-27 01:10 RD, revision 14812

Updates for new wxToolBar API

2002-03-26 22:06 RD, revision 14811

Updates to match recent CVS changes.

2002-03-26 21:55 RD, revision 14810

Updates to match recent CVS changes.

2002-03-26 21:54 MBN, revision 14809

wxIconBundle implementation. wxTLW::SetIcons() properly implemented for wxMotif, wxGTK, wxMSW, wxX11, wxUniversal Placeholders that just call SetIcon for wxOS2 and wxMac. Regenerated makefiles. Added hardwired wxSYS_ICON_X/Y = 32 for wxGTK.

2002-03-26 21:42 JS, revision 14808

Copied roadmap from wxWebSite module added newline to end of hashmap.tex Reworded wxView::OnCreate doc

2002-03-26 21:42 RD, revision 14807

Don't use ConvertToBitmap

2002-03-26 21:41 MBN, revision 14806

Docs for wxDialog/wxFrame::SetIcons and wxIconBundle. \verb$ $ -> \tt{ } ( as per tex2rtf suggestion ).

2002-03-26 21:25 VS, revision 14805

wxhtml.rc not needed anymore

2002-03-26 21:24 VS, revision 14804

don't include wxhtml.rc

2002-03-26 20:52 GD, revision 14803

minimum changes required for toolbar text related changes

2002-03-26 20:18 GD, revision 14802

minor compilation warning corrections

2002-03-26 20:15 GD, revision 14801

commented unused variables and otherwise removed compilation warnings

2002-03-26 18:42 VZ, revision 14800

fixed compilation warnings with GTK+ 2.0

2002-03-26 18:42 VZ, revision 14799

fixed crash under GTK+ 2.0

2002-03-26 17:45 VZ, revision 14798

fixed compilation error

2002-03-26 16:24 VZ, revision 14797

update the toolbar docs for radio buttons

2002-03-26 16:23 VZ, revision 14796

fix for toolbar radio buttons event generation

2002-03-26 16:09 VZ, revision 14795

radio toolbar buttons finally work

2002-03-26 14:09 VZ, revision 14794

don't send the events for the radio menu items being unchecked

2002-03-26 12:50 MBN, revision 14793

Corrected ctors for wxPropertyListView and wxPropertyListPanel

2002-03-26 11:30 VZ, revision 14792

wxUniv toolbar compilation fixes

2002-03-26 11:26 VZ, revision 14791

wxMotif toolbar compilation fixes

2002-03-26 09:37 JJ, revision 14790

Committing in . OpenVMS compile issues Modified Files: wxWindows/include/wx/db.h wxWindows/src/common/descrip.mms wxWindows/src/generic/descrip.mms ----------------------------------------------------------------------

2002-03-26 01:43 RD, revision 14789

switch to _EXPORTED_ hash maps to avoid VC++ warnings

2002-03-26 00:44 VZ, revision 14788

made radio buttons and the toolbat text work for Win32 toolbar

2002-03-25 23:37 VS, revision 14787

added wxArtProvider sample (not yet finished)

2002-03-25 23:28 VS, revision 14786

oops, this was for my debugging purposes :(

2002-03-25 23:28 VS, revision 14785

added skeleton of wxArtProvider sample

2002-03-25 23:28 DW, revision 14784

no message

2002-03-25 23:28 VS, revision 14783

added wxArtProvider sample (not yet finished)

2002-03-25 23:26 VS, revision 14782

forgot to check in modified artstd.cpp

2002-03-25 23:25 VS, revision 14781

surround deprecated wxImage methods in WXWIN_COMPATIBILITY_2_2

2002-03-25 23:14 VZ, revision 14780

fixed compilation for wxMSW after the recent changes

2002-03-25 22:05 RR, revision 14779

Some more fiddling with two-window approach and the wxNO_FULL_REPAINT_ON_RESIZE flag.

2002-03-25 21:38 VZ, revision 14778

tests for the new toolbar features (icons text and the radio buttons)

2002-03-25 21:38 VZ, revision 14777

implemented (but it doesn't work yet) the radio buttons and text in the buttons for the GTK toolbars

2002-03-25 21:37 VZ, revision 14776

added and documented wxTB_NOICONS and wxTB_TEXT style flags

2002-03-25 18:06 DW, revision 14775

New radio item menu stuff

2002-03-25 17:06 VZ, revision 14774

some minor appearance fixes

2002-03-25 16:52 VZ, revision 14773

updated for 2.4.0

2002-03-25 16:30 VZ, revision 14772

more fixes to radio menu items: fixed Check() for them; allow separators inside the radio groups

2002-03-25 15:25 VZ, revision 14771

some UTF8 tests

2002-03-25 15:11 VZ, revision 14770

fixed compilation for wxBase

2002-03-25 15:11 VZ, revision 14769

fixed compilation under Unix where SQL_DATETIME is not defined

2002-03-25 14:31 VZ, revision 14768

fixed the menu bug introduced by the previous commit

2002-03-25 14:06 VZ, revision 14767

blind fix for compilation under AIX: always include wchar.h if available, even if we have wcstr.h

2002-03-25 14:06 VZ, revision 14766

test for wcstr.h only if we don't have wchar.h

2002-03-25 05:39 DW, revision 14765

no message

2002-03-24 22:17 RR, revision 14764

Implemented two-window approach for wxX11. Implemented wxSTAY_ON_TOP the way Qt does it. Added group window support.

2002-03-24 21:19 JS, revision 14763

Added SetActive to wxEventLoop Ensured Yield has a wxEventLoop (wxX11) Process size event explicitly in top-level SetSize (wxX11) Added wxYield to wxTopLevelWindow::Show (wxX11)

2002-03-24 15:50 VS, revision 14762

dirty fix for even dirtier memory leak

2002-03-24 10:31 JS, revision 14761

Updated art filespec

2002-03-24 10:29 JS, revision 14760

Updated release scripts

2002-03-24 01:24 VZ, revision 14759

fixes to radio menu items

2002-03-24 00:27 VS, revision 14758

moved the rest of XPMs in /include/wx/generic to /art

2002-03-24 00:23 VS, revision 14757

fixed sizers-inside-wxFrame

2002-03-24 00:23 VS, revision 14756

added radio menu items ot XRC

2002-03-24 00:23 VS, revision 14755

added wxTheme::GetArtProvider to wxUniv

2002-03-24 00:22 VS, revision 14754

change wxICON_INFO to wxICON_INFORMATION in Mac and MSW wxIcon code to be consistent with the constants

2002-03-24 00:22 VS, revision 14753

add automatic rescaling to wxArtProvider

2002-03-24 00:22 VS, revision 14752

WXWIN_COMPATIBILITY_2_2 is on by default

2002-03-24 00:22 VS, revision 14751

don't use deprecated wxImage methods inside wxWin

2002-03-24 00:22 VS, revision 14750

added wxArtProvider

2002-03-24 00:21 VS, revision 14749

remove wxApp::GetStdIcon from documentation

2002-03-24 00:21 VS, revision 14748

don't use wxApp::GetStdIcon

2002-03-24 00:19 VS, revision 14747

compilation fix for WXWIN_COMPATIBILITY_2_2

2002-03-24 00:19 VS, revision 14746

move wxApp::GetStdIcon to wxArtProvider

2002-03-24 00:18 VS, revision 14745

make dist works again with wxArtProvider related changes

2002-03-24 00:18 VS, revision 14744
  • D /wxWidgets/trunk/include/wx/generic/error.xpm
  • D /wxWidgets/trunk/include/wx/generic/info.xpm
  • D /wxWidgets/trunk/include/wx/generic/question.xpm
  • D /wxWidgets/trunk/include/wx/generic/warning.xpm
  • D /wxWidgets/trunk/include/wx/gtk/error.xpm
  • D /wxWidgets/trunk/include/wx/gtk/info.xpm
  • D /wxWidgets/trunk/include/wx/gtk/question.xpm
  • D /wxWidgets/trunk/include/wx/gtk/warning.xpm
  • D /wxWidgets/trunk/include/wx/gtk1/error.xpm
  • D /wxWidgets/trunk/include/wx/gtk1/info.xpm
  • D /wxWidgets/trunk/include/wx/gtk1/question.xpm
  • D /wxWidgets/trunk/include/wx/gtk1/warning.xpm

moved the rest of XPMs to /art

2002-03-23 12:58 JS, revision 14743

Added hack to make standard art provider link with app

2002-03-23 12:02 JS, revision 14742

Use wxHtmlHelpController for HTML help, not wxHelpControllerHtml :-) Use wxHtmlHelpController, not wxHelpControllerHtml

2002-03-23 01:37 VZ, revision 14741

fixed assert failure in SetPath() (backported from HEAD)

2002-03-23 01:31 VZ, revision 14740

updated wxExecute API

2002-03-23 01:23 VZ, revision 14739

compatibility constructors for wxMenuItem() taking bool instead of wxItemKind

2002-03-23 01:22 VZ, revision 14738

added wxEXEC_NOHIDE flag, modified wxExecute() to take a combination of bit flags instead of a boolean parameter

2002-03-22 23:22 VS, revision 14737

point to MSLU library

2002-03-22 23:22 VS, revision 14736

port proplist.cpp to wxArtProvider

2002-03-22 22:32 JS, revision 14735

Removed references to wxHelpControllerHtml from docs.

2002-03-22 22:29 JS, revision 14734

Removed helpwxht.h/cpp (old wxHelpControllerHtml class) and updated makefiles accordingly

2002-03-22 20:59 JS, revision 14733

Don't use deprecated functions

2002-03-22 20:25 JS, revision 14732

Replaced wxBuffer with wxTex2RTFBuffer

2002-03-22 19:20 VS, revision 14731

Added 'go home' button to generic dir dialog

2002-03-22 19:20 VS, revision 14730

use wxArtProvider in wxFileDialog

2002-03-22 19:18 VS, revision 14729

wxITEM_FOO instead of wxItem_Foo, for the sake of consistency

2002-03-22 19:15 VS, revision 14728

require GTK+ 2.0.0, not 1.3.1

2002-03-22 19:15 VZ, revision 14727

avoid an assert in wxString::GetWriteBuf()

2002-03-22 19:14 VS, revision 14726

added wxBitmap::CopyFromIcon and wxIcon::CopyFromBitmap to wxMotif

2002-03-22 19:13 VS, revision 14725

tex2rtf doesn't like math mode

2002-03-22 19:09 VZ, revision 14724

recognize ANSI_X3.4-1968 as US-ASCII

2002-03-22 18:52 VZ, revision 14723

added Allow() docs

2002-03-22 13:43 GT, revision 14722

Semi-Blind fixes for trying to handle different versions of MySQL and MySQL windows drivers Hopefully better handling of DATE type fields New parameter added to optionally not have database connections fail if a basic data type (like DATE) is not reported as supported by the datasource

2002-03-22 12:18 VS, revision 14721

fixed compilation problem with old gcc releases

2002-03-21 23:49 VS, revision 14720

used wxArtProvider in wxTipDialog

2002-03-21 23:47 VS, revision 14719

use wxArtProvider in wxtipDialog

2002-03-21 23:46 VS, revision 14718

use wxArtProvider

2002-03-21 23:46 VS, revision 14717

added icon

2002-03-21 23:45 VS, revision 14716

wxhtml.rc no longer needed

2002-03-21 23:44 VS, revision 14715
  • D /wxWidgets/trunk/include/wx/html/msw
  • D /wxWidgets/trunk/src/html/bitmaps

deleted no longer needed resource files

2002-03-21 23:43 VS, revision 14714

rellocated art XPMs

2002-03-21 23:42 VS, revision 14713

(hopefully) final touches to wxArtProvider

2002-03-21 23:40 VS, revision 14712

root is always hidden -> no icon needed

2002-03-21 23:39 VS, revision 14711

added wxArtProvider

2002-03-21 20:35 RD, revision 14710

SWIGged updates for wxMac

2002-03-21 20:08 SC, revision 14709

added hashmap and dirdlgg

2002-03-21 18:59 VZ, revision 14708

HDC leak fix

2002-03-21 18:05 RD, revision 14707

Some distrib updates

2002-03-21 17:36 RD, revision 14706

Typo fix

2002-03-21 15:32 JS, revision 14705

Added wxX11 to readme Distribution script mods

2002-03-21 13:10 JS, revision 14704

Put dialog in more sensible place in Forty, got a bit further with running it under wxX11 but still crashes (bad XPM?) Updated wxX11 readme text Added more wxYields to progress dialog Added timer and idle processing to wxApp::Yield for X11 Made busy info dialog thick frame for wxX11, else no decorations Some corrections for Nano-X Made text for busy dialog more sensible in dialogs sample

2002-03-21 10:32 JS, revision 14703

Added __WXX11__ tests where appropriate

2002-03-21 10:02 JS, revision 14702

Minor fix for wxX11 compilation

2002-03-21 06:48 RD, revision 14701

SWIGged updates for wxGTK

2002-03-21 05:50 RD, revision 14700

More unicode related cleanup and fixes for wxPython

2002-03-21 02:37 VZ, revision 14699

enabled toolbar as it works now

2002-03-21 02:36 VZ, revision 14698

let the popup listbox process the kbd messages in wxComboBox

2002-03-21 02:35 VZ, revision 14697

removed som obsolete TODO comments

2002-03-21 02:35 VZ, revision 14696

implemented radio menu items for wxMSW

2002-03-20 21:36 RR, revision 14695

No more pixel junk when resizing windows that use the wxNO_FULL_REPAINT_ON_RESIZE flag and which have a border.

2002-03-20 20:48 RD, revision 14694

Fixed problem between the splash screen and tip dialog.

2002-03-20 20:43 RD, revision 14693

wxStyledTextCtrl can now be built and used when wxUSE_UNICODE==1. When in unicode mode Scintilla uses UTF-8 internally so the wxSTC wrapper only needs to convert to/from UTF-8 in the right places. Still need to figure out to get unicode characters from key/char events...

2002-03-20 20:13 RD, revision 14692

Decided I need copy and assignment afterall

2002-03-20 16:50 VZ, revision 14691

added a note about wxGetHomeDir() change under MSW

2002-03-20 11:17 JS, revision 14690

Fixed controls.cpp for wxX11

2002-03-19 23:40 VS, revision 14689

updated samples/html/widget to avoid confusion

2002-03-19 23:40 VS, revision 14688

added wxArtProvider

2002-03-19 23:39 VS, revision 14687

fixed MSLU check

2002-03-19 17:21 JS, revision 14686

Works with wxX11 now.

2002-03-19 16:13 VZ, revision 14685

compilation fix after wxMenuItem changes

2002-03-19 15:04 VZ, revision 14684

fixed GTK critical warning when closing MDI child (patch 529369)

2002-03-19 15:01 VZ, revision 14683

show the standard wxWin fonts (modified patch 530698)

2002-03-19 14:19 VZ, revision 14682

compilation fix for FALSE -> wxItemKind conversion

2002-03-19 00:04 VS, revision 14681

blind fix to wxGetCwd crash on NT when wxUSE_UNICODE=1 and wxUSE_UNICODE_MSLU=0

2002-03-19 00:04 VS, revision 14680

minor fixes to #include

2002-03-19 00:04 VS, revision 14679

fixed MSVC's problems...

2002-03-18 23:10 RD, revision 14678

SWIGged updates for wxGTK

2002-03-18 22:59 RD, revision 14677

Regenerated file lists so features.h would be installed

2002-03-18 22:31 RD, revision 14676

Updated wxSTC from Scintilla 1.40 to Scintilla 1.45

2002-03-18 22:11 RD, revision 14675

Added wxBufferedDC, changes for wxMenu and wxMenuItem, and other little fixes.

2002-03-18 19:41 VZ, revision 14674

1. implemented radio menu items for wxGTK 2. changed (in most cases blindly) code for all the others 3. added wx/features.h 4. update wxMenu[Item] docs ---------------------------------------------------------------------- Committing in . Modified Files: distrib/msw/tmake/filelist.txt docs/changes.txt docs/latex/wx/menu.tex docs/latex/wx/menuitem.tex include/wx/defs.h include/wx/menu.h include/wx/menuitem.h include/wx/gtk/menu.h include/wx/gtk/menuitem.h include/wx/mac/menuitem.h include/wx/motif/menuitem.h include/wx/msw/menuitem.h include/wx/os2/MENUITEM.H include/wx/univ/menuitem.h samples/menu/menu.cpp src/common/menucmn.cpp src/gtk/menu.cpp src/mac/menuitem.cpp src/motif/menuitem.cpp src/msw/menuitem.cpp src/os2/MENUITEM.CPP src/univ/menu.cpp Added Files: include/wx/features.h ----------------------------------------------------------------------

2002-03-18 18:30 RD, revision 14673

Fixed a typo in one of the virtual callback macros.

2002-03-17 21:44 VS, revision 14672

fix to segfault in system menu code

2002-03-17 21:44 VS, revision 14671

better handling situation when active frame is destroyed or hidden

2002-03-17 21:44 VS, revision 14670

compilation fix

2002-03-17 21:43 VS, revision 14669

fixed rendering artifact in popup menus (caused by incorrect implicit clipping in wxClientDC)

2002-03-17 21:43 VS, revision 14668

minor fix to wxDC::SetClippingRegion

2002-03-17 21:43 VS, revision 14667

more corrections to interactive resizing

2002-03-17 20:07 RR, revision 14666

A draft for a possible fix to the redraw problems when using control with borders and the wxNO_FULL_REPAINT_ON_RESIZE flag under wxUniv.

2002-03-17 15:29 RR, revision 14665

New WM decoration code. It fails to resize dialogs sometimes just like the previous versions.

2002-03-17 15:05 GD, revision 14664

added url of Fink Unix to Mac OS X porting instructions added compatibility version options to dynamic linking under Darwin

2002-03-17 14:31 RR, revision 14663

New attempt to implement wxNO_FULL_REDRAW_ON_REPAINT.

2002-03-17 14:27 GD, revision 14662

added wxMAC and wxMOTIF to title conditional compilation

2002-03-17 14:23 GD, revision 14661

added missing consts

2002-03-17 14:16 VZ, revision 14660

patch from Dimitri fixing a few memory leaks and unTABbing the sources

2002-03-17 14:13 VS, revision 14659

implemented 'shaft scrolling' of children in wxUnivWindow::ScrollWindow

2002-03-17 14:13 VS, revision 14658

use Calc(Un)ScrolledPosition instead of wxClientDC

2002-03-17 14:13 VS, revision 14657

added Calc(Un)ScrolledPosition taking wxPoint

2002-03-17 13:58 VZ, revision 14656

clear the frame statusbar when the mouse leaves the toolbar or enters a tool without help string

2002-03-17 11:35 VS, revision 14655

Chris' wxImage::SaveFile(filename_only) patch

2002-03-17 11:34 VS, revision 14654

docs corrections and docs for Chris' wxImage::SaveFile(filename_only) patch

2002-03-17 07:48 RL, revision 14653

really, it will build for 'doze this time.

2002-03-17 07:38 RL, revision 14652

build fix for mingw-cross.

2002-03-17 06:34 RL, revision 14651

Added wxBufferedDC class.

2002-03-17 00:53 VS, revision 14650

fix HTML browser setup dialog under MSW and make the 'OK' button default

2002-03-17 00:52 VS, revision 14649

use wxUniv's setup

2002-03-17 00:52 VS, revision 14648

initial wxMGL readmes

2002-03-17 00:51 VS, revision 14647

added wxCURSOR_RIGHT_ARROW to wxMGL

2002-03-17 00:51 VS, revision 14646

restored old casts (there was a reason for them)

2002-03-17 00:51 VS, revision 14645

my previous commit corrupted the catalogs, reverted

2002-03-17 00:20 RD, revision 14644

Newly SWIGged sources for wxGTK

2002-03-17 00:19 RD, revision 14643

Fixed compilation error and a stupid typo

2002-03-16 19:35 VS, revision 14642

hide tree root on wxMSW in wxHtmlHelpController

2002-03-16 19:35 VS, revision 14641

applied wxTR_HIDE_ROOT patch for wxMSW

2002-03-16 19:34 VS, revision 14640

make it possible to have empty lines in wxListCtrl in report mode (mandatory for wxEditableListBox)

2002-03-16 19:33 VS, revision 14639

fixes to wxEditableListBox logic

2002-03-16 16:02 JS, revision 14638

Corrected typo

2002-03-16 15:46 JS, revision 14637

Added timeout to Dispatch(); attempted implementation of wxSTAY_ON_TOP

2002-03-16 15:28 VZ, revision 14636

another minor fix for wxTR_HIDE_ROOT case

2002-03-16 15:10 VZ, revision 14635

enhanced sample to show the state of the different styles, added reset to default command

2002-03-16 15:10 VZ, revision 14634

fix for GetParent() in wxTR_HIDE_ROOT case

2002-03-16 15:08 VZ, revision 14633

added support for wxTR_HIDE_ROOT style (patch 529614)

2002-03-16 13:49 VZ, revision 14632

compilation fix

2002-03-16 13:08 VZ, revision 14631

applied patch 528960 (a few minor bug fixes) (backported from the main branch)

2002-03-16 13:04 VZ, revision 14630

applied patch 528960 (a few minor bug fixes)

2002-03-16 11:35 RR, revision 14629

Removed notebook tab flicker.

2002-03-16 01:52 DW, revision 14628

Do not use argument defaults in actual function argument list.

2002-03-16 00:06 VZ, revision 14627

restore Robin's code (reverted previous commit)

2002-03-16 00:06 VS, revision 14626

applied patch for seeking in GIF images

2002-03-15 23:59 VZ, revision 14625

fixed a bug with client rect calculation in the recent separator erasing fix

2002-03-15 23:59 VS, revision 14624

applied patch for seeking in GIF images

2002-03-15 23:42 VZ, revision 14623

erase separators shown behind the controls added to the toolbar

2002-03-15 23:30 VS, revision 14622

Did two changes to sample catalogs: 1. converted Russian one to utf-8 (as a demo of new feature) 2. filled-in headers, so that a) it works b) we don't teach users bad habits

2002-03-15 23:29 VS, revision 14621

removed no-longer-needed hack

2002-03-15 23:29 VS, revision 14620

wxLocale-related corrections to the docs

2002-03-15 23:29 VS, revision 14619

info about wxLocale changes

2002-03-15 23:28 VS, revision 14618

safer definitions for wx(U)Int32,16 (taken from intl.cpp)

2002-03-15 23:28 VS, revision 14617

rewrote wxLocale to work in Unicode mode and support charsets better

2002-03-15 23:20 DW, revision 14616

no message

2002-03-15 22:52 RD, revision 14615

Added wxCURSOR_RIGHT_ARROW, which is like the typical wxCURSOR_ARROR, but points to the right, (duh...) This cursor is now used in wxSTC in the margin area.

2002-03-15 20:50 RD, revision 14614

Changes needed for wxUSE_UNICODE for wxOGL to compile. I'm not completely sure everything was converted right, but it at least compiles now (and appears to work in wxPython.)

2002-03-15 20:42 RD, revision 14613

Changes needed for wxUSE_UNICODE

2002-03-15 19:46 VZ, revision 14612

fixed scrollbar shaft colour

2002-03-15 18:30 RD, revision 14611

Some little tweaks and cleanups.

2002-03-15 18:29 RD, revision 14610

Updated unicode sample again. Added two more languages.

2002-03-15 18:08 VZ, revision 14609

fixed selecting the items in the combobox with a simple (not double) click

2002-03-15 15:25 VZ, revision 14608

removed duplicate #include

2002-03-15 15:18 VZ, revision 14607

compilation warning fix

2002-03-15 15:10 VZ, revision 14606

header I forgot to commit yesterday (sorry) as part of statusbar flicker reduction change

2002-03-15 12:44 JS, revision 14605

Use override_direct to remove decorations if wxNO_BORDER specified, because some WMs don't respect the hints sufficiently.

2002-03-15 12:42 JS, revision 14604

Added sizer.h

2002-03-15 12:41 JS, revision 14603

Added DoGetFieldRect

2002-03-15 09:02 JJ, revision 14602

Committing in . First try to compile wxUNIV (gtk-themes) on OpenVMS. Modified Files: wxWindows/descrip.mms wxWindows/src/common/descrip.mms wxWindows/src/generic/descrip.mms wxWindows/src/gtk/descrip.mms wxWindows/src/html/descrip.mms wxWindows/src/unix/descrip.mms Added Files: wxWindows/lib/vms_gtk_univ.opt wxWindows/src/univ/descrip.mms ----------------------------------------------------------------------

2002-03-15 01:42 RD, revision 14601

updated unicode sample

2002-03-15 00:33 VZ, revision 14600

draw toolbar separators in Win32 theme

2002-03-15 00:33 VZ, revision 14599

compilation fixes for wxUSE_TOOLBAR under MSW

2002-03-15 00:27 RD, revision 14598

A Unicode sample for wxPython

2002-03-15 00:21 RD, revision 14597

Give wxScrolledWindow its own Layout method that takes into account the virtual size and scrolled offset of the window.

2002-03-15 00:12 VZ, revision 14596

reduced flicker in the statusbar when resizing the window

2002-03-14 23:55 VZ, revision 14595

compilation fixes for !wxUSE_TOOLBAR

2002-03-14 22:03 JS, revision 14594

Added Layout() call to top level window Show() to prevent double-sizing

2002-03-14 21:38 VZ, revision 14593

fix for what the patch 529900 was trying to fix (loading fonts with size -1)

2002-03-14 19:10 RR, revision 14592

Forgot to reset a flag.

2002-03-14 15:36 JS, revision 14591

Removed constraints check for wxDirDialog from configure (not needed). Implemented solid drawing for DoDrawText, so text selection works

2002-03-14 13:55 VZ, revision 14590

applied the patch from Dimitri to prevent crashes with (some) interlaced GIFs

2002-03-14 11:43 JS, revision 14589

Compiles for Nano-X again

2002-03-14 10:21 JS, revision 14588

Removed duplicate WM line from motif/frame.cpp Added window style to minimal sample Failed attempt to get border-only toplevel window style

2002-03-13 22:45 RD, revision 14587

Switched to DECLARE_NO_COPY_CLASS

2002-03-13 22:30 RD, revision 14586

Core wxPython (non-contrib) now fully works with Unicode!

2002-03-13 22:26 RD, revision 14585

More little demo updates

2002-03-13 22:25 RD, revision 14584

Updated demo to be a more realistic dialog, to show tab traversal, etc.

2002-03-13 22:25 RD, revision 14583

Updated demo to show EVT_COLOURSELECT

2002-03-13 22:05 RD, revision 14582

Added wxMemoryBuffer which is essentiall just a growable buffer of bytes

2002-03-13 21:10 VZ, revision 14581

compilation error fixed

2002-03-13 20:01 MBN, revision 14580

Backported fix for Cygwin crash on toolbar tooltip popup

2002-03-13 18:25 RR, revision 14579

Send size events from top level windows in idle time, this significantly improves the opaque resizing look and feel and seems to speed up dialog show up time.

2002-03-13 16:44 SC, revision 14578

added correct fallback color settings for XP when used with a theme having non-flat menu styles

2002-03-13 15:41 VZ, revision 14577

update focus rectangle width when the columns are being added/removed on the fly

2002-03-13 00:21 RD, revision 14576

Some fixes for wxURLDataObject when wxUSE_UNICODE==1

2002-03-12 23:20 VS, revision 14575

fixes to refreshing code in wxTreeCtrl

2002-03-12 23:20 VS, revision 14574

compilation fix

2002-03-12 23:20 VS, revision 14573

implemented system menu handling in wxUniv

2002-03-12 23:19 VS, revision 14572

1. implemented system menu handling in wxUniv (win32 theme only) 2. fixes to interactive moving/resizing in wxUniv

2002-03-12 23:16 VS, revision 14571

1. handle Alt-F4 in wxUniv, not wxMGL 2. safeguards to never warp pointer to out-of-screen location (MGL would crash)

2002-03-12 22:15 RR, revision 14570

Added dialog tabbing to wxX11.

2002-03-12 21:54 JS, revision 14569

Added GetWindow to make Blit compile

2002-03-12 20:45 RR, revision 14568

Implemented DoBlit(). Some testing on exposure/configure compression.

2002-03-12 19:24 VZ, revision 14567

changes to make wxGTK compile with GTK+ 2.0: now it does but the minimal sample crashes on startup

2002-03-12 15:08 , revision 14566
  • A /wxWidgets/tags/PRE_GTK_2_0
  • D /wxWidgets/tags/PRE_GTK_2_0/demos/dbbrowse/makefile.gtk
  • R /wxWidgets/tags/PRE_GTK_2_0/lib/dummy
  • R /wxWidgets/tags/PRE_GTK_2_0/misc/afm
  • A /wxWidgets/tags/PRE_GTK_2_0/misc/afm/.cvsignore
  • A /wxWidgets/tags/PRE_GTK_2_0/misc/afm/Zapf.afm
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/grid/bitmap1.bmp
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/grid/bitmap2.bmp
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/internat/internat.def
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/internat/internat.rc
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/internat/makefile.sc
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/internat/makefile.vms
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/internat/mondrian.ico
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/layout/expt.cpp
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/layout/fload.xbm
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/layout/layout.def
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/layout/makefile.sc
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/layout/makefile.vms
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/mdi/chart.ico
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/mdi/makefile.sc
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/mdi/makefile.vms
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/mdi/mdi.def
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/mdi/mdi.ico
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/mdi/mdi.rc
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/mdi/mondrian.ico
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/minimal/mondrian.ico
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/png/pngdemo.rc
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/printing/fload.xbm
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/printing/printing.def
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/splitter/mondrian.ico
  • R /wxWidgets/tags/PRE_GTK_2_0/samples/tab/mondrian.ico
  • R /wxWidgets/tags/PRE_GTK_2_0/src/common/glob.inc
  • R /wxWidgets/tags/PRE_GTK_2_0/src/gtk/bdiag.xbm
  • R /wxWidgets/tags/PRE_GTK_2_0/src/gtk/cdiag.xbm
  • R /wxWidgets/tags/PRE_GTK_2_0/src/gtk/cross.xbm
  • R /wxWidgets/tags/PRE_GTK_2_0/src/gtk/fdiag.xbm
  • R /wxWidgets/tags/PRE_GTK_2_0/src/gtk/horiz.xbm
  • R /wxWidgets/tags/PRE_GTK_2_0/src/gtk/verti.xbm
  • R /wxWidgets/tags/PRE_GTK_2_0/src/gtk1/bdiag.xbm
  • R /wxWidgets/tags/PRE_GTK_2_0/src/gtk1/cdiag.xbm
  • R /wxWidgets/tags/PRE_GTK_2_0/src/gtk1/cross.xbm
  • R /wxWidgets/tags/PRE_GTK_2_0/src/gtk1/fdiag.xbm
  • R /wxWidgets/tags/PRE_GTK_2_0/src/gtk1/horiz.xbm
  • R /wxWidgets/tags/PRE_GTK_2_0/src/gtk1/verti.xbm
  • D /wxWidgets/tags/PRE_GTK_2_0/src/html/htmlfilter.cpp
  • D /wxWidgets/tags/PRE_GTK_2_0/src/html/htmlhelp.cpp
  • D /wxWidgets/tags/PRE_GTK_2_0/src/html/search.cpp
  • R /wxWidgets/tags/PRE_GTK_2_0/src/png/ansi2knr.1
  • D /wxWidgets/tags/PRE_GTK_2_0/src/png/makefile.nt
  • R /wxWidgets/tags/PRE_GTK_2_0/src/png/scripts
  • A /wxWidgets/tags/PRE_GTK_2_0/src/png/scripts/build.bat
  • A /wxWidgets/tags/PRE_GTK_2_0/src/png/scripts/makefile.aco
  • A /wxWidgets/tags/PRE_GTK_2_0/src/png/scripts/makefile.ama
  • A /wxWidgets/tags/PRE_GTK_2_0/src/png/scripts/makefile.atr
  • A /wxWidgets/tags/PRE_GTK_2_0/src/png/scripts/makefile.lnx
  • A /wxWidgets/tags/PRE_GTK_2_0/src/png/scripts/makefile.mip
  • A /wxWidgets/tags/PRE_GTK_2_0/src/png/scripts/makefile.s2x
  • R /wxWidgets/tags/PRE_GTK_2_0/src/png/scripts/makefile.sgi
  • A /wxWidgets/tags/PRE_GTK_2_0/src/png/scripts/makefile.sun
  • A /wxWidgets/tags/PRE_GTK_2_0/src/png/scripts/makefile.wat
  • R /wxWidgets/tags/PRE_GTK_2_0/src/regex/COPYRIGHT
  • R /wxWidgets/tags/PRE_GTK_2_0/src/regex/mkh
  • R /wxWidgets/tags/PRE_GTK_2_0/src/regex/README
  • D /wxWidgets/tags/PRE_GTK_2_0/src/regex/regc_color.c
  • D /wxWidgets/tags/PRE_GTK_2_0/src/regex/regc_lex.c
  • D /wxWidgets/tags/PRE_GTK_2_0/src/regex/regc_nfa.c
  • D /wxWidgets/tags/PRE_GTK_2_0/src/regex/regerrs.h
  • R /wxWidgets/tags/PRE_GTK_2_0/src/regex/regex.3
  • R /wxWidgets/tags/PRE_GTK_2_0/src/regex/regex.7
  • R /wxWidgets/tags/PRE_GTK_2_0/src/regex/regex.h
  • R /wxWidgets/tags/PRE_GTK_2_0/src/regex/regex2.h
  • D /wxWidgets/tags/PRE_GTK_2_0/src/regex/rege_dfa.c
  • D /wxWidgets/tags/PRE_GTK_2_0/src/regex/regfronts.c
  • D /wxWidgets/tags/PRE_GTK_2_0/src/regex/regguts.h
  • D /wxWidgets/tags/PRE_GTK_2_0/src/regex/re_syntax.n
  • R /wxWidgets/tags/PRE_GTK_2_0/src/regex/split.c
  • D /wxWidgets/tags/PRE_GTK_2_0/src/regex/tclUniData.c
  • R /wxWidgets/tags/PRE_GTK_2_0/src/regex/tests
  • R /wxWidgets/tags/PRE_GTK_2_0/src/regex/utils.h
  • R /wxWidgets/tags/PRE_GTK_2_0/src/regex/WHATSNEW
  • D /wxWidgets/tags/PRE_GTK_2_0/src/unix/net.cpp
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/algorithm.txt
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/ChangeLog
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/configure
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/descrip.mms
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/INDEX
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/infblock.h
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/infcodes.h
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/inffast.h
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/inftrees.h
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/infutil.h
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/Makefile.in2
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/Makefile.riscos
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/Make_vms.com
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/maketree.c
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/README
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/trees.h
  • R /wxWidgets/tags/PRE_GTK_2_0/src/zlib/zlib.3
  • D /wxWidgets/tags/PRE_GTK_2_0/utils/wxPython
  • D /wxWidgets/tags/PRE_GTK_2_0/utils/wxprop

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

2002-03-12 15:08 VZ, revision 14565

added more build dirs to the ignore list

2002-03-12 12:45 JS, revision 14564

Added constructor for wxColourRefData, else CloneRefData did a binary copy which caused an assert in AllocExclusive (Add to Custom Colours in Colour Dialog)

2002-03-12 12:29 JS, revision 14563

Trivially implemented DoDrawIcon

2002-03-12 12:23 JS, revision 14562

treectrl -> treetest

2002-03-12 12:22 JS, revision 14561

Finally reverted treectrl name back to treetest after a long history of problems with the name clash. This cures a link problem with the sample compiled with wxX11.

2002-03-12 10:56 JS, revision 14560

Replaced Blit with DrawBitmap in wxPoem to make it run with wxX11 Added some XSyncs because it seems the only way to make dialog sizing work

2002-03-12 04:54 RL, revision 14559

build fix. Need the full declaration for CLASSINFO().

2002-03-11 22:44 VZ, revision 14558

no changes

2002-03-11 15:47 JS, revision 14557

Only reparent first window if there are several children

2002-03-11 14:31 JS, revision 14556

Added a screenshot of wxEmulator showing the default emulator configuration with wxToolBar demo running the 'matchbox' window manager.

2002-03-11 12:50 JS, revision 14555

Added XPM icon; minor mods

2002-03-11 12:32 VZ, revision 14554

right clicking outside any column sets the column in the list event to -1, not the last column

2002-03-11 12:26 VZ, revision 14553

implemented menu drawing in the GTK theme

2002-03-11 12:10 JS, revision 14552

Tweaks to emulator and documentation

2002-03-11 11:50 VZ, revision 14551

more GTK-ish toolbar drawing

2002-03-11 11:43 VZ, revision 14550

ignore clicks on a toolbar but outside any button

2002-03-11 10:59 VZ, revision 14549

added missing headers to fix compilation without PCH

2002-03-10 23:11 VS, revision 14548

use AllocExclusive in wxAcceleratorTable

2002-03-10 23:11 VS, revision 14547

wxAcceleratorEntry::MatchesEvent is NOT used by wxX11

2002-03-10 22:41 VZ, revision 14546

propagate the click dismissing a popup window to the window beneath it

2002-03-10 20:35 RR, revision 14545

Next try on pop up menus. (#ifdef x11). More SetFocus() work.

2002-03-10 18:36 VZ, revision 14544

better fix (i.e. one which actually works) for VC++ warnings in release build

2002-03-10 16:44 JS, revision 14543

Added emulator screen; regenerated configure for utils

2002-03-10 16:33 VS, revision 14542

compilation fix

2002-03-10 14:46 VZ, revision 14541

fix for using an invalid HWND in IsEditable

2002-03-10 14:41 JS, revision 14540

Minor tweaks

2002-03-10 14:31 JS, revision 14539

Corrected image size

2002-03-10 13:30 JS, revision 14538

Added emulator utility.

2002-03-10 11:19 RL, revision 14537

added optional parameter to SetSizer, to allow replacing a window's sizer without deleting the existing one.

2002-03-10 09:25 JS, revision 14536

Moved Nano-X specific code from univ to x11

2002-03-10 00:40 RD, revision 14535

Applied and merged patch 486364, which enables wxPython to be built in unicode mode. There are a number of things still missing in it and not everything is converted correctly... But it now builds and functions properly again in non-unicode mode so this is a good time to check in everything. The previous version of all of wxPython sources is tagged wxPy_B4_UNICODE.

2002-03-10 00:29 RD, revision 14534

Applied and merged patch 486364, which enables wxPython to be built in unicode mode. There are a number of things still missing in it and not everything is converted correctly... But it now builds and functions properly again in non-unicode mode so this is a good time to check in everything. The previous version of all of wxPython sources is tagged wxPy_B4_UNICODE.

2002-03-10 00:01 VS, revision 14533

htmlhelp.h no longer needed -> removed test in configure

2002-03-09 23:55 , revision 14532
  • A /wxWidgets/tags/wxPy_B4_UNICODE
  • D /wxWidgets/tags/wxPy_B4_UNICODE/.cvsignore
  • D /wxWidgets/tags/wxPy_B4_UNICODE/acinclude.m4
  • D /wxWidgets/tags/wxPy_B4_UNICODE/aclocal.m4
  • D /wxWidgets/tags/wxPy_B4_UNICODE/autogen.sh
  • D /wxWidgets/tags/wxPy_B4_UNICODE/BuildCVS.txt
  • D /wxWidgets/tags/wxPy_B4_UNICODE/config.guess
  • D /wxWidgets/tags/wxPy_B4_UNICODE/config.sub
  • D /wxWidgets/tags/wxPy_B4_UNICODE/configure
  • D /wxWidgets/tags/wxPy_B4_UNICODE/configure.in
  • D /wxWidgets/tags/wxPy_B4_UNICODE/contrib
  • D /wxWidgets/tags/wxPy_B4_UNICODE/debian
  • D /wxWidgets/tags/wxPy_B4_UNICODE/demos
  • D /wxWidgets/tags/wxPy_B4_UNICODE/descrip.mms
  • D /wxWidgets/tags/wxPy_B4_UNICODE/difflast.pl
  • D /wxWidgets/tags/wxPy_B4_UNICODE/distrib
  • D /wxWidgets/tags/wxPy_B4_UNICODE/docs
  • D /wxWidgets/tags/wxPy_B4_UNICODE/include
  • D /wxWidgets/tags/wxPy_B4_UNICODE/install-sh
  • D /wxWidgets/tags/wxPy_B4_UNICODE/lib
  • D /wxWidgets/tags/wxPy_B4_UNICODE/locale
  • D /wxWidgets/tags/wxPy_B4_UNICODE/Makefile.in
  • D /wxWidgets/tags/wxPy_B4_UNICODE/Mingw32-gcc295.patches
  • D /wxWidgets/tags/wxPy_B4_UNICODE/make-deb
  • D /wxWidgets/tags/wxPy_B4_UNICODE/misc
  • D /wxWidgets/tags/wxPy_B4_UNICODE/mkinstalldirs
  • D /wxWidgets/tags/wxPy_B4_UNICODE/regen
  • D /wxWidgets/tags/wxPy_B4_UNICODE/samples
  • D /wxWidgets/tags/wxPy_B4_UNICODE/setup.h.in
  • D /wxWidgets/tags/wxPy_B4_UNICODE/setup.h_vms
  • D /wxWidgets/tags/wxPy_B4_UNICODE/src
  • D /wxWidgets/tags/wxPy_B4_UNICODE/tests
  • D /wxWidgets/tags/wxPy_B4_UNICODE/user
  • D /wxWidgets/tags/wxPy_B4_UNICODE/utils
  • D /wxWidgets/tags/wxPy_B4_UNICODE/wx-config.in
  • D /wxWidgets/tags/wxPy_B4_UNICODE/wxBase.spec
  • D /wxWidgets/tags/wxPy_B4_UNICODE/wxGTK.spec
  • D /wxWidgets/tags/wxPy_B4_UNICODE/wxMotif.spec
  • D /wxWidgets/tags/wxPy_B4_UNICODE/wxWINE.spec
  • D /wxWidgets/tags/wxPy_B4_UNICODE/wxwin.m4

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

2002-03-09 23:55 RD, revision 14531

SWIGged updates for wxMac

2002-03-09 22:54 VZ, revision 14530

fixed a few VC++ warnings (release mode only)

2002-03-09 22:53 JS, revision 14529
  • D /wxWidgets/trunk/utils/framelayout

Removed README from old framelayout dir, since it was more confusing than helpful to have the framelayout dir appear

2002-03-09 22:46 VZ, revision 14528

[this message is for the previous commit as well] 1. <htmlhelp.h> is not required any more 2. fixed memory leak

2002-03-09 22:07 VS, revision 14527

reverted Robert's change

2002-03-09 21:55 VZ, revision 14526

don't include wx/wx.h unnecessarily

2002-03-09 21:55 VZ, revision 14525

copy the variant name in the assignment operator as well!

2002-03-09 21:51 JS, revision 14524

Added reparenting helper classes to help apps to grab the windows of other applications.

2002-03-09 21:30 VS, revision 14523

query MGL for resolution

2002-03-09 21:19 RD, revision 14522

New SWIGged updates for wxGTK

2002-03-09 21:18 RD, revision 14521

Reformatted some demo text

2002-03-09 20:22 RR, revision 14520

Various changes to make pop up menus work under X11.

2002-03-09 17:26 VZ, revision 14519

look at HOME and USERPROFILE in wxGetHomeDir() (patch 527210)

2002-03-09 16:54 VZ, revision 14518

compilation warning fix for the daily builds

2002-03-09 16:40 VS, revision 14517

what about returning a value?

2002-03-09 16:35 VS, revision 14516

fixed to translatable strings output

2002-03-09 12:25 VZ, revision 14515

compilation fix after the array changes

2002-03-09 12:23 VZ, revision 14514

added support for non alphanumeric simple character accelerators

2002-03-09 03:18 RD, revision 14513

Added a reminder to myself for later

2002-03-09 03:18 RD, revision 14512

Removed redundant definitions

2002-03-09 02:58 RL, revision 14511

Added GetMaxSize virtual method for use by sizers. Modified wxSizer to use it instead of crushing all windows to the display size. Currently only top level windows are limited to display size, all other windows are unlimited (inside the clipping region of their tlw).

2002-03-09 02:42 RD, revision 14510

Visual C++ needs sys/stat.h too

2002-03-08 23:59 VS, revision 14509

corrections to the wxEditableListBox patch, removed conflict indicator checked in by mistake

2002-03-08 23:58 VS, revision 14508

case insensitive <font face>

2002-03-08 23:57 VS, revision 14507

applied patch to wxEditableListBox that adds wxEL_ALLOW_{EDIT,NEW,DELETE} with obvious meanings

2002-03-08 23:48 VS, revision 14506

fixed MSVC compilation and warnings

2002-03-08 23:48 VS, revision 14505

fixed MSVC warnings

2002-03-08 23:47 VS, revision 14504

case insensitive <font face>

2002-03-08 23:43 VS, revision 14503

let the sample display existing page on start

2002-03-08 23:43 VS, revision 14502

fixed bug in wxHtmlHelpFrame: didn't show HTML window when navigation panel was off

2002-03-08 23:06 RD, revision 14501

Little tweaks and fixes.

2002-03-08 23:05 RD, revision 14500

Changes for recent htmlhelp updates

2002-03-08 23:04 RD, revision 14499

Added a wxIconFromBitmap "constructor" for wxIcon.

2002-03-08 21:37 MBN, revision 14498

(Hopefully) last fix for daily builds

2002-03-08 21:20 RD, revision 14497

Fixed compilation error.

2002-03-08 21:10 RD, revision 14496

Added patch that adds style flags for wxEditableListBox to not use some of its standard buttons.

2002-03-08 20:01 RL, revision 14495

Added SetLogBuffer method.

2002-03-08 17:55 RD, revision 14494

Yet another update of XRCed. Fixes some display issues and some minor buglets.

2002-03-08 16:33 VZ, revision 14493

fixed typo (missing comma) in MIME test

2002-03-08 12:27 VZ, revision 14492

theoretically unnecessary but practically required fix for showing the selected filename in the text control

2002-03-08 12:06 JS, revision 14491

ProcessXEvent now returns TRUE if processed, FALSE if not

2002-03-08 01:23 RL, revision 14490

Moved assert to before the segfault.

2002-03-07 23:36 VZ, revision 14489

added a const version of wxColourData::GetColour()

2002-03-07 22:42 RD, revision 14488

Removed unneeded assert

2002-03-07 21:48 RD, revision 14487

SWIGged updates for wxGTK

2002-03-07 21:47 RD, revision 14486

Bugfix for wxTreeCtrl.InsertItemBefore and more SWIGged updates for wxMSW

2002-03-07 21:45 VS, revision 14485

rewrote Chris' fix properly

2002-03-07 21:33 RD, revision 14484

More XRCed updates from Roman

2002-03-07 20:36 RD, revision 14483

SWIGged updates for wxGTK

2002-03-07 20:34 RD, revision 14482

SWIGged updates for wxMSW

2002-03-07 20:33 RD, revision 14481

Added some anchor related methods to wxHtmlWindow as suggested on the wxPython-users list.

2002-03-07 20:32 RD, revision 14480

more updates for recent toolbar changes

2002-03-07 20:32 RD, revision 14479

Added python support for a virtual CanDismiss method

2002-03-07 20:31 RD, revision 14478

Added a Python-specific Append method to the wxListCtrl

2002-03-07 20:29 RD, revision 14477

rearrainging a few things

2002-03-07 18:48 JS, revision 14476

Corrections in light of recent toolbar and other changes

2002-03-07 10:06 JS, revision 14475

Added VC++ project files for remaining Gizmo samples Corrected some precompiled header issues for dynsash samples Corrected IMPLEMENT_ABSTRACT_CLASS in multicell.cpp Added an event function typedef and used it in dynsash sample

2002-03-07 09:47 GD, revision 14474

correction to float array declaration following array implementation changes (will compile and run as before but probably doesn't do what was intended)

2002-03-06 23:59 VZ, revision 14473

define wxFRAME_FLOAT_ON_PARENT as wxFRAME_TOOL_WINDOW

2002-03-06 23:18 VZ, revision 14472

fixes for non interactive execution

2002-03-06 22:06 GD, revision 14471

fixed creation of Info.plist file for Mac OS X

2002-03-06 21:41 RD, revision 14470

A new version of XRCed from Roman Rolinsky with a few tweaks by me.

2002-03-06 20:43 RL, revision 14469

removed superfluous assignment handled in base class.

2002-03-06 20:11 MBN, revision 14468

More fixes for daily builds

2002-03-06 19:05 JS, revision 14467

Applied [ 516382 ] FL toolbar patch This patch addresses following issues on FL dynamic toolbar: * Removes duplicate code in wxNewBitmapButton::RenderLabelImage(). (The code between line 452-500 and 502-550 is the same.) * Adds wxNewBitmapButton::Enable() own method to proper drawing of enabled/disabled buttons. * Changes "focused" state (of wxNewBitmapButton) implementation from EVT_MOTION to EVT_ENTER/LEAVE_WINDOW pair, because capturing mouse in EVT_MOTION handler blocks some key events (control characters, function keys), so underlynig app doesn't receive all key events when mouse pointer is above toolbar button. Also "prev" state member variables are removed by this patch (and IMHO they should be removed regardles on accepting this patch - they are initalized and used only in wxNewBitmapButton::OnMouseMove() method). (Note: Blocking some keys can be only MSW problem, but I can't verify it.) * Adds EVT_LEFT_DCLICK handler to wxNewBitmapButton - without this handler, toolbar button loses second clicks if user presses left mouse button "fast enough". Unfortunately, it doesn't handle drawing of pressed/released button - it's only one event in contrast to EVT_LEFT_UP/DOWN. * Enables tooltips (in proper wxDynamicToolBar::AddTool() method).

2002-03-06 18:58 JS, revision 14466

Applied [ 520664 ] filedlg patch

2002-03-06 17:50 JS, revision 14465

Applied patch for Forty, print patch and wxHTML book patch

2002-03-06 16:26 VZ, revision 14464

fixes to the new pointer array implementation

2002-03-06 15:52 VZ, revision 14463

explained how the existing array declarations must be updated

2002-03-06 14:05 VZ, revision 14462

check for sizeof(void *), not sizeof(int *) - not really different but looks nicer

2002-03-06 11:38 VZ, revision 14461

forbid copying wxEvtHandlers

2002-03-06 11:17 VZ, revision 14460

added missing include guards

2002-03-06 09:34 JS, revision 14459

Moved typedef to within public block to avoid compile error in VC++ (can't access privately declared typedef)

2002-03-06 06:31 GD, revision 14458

wxArray<T> macros have been changed to fix runtime problems under 64 bit architectures. The base class is now implemented once for each needed primitive type in order to avoid invalid reference casts. Macros are provided to implement new arrays using these primitive base arrays.

2002-03-06 01:25 VZ, revision 14457

fixed creation of the dialogs with a simple (non 3D, non resizeable) border; also fixed handling of minimize/maximize box style bits (but is this really needed for the dialogs?)

2002-03-06 01:24 VZ, revision 14456

fixed menu accel

2002-03-06 01:23 VZ, revision 14455

removed the dialog templates unneeded/unused any longer

2002-03-06 00:24 VZ, revision 14454

correct Insert() docs (bug #526172)

2002-03-05 21:23 MBN, revision 14453

More blind fixes for daily builds

2002-03-05 18:55 VZ, revision 14452

added missing WXDLLEXPORT

2002-03-05 16:38 VZ, revision 14451

compilation fix for WXWIN_COMPATIBILITY_2_2 == 0 case

2002-03-05 13:32 VZ, revision 14450

changed charset to iso8859-2

2002-03-05 00:52 VZ, revision 14449

fix for wxScreenDC::GetSize

2002-03-05 00:32 VZ, revision 14448

added missing default values for the 2nd argument of DeleteEntry()

2002-03-05 00:18 VS, revision 14447

fixed compilation for wxUSE_UNICODE=1, wxUSE_UNICODE_MSLU=0

2002-03-04 20:22 MBN, revision 14446

Blind fix for daily builds

2002-03-04 16:01 VZ, revision 14445

added Hungarian translations

2002-03-04 16:01 , revision 14444

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

2002-03-04 16:01 VZ, revision 14443

added Hungarian translations

2002-03-04 14:22 JJ, revision 14442

Committing in . OpenVMS updates Modified Files: wxWindows/descrip.mms wxWindows/setup.h_vms wxWindows/src/motif/utils.cpp ----------------------------------------------------------------------

2002-03-04 07:52 JS, revision 14441

Removed obsolete -WE flags from WIN32 BC++ makefiles Doc corrections