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