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):

2010-04-24 12:02 JMS, revision 64120

In wxPropertyGrid::DoPropertyChanged(), call GetEditorControl() as late as possible so that editor can be changed in wxPGProperty::OnSetValue() (fixes #11987)

2010-04-24 09:06 VS, revision 64119

wxLocale::InitLanguagesDB() doesn't use wxStringTokenizer, remove it.

2010-04-24 09:06 VS, revision 64118

Split intl.h into intl.h, language.h and translation.h. To make the code more manageable, intl.h now contains wxLocale and translation.h all translations-related stuff (wxTranslations, _() etc.). Code generated by genlang.py was moved into its own files (language.h, languageinfo.cpp).

2010-04-24 09:06 VS, revision 64117

Split wxLocale into wxLocale and wxTranslations. wxTranslations is for handling gettext translations. wxLocale manages locale and provides compatiblity API for translations. Separating these two loosely related tasks makes it possible to use translations into languages not known by Windows or using localized GUI without all the locales compilations.

2010-04-24 09:06 VS, revision 64116

Fix typo in internat sample. Catalog should be added with domain name ("wxstd"), not file name ("wxstd.mo").

2010-04-23 21:34 VZ, revision 64115

Work around wrong client size computation for not yet shown maximized windows. The client size of maximized windows which hadn't been shown yet isn't computed correctly by wxMSW because WM_NCCALCSIZE returns too small values for some reason. Attempts to fix this were unsuccessful so just ensure that the window is re-laid out using the right size from WM_SIZE it receives when it is shown instead of using the wrong pending size. Closes #11762.

2010-04-23 14:59 CE, revision 64114

remove 2.9.1 from dated files

2010-04-22 16:57 VS, revision 64113

Fixed (correct) warning about uninitialized inputConv.

2010-04-22 16:16 VZ, revision 64112

Fix harmless warning about a possibly uninitialized variable. gcc complained about possibly uninitialized variable in QueueTestCase in optimized build, just initialize it to suppress this warning.

2010-04-22 16:16 VZ, revision 64111

Don't test possibly uninitialized variable in wxGCDC::SetLogicalFunction(). The variable "mode" is not filled by TranslateRasterOp() function if the input function is not supported, so don't compare it with wxCOMPOSITION_XOR later. Just compare "function" itself with wxXOR as this works in any case.

2010-04-22 16:16 VZ, revision 64110

Fix harmless g++ 4.3 warning about suggested parentheses. Add parentheses around && within ||.

2010-04-22 16:16 VZ, revision 64109

Define wxStrto{d,l,ul}_l() functions in non-Unicode build too. This fixes the unit test compilation in ANSI build.

2010-04-22 16:06 JMS, revision 64108

Added parenthesis around macro arguments

2010-04-22 15:51 JMS, revision 64106

Allow wxAny to contain 'const char*' or 'const wchar_t*'. This was previously not possible since these pointers were converted to wxString, as convenient means to work with string literals. Now pointers (to string literals) are stored instead, and As<wxString>(), comparison operators do the type conversion.

2010-04-22 14:08 VZ, revision 64105

Fix off by one error in wxFTP::GetFileSize(). We incremented the index once more even after finding the line we were looking for in the array which meant that we accessed a wrong array element in any case and could even attempt to access an out of bound one if the file was found in the last line. Closes #11964.

2010-04-22 13:21 VZ, revision 64104

Return correct invoking window for submenus of a popup menu. SetInvokingWindow() is only called for the top menu being popped up itself but the invoking window should also be associated with its submenus. Modify GetInvokingWindow() to return the parents invoking window for submenus. This fixes a crash due to returning NULL from wxMenu::GetWindow() in wxMSW owner-drawn code. And it also makes redundant some code in wxUniversal wxMenu implementation which can now simply use GetInvokingWindow() in all cases. Closes #11957.

2010-04-22 13:21 VZ, revision 64103

Use symbolic names for popup menu ids in wxEVT_MENU_HIGHLIGHT events in wxMSW. No real changes, just use wxID_NONE instead of hardcoded -1 (in one place) and -3 (in another one). Hardcoding them not only made the code less readable but also resulted in two numbers actually becoming different when they almost certainly were meant to be the same. This shouldn't result in any changes in the user-visible behaviour but we now avoid searching the menu bar for menu items with id of -1 needlessly.

2010-04-22 13:21 VZ, revision 64102

Fix bug with using incorrect negative ids in wxEVT_MENU_HIGHLIGHT events. wxMSW code implicitly cast ids carried by wxEVT_MENU_HIGHLIGHT events to unsigned short so that they didn't compare equal to the (signed, negative) ids of the real menu items. Because of this menu help strings were not shown for any items with negative ids, i.e. those created using wxID_ANY. Closes #11977.

2010-04-22 13:21 VZ, revision 64101

Override wxWindow::MSWGetCreateWindowCoords() in wxTopLevelWindow. The old code was messy because it handled both top level and child windows at wxWindow level when they need quite different treatment. This resulted in several errors: first, wxWindow versions of WidthDefault and HeightDefault were used to determine the initial size even of top level windows which was clearly wrong as it created tiny windows (20*20). Second, CW_USEDEFAULT could be used for child window for which this shouldn't be done. Fix this by making MSWGetCreateWindowCoords() virtual and overriding it in wxTopLevelWindow. This makes the code much simpler and more obviously correct. Also make MSWGetCreateWindowCoords() void, as nobody was using its return value anyhow (and the old version also had a bug in it and wrongly returned true when default size was passed to it).

2010-04-22 13:20 VZ, revision 64100

Add documentation for several grid cell renderer/editor classes. Document the previously undocumented renderers and editors. Closes #11965.

2010-04-22 13:20 VZ, revision 64099

Clarify that Raise() is only a request to raise the window. Calling Raise() doesn't guarantee that the window will be raised. Closes #11974.

2010-04-22 13:20 VZ, revision 64098

Fix fatal bug in ArgsArray(wchar_t**) ctor. The input pointer was modified before being used again leading to out of bound array access. Closes #11979.

2010-04-22 09:00 SC, revision 64097

missed in r64093

2010-04-22 08:46 SC, revision 64096

switching to correct hit-testing

2010-04-22 08:23 SC, revision 64095

simpler code

2010-04-22 08:18 SC, revision 64094

shutdown sequence routing to EndSession calls

2010-04-22 08:16 SC, revision 64093

overriding the cfrunloop accessor, during booting cocoa has to create a NSRunLoop earlier

2010-04-21 18:46 VS, revision 64090

msgIdCharset is only needed in ANSI build. In Unicode build, there's no need to create wxCSConv object for every loaded catalog when it won't be used for anything.

2010-04-21 16:40 VZ, revision 64089

No real changes, just fix typos in the ownerdrw sample. s/Cheked/Checked/g

2010-04-21 16:40 VZ, revision 64088

Remove the extra margins when checking owner drawn menu icons size. The extra +4 in IsLessThanStdSize() functions resulted in assert failures under Windows XP after the ownerdraw drawing changes so remove it as nobody knew why was it there anyhow. Also replace IsLessThanStdSize() with IsGreaterThanStdSize() to allow using it directly instead of always testing for !IsLessThanStdSize(). See #11657.

2010-04-21 06:13 SC, revision 64087

non precomp build fix

2010-04-20 23:02 SC, revision 64084

backport of better drawing for toggle buttons

2010-04-20 23:00 SC, revision 64083

backport of order fixes for transform concatenations

2010-04-20 22:53 SC, revision 64082

backport r64081

2010-04-20 22:48 SC, revision 64081

avoiding full resize-invalidate and refresh

2010-04-20 22:29 SC, revision 64079

restoring special handling for carbon system menu items, fixes #11819

2010-04-20 21:09 SC, revision 64068

tracking open modal dialogs

2010-04-20 21:07 SC, revision 64067

currently avoid problems when releasing the capture during drag on osx_cocoa

2010-04-20 18:02 SC, revision 64066

better layout for simple one param messages, closes #11810

2010-04-20 16:55 SC, revision 64065

having common API for mapping between native and wx tlw type

2010-04-20 16:55 SC, revision 64064

type of wrapped window can be any NSWindow, not only our own classes

2010-04-20 16:54 SC, revision 64063

TODO done

2010-04-20 16:53 SC, revision 64062

use new call

2010-04-20 16:51 SC, revision 64061

wrap native TLWs so that they also appear in the tlw list

2010-04-20 16:50 SC, revision 64060

support for capturing, use categories instead of member vars for the implementation mapping, so that we can wrap native NSWindow instances as well

2010-04-20 14:55 JMS, revision 64059

Fix VC6 compilation by changing the order of assignment operators in wxAny

2010-04-20 13:59 VZ, revision 64058

Check for menu title being non-empty when appending it to the menu bar. It doesn't make sense to add a menu with empty title to the menu bar so assert that the title is not empty and fail to add the menu if it is. See r64033 in wxQT branch.

2010-04-20 13:10 VZ, revision 64057

Add wxProgressDialog::Was{Cancelled,Skipped}() convenience methods. Although the information about "Cancel" and "Skip" buttons presses is returned from Update(), sometimes it may be more convenient to ask the dialog about whether it was cancelled or skipped instead of storing it in the program itself. Add the methods which allow to check for this. Closes #10903.

2010-04-20 09:28 JJ, revision 64056

correcting error in OpenVMS makefile

2010-04-20 07:01 SC, revision 64055

if we have wxBG_STYLE_PAINT, we must clear the background ourselves, since on OSX there might be transparent subpanels, fixes #11958

2010-04-19 20:54 FM, revision 64053

minor additions and clarifications

2010-04-19 16:44 SC, revision 64052

re-adding script that is needed for xcode builds

2010-04-19 16:33 JMS, revision 64051

or -> || (how did that compile on GCC anyway?)

2010-04-19 16:25 JMS, revision 64050

When deciding whether to convert wxAny to 'long' or 'longlong' wxVariant, use wxINT32_MAX instead of LONG_MAX (for more consistent results across builds)

2010-04-19 16:23 JMS, revision 64049

Improve wxAny<->wxVariant conversion 64-bit integer tests

2010-04-19 15:36 SC, revision 64048

missing return value

2010-04-19 14:39 JJ, revision 64047

update OpenVMS compile support

2010-04-19 00:15 VZ, revision 64041

Use "monospace" face name for all Unix systems, hopefully it should work. This fixes failures of several build bot slaves (all running Debian or Ubuntu) which were due to using "Fixed" under these Linux distributions. Unfortunately "Fixed" didn't work as Pango doesn't seem to recognize it as a valid face name. "DejaVu Sans" should probably work on most current Linux systems but "Monospace" should hopefully be available on other Unix systems as well. We could also just take whatever wxFontEnumerator returns which should probably be even more fool-proof.

2010-04-18 20:49 SC, revision 64040

render characters on OSX one by one as fractional widths leads to errors otherwise

2010-04-18 20:38 SC, revision 64039

concatenation must use prepend mode on osx as well

2010-04-18 19:19 PMO, revision 64035

Make the output of wxMissingImplementation more assert like

2010-04-18 19:19 MW, revision 64034

Try to provide backtraces on unix buildbots if the test program crashes.

2010-04-18 19:18 PMO, revision 64033

Check for empty menu title

2010-04-18 18:27 MW, revision 64032

Add stub -t and -d options to the test program on the stable branch for forward compatibilty with the trunk.

2010-04-18 18:18 JMS, revision 64031

Use const_cast<> to get 'wxAnyValueType*' from 'const wxAnyValueType*'

2010-04-18 17:46 PMO, revision 64030

First parts of the menu implementations

2010-04-18 15:29 SC, revision 64029

fixing coordinate conversions for captured windows

2010-04-18 15:18 SC, revision 64028

using same API

2010-04-18 15:17 SC, revision 64027

streamlining code for extra controls

2010-04-18 15:15 SC, revision 64026

painting background of splitter as well, fixes #11958

2010-04-18 13:54 JMS, revision 64025

Fix STL build

2010-04-18 13:15 JMS, revision 64022

Fix wxAny for VC6 by removing 'wxAny& operator=(const wxVariant &variant)' for it. This will break some cases of implicit wxVariant->wxAny conversion (for VC6).

2010-04-18 12:19 JMS, revision 64021

Correctly use wxANY_AS() instead of wxAny::As<>(), for VC6 compatibility

2010-04-18 11:49 SC, revision 64020

normal windows also have transparent corners, so don't ever set it to non transparent ...

2010-04-18 02:05 VZ, revision 64019

Fix bug with using uninitialized flags in GetParentForModalDialog(). GetParentForModalDialog() was called from the ctor initialized list before m_windowStyle could be initialized by the base class ctor in several different places, meaning that the check for wxDIALOG_NO_PARENT in this function was using uninitialized variable. Fix this by passing the style parameter explicitly to this function to allow using it from derived class ctors. Still keep an overload which uses the actual window parent and flags which is simpler to use for later calls to this function. Thanks valgrind for finding this one.

2010-04-17 16:15 VZ, revision 64018

Don't return invalid size from wxDir::GetTotalSize() for empty dirs. wxDirTraverserSumSize::GetTotalSize() may, and will, return 0 for empty directories, this is not an error and so don't treat it as such. Closes #11937.

2010-04-17 16:15 VZ, revision 64017

No real changes, just some minor cleanup of wxDirTraverserSumSize. Put the comment before the code it comments on, not after. Return const reference from an accessor.

2010-04-17 14:34 RR, revision 64016

Added virtual destructor

2010-04-17 14:03 JMS, revision 64015

Removed two instances of 'template<>' - looks like VC6 did not need it after all, but was just really picky about the order of constructors

2010-04-17 11:12 PMO, revision 64014

Applied latest wxQt patch from 2010-04-17

2010-04-17 11:10 PMO, revision 64013

Applied latest wxQt patch from 2010-04-17

2010-04-17 11:00 JMS, revision 64012

Suppressed some harmless VC6 warnings

2010-04-17 10:59 JMS, revision 64011

Fixed VC6 compilation - wxAny(const wxVariant&) ctor required a specific 'template<>')

2010-04-17 10:50 MW, revision 64010

Revert change to add -t to buildbot test runs as some branches don't have it.

2010-04-17 00:14 MW, revision 64006

Use -t on buildbot test runs.

2010-04-16 22:52 VZ, revision 64005

Don't define wxADJUST_MINSIZE if it had been already defined. Defining wxADJUST_MINSIZE as 0 may be a simple way to make the old code to compile and while it works without WXWIN_COMPATIBILITY_2_8 it paradoxically doesn't work with it because this results in errors when wxADJUST_MINSIZE is defined as 0 by wx itself. Avoid this problem by only defining wxADJUST_MINSIZE ourselves if it hadn't been defined yet.

2010-04-16 22:52 VZ, revision 64004

Add wxToolBar::GetToolByPos() method to access tools by their index. This is a trivial accessor which somehow was never added before even though we had GetToolsCount() and even DeleteToolByPos(). Closes #11120.

2010-04-16 22:09 VS, revision 64003

Fix build breakage caused by bConvertEncoding deprecation.

2010-04-16 17:34 JMS, revision 64002

Try a blind fix for VC6 compilation issues (wxAny ctor has become too ambiguous now that it has a form that takes wxVariant reference)

2010-04-16 16:36 JMS, revision 64001

Adapted wxPropertyGrid documentation, samples, tests, and wxVariantData-macros to the new wxAny<->wxVariant conversions

2010-04-16 16:33 JMS, revision 64000

wxVariant <-> wxAny conversion functionality. Includes implicit construction of wxAny from wxVariant, and vice versa. wxVariant->wxAny conversion is implemented by adding new virtual member function into wxVariantData. wxAny->wxVariant conversion is implemented by associating wxAnyValueTypes with functions that generate wxVariantData instances (using a hash map).

2010-04-16 16:27 VZ, revision 63999

Create a branch for wxQt development.

2010-04-16 14:47 VZ, revision 63998

Minor corrections to the documentations. Use the correct "override" instead of "overload". Remove unnecessary "virtual" keyword occurrences. Closes #11949.

2010-04-16 14:47 VZ, revision 63997

Correct the case of wxHyperlinkCtrl in the documentation. Closes #11814.

2010-04-16 14:47 VZ, revision 63996

Document wxWindow::DoCentre() and wxCENTRE_ON_SCREEN flag. See #11949.

2010-04-16 14:44 VZ, revision 63995

Don't rely on __GXX_RTTI being defined with g++ < 4.3. __GXX_RTTI is only defined since g++ 4.3.2 and so we can't rely on its absence as indicating the use of -fno-rtti switch with the older versions of the compiler, only do this for g++ 4.3+. Also define wxNO_RTTI from configure if --enable-no_rtti was used as we can't always detect it automatically. Closes #11955.

2010-04-16 13:29 VS, revision 63993

Remove wxLOCALE_CONV_ENCODING flag. This doesn't affect Unicode builds, only the legacy ANSI one. PO files are now always converted to the appropriate charset according to current locale. This was the default behavior for long time; not doing the conversion was always a fragile hack that didn't work well. Removing this flag simplifies wxLocale code.

2010-04-16 13:29 VS, revision 63992

Add wxLOCALE_DONT_LOAD_DEFAULT (=0) for clarity.

2010-04-16 12:43 VS, revision 63991

Remove wxUSE_WCHAR_T checks. wxWidgets requires wchar_t for some time now; wx/chartype.h has a check to fail complation without it. Simplify code by removing now-dead code for the !wxUSE_WCHAR_T case.

2010-04-16 12:22 VS, revision 63990

Mark wx apps as DPI aware on Windows 7/Vista.

2010-04-16 11:15 JJ, revision 63989

synchronizing setup.h_vms with setup_h.in

2010-04-16 08:18 SC, revision 63988

translating background style BG_PAINT into opaqueness for speed-up of OS redraws, supporting positioning for native carbon controls also on non-composited windows (custom pane in navservices dialogs)

2010-04-16 00:47 VZ, revision 63986

Fix using weak references to incomplete classes. wxWeakRef can work with forward-declared classes provided dynamic_cast<> is available but this wasn't detected as being the case due to the use of the obsolete HAVE_DYNAMIC_CAST in its code. Replace HAVE_DYNAMIC_CAST with !wxNO_RTTI to fix this. Also add a unit test checking that this does work. Closes #11916.

2010-04-15 22:04 SC, revision 63985

supporting switching back background style from transparent on tlws

2010-04-14 19:06 SC, revision 63979

fixing build

2010-04-14 18:46 SC, revision 63978

make sure log output on the iphone goes to the console by default

2010-04-14 14:34 SC, revision 63977

fixing layout of custom controls during resize, cleanup of member variables naming

2010-04-14 14:16 SC, revision 63976

fixing constants to be of the expected parameter type (float instead of double)

2010-04-14 09:21 MW, revision 63975

Update buildbot config.

2010-04-14 07:55 MW, revision 63974

Add builds to the buildbot.

2010-04-14 02:10 VZ, revision 63971

Another compilation fix to wxMimeTypesManager, this time in Unicode build. Fix another problem introduced by backporting the fix from the trunk in r63936.

2010-04-13 22:27 SC, revision 63970

adding support for extraControl on osx_carbon

2010-04-13 22:24 SC, revision 63969

adding wrapping possibility for native tlws

2010-04-13 22:22 MW, revision 63968

Make the gui test still run on the buildbot when the non-gui tests fail.

2010-04-13 22:22 MW, revision 63967

Put the buildbot's default configure arguments before the optional ones so they can be overridden.

2010-04-13 18:38 VZ, revision 63965

Exclude wxWeakRef tests not compiling with VC6 from compilation. The ctor used by these tests can't be enabled for VC6 (see r63955), simply disable them to allow the rest to compile.

2010-04-13 17:07 SC, revision 63964

making sure calls don't crash for fully native dialogs which don't have a nowpeer like filedialog

2010-04-13 14:08 SC, revision 63963

adding fallbacks for non-native font variants, fixes #11938

2010-04-13 08:42 SC, revision 63962

fixing non-precomp build, fixes #10985

2010-04-12 22:39 SC, revision 63961

correcting alpha and removing window shadow for overlay

2010-04-12 22:25 SC, revision 63960

correcting alpha and removing window shadow for overlay

2010-04-12 18:47 SC, revision 63959

fixing copy/paste error from carbon version, fixes #11540

2010-04-12 18:29 SC, revision 63958

name change to correctly reflect the autorelease nature of the methods, removing double release, fixes #11547, fixes #11760

2010-04-12 18:26 SC, revision 63957

copying native cursor under cocoa

2010-04-12 15:38 SC, revision 63956

fixing some warnings, adding proper OnChar support for special keys

2010-04-12 15:08 VZ, revision 63955

Fix VC6 compilation which was somehow broken by adding wxWeakRef ctor. For some mysterious reason, adding non-template wxWeakRef ctor breaks VC6 build with the apparently completely unrelated errors: include\wx/toplevel.h(223) : error C2679: binary '=' : no operator defined which takes a right-hand operand of type 'class wxWindow *' (or there is no acceptable conversion) include\wx/toplevel.h(231) : error C2679: binary '=' : no operator defined which takes a right-hand operand of type 'class wxWindow *' (or there is no acceptable conversion) src\common\dummy.cpp(27) : error C2856: #pragma hdrstop cannot be inside an #if block Simply don't define it for VC6 to at least allow the code not using wxWeakRef to compile.

2010-04-12 14:18 SC, revision 63954

changing sequence of makeFirstResponder and makeKeyAndOrderFront

2010-04-12 13:59 SC, revision 63953

change grow box implementation - was incorrectly getting the focus in panels before

2010-04-12 13:21 VZ, revision 63952

Fix gcc warnings about testing undefined preprocessor symbol. Use #ifdef instead of #if to test for __WXPALMOS[56]__.

2010-04-12 13:21 VZ, revision 63951

Fix emulator compilation with wxX11 after GetMainWindow() renaming. This function is now called X11GetMainWindow().

2010-04-12 13:21 VZ, revision 63950

Fix string stream unit test compilation in non-Unicode build. wxScopedCharBuffer can't be constructed from char* string, just use wxCharBuffer instead, we don't care about efficiency here.

2010-04-12 13:11 VZ, revision 63949

Compilation fix after last commit. wxApp::GetTraitsIfExists() doesn't exist in 2.8, mea culpa for backporting the trunk fix without testing.

2010-04-12 02:37 VZ, revision 63948

Update AUI pane resizable status even when it is floating. Making a pane (e.g. a toolbar) [not] resizable didn't have any effect when it was floating, fix this by explicitly updating its style to match the internal state. Closes #10638.

2010-04-12 02:37 VZ, revision 63947

Fix over aggressive clipping in generic wxListCtrl header drawing. Clipping out 4 pixels vertically resulted in truncating any letters with descent (e.g. "g" or "q") under OS X where the native header size is just tall enough to show the text. Simply don't clip that much but use the entire header width. Closes #11780.

2010-04-12 02:37 VZ, revision 63946

Fix crash in wxListbook if image list is assigned after adding pages. The generic wxListCtrl didn't properly support switching between report and non-report modes without invalidating the control contents, the required in non report view geometry info pointers were not allocated when the control was switched to a, say, list mode and not created in it. Fix this by updating all list control lines when the report mode changes. Closes #11698.

2010-04-12 02:37 VZ, revision 63945

Translate the label used by the font picker dialog. Simply use _() instead of wxT(). Closes #11935.

2010-04-12 02:36 VZ, revision 63944
  • D /wxWidgets/trunk/build/script/makedocs.vc
  • D /wxWidgets/trunk/build/script/win_docs.bat
  • D /wxWidgets/trunk/build/script/word_macro.txt
  • D /wxWidgets/trunk/build/script/wxwidgets.iss
  • D /wxWidgets/trunk/distrib/mac/pbsetup-sh
  • D /wxWidgets/trunk/distrib/msw/bakeall.sh
  • D /wxWidgets/trunk/distrib/msw/base.rsp
  • D /wxWidgets/trunk/distrib/msw/bc.rsp
  • D /wxWidgets/trunk/distrib/msw/cocoa.rsp
  • D /wxWidgets/trunk/distrib/msw/contrib.rsp
  • D /wxWidgets/trunk/distrib/msw/copybase.bat
  • D /wxWidgets/trunk/distrib/msw/copy_src.bat
  • D /wxWidgets/trunk/distrib/msw/createsetup.sh
  • D /wxWidgets/trunk/distrib/msw/cw.rsp
  • D /wxWidgets/trunk/distrib/msw/cw_mac.rsp
  • D /wxWidgets/trunk/distrib/msw/deprecated.rsp
  • D /wxWidgets/trunk/distrib/msw/dmc.rsp
  • D /wxWidgets/trunk/distrib/msw/docsrc.rsp
  • D /wxWidgets/trunk/distrib/msw/dsp2dos.bat
  • D /wxWidgets/trunk/distrib/msw/expdwild.bat
  • D /wxWidgets/trunk/distrib/msw/extradoc.rsp
  • D /wxWidgets/trunk/distrib/msw/filerepl.bat
  • D /wxWidgets/trunk/distrib/msw/generic.rsp
  • D /wxWidgets/trunk/distrib/msw/glcanvas.rsp
  • D /wxWidgets/trunk/distrib/msw/gtk.rsp
  • D /wxWidgets/trunk/distrib/msw/innobott.txt
  • D /wxWidgets/trunk/distrib/msw/innotop.txt
  • D /wxWidgets/trunk/distrib/msw/jpeg.rsp
  • D /wxWidgets/trunk/distrib/msw/lower.bat
  • D /wxWidgets/trunk/distrib/msw/mac.rsp
  • D /wxWidgets/trunk/distrib/msw/makeall.bat
  • D /wxWidgets/trunk/distrib/msw/makedist.sh
  • D /wxWidgets/trunk/distrib/msw/makefile.rsp
  • D /wxWidgets/trunk/distrib/msw/makefile.vc
  • D /wxWidgets/trunk/distrib/msw/makeinno.bat
  • D /wxWidgets/trunk/distrib/msw/makeinno.sh
  • D /wxWidgets/trunk/distrib/msw/makerpm
  • D /wxWidgets/trunk/distrib/msw/makesetup.sh
  • D /wxWidgets/trunk/distrib/msw/maketarballs
  • D /wxWidgets/trunk/distrib/msw/makewinceproj.sh
  • D /wxWidgets/trunk/distrib/msw/mgl.rsp
  • D /wxWidgets/trunk/distrib/msw/microwin.rsp
  • D /wxWidgets/trunk/distrib/msw/mmedia.rsp
  • D /wxWidgets/trunk/distrib/msw/motif.rsp
  • D /wxWidgets/trunk/distrib/msw/msw.rsp
  • D /wxWidgets/trunk/distrib/msw/msw_minimal.rsp
  • D /wxWidgets/trunk/distrib/msw/namedown
  • D /wxWidgets/trunk/distrib/msw/nplugin.rsp
  • D /wxWidgets/trunk/distrib/msw/ogl.rsp
  • D /wxWidgets/trunk/distrib/msw/os2.rsp
  • D /wxWidgets/trunk/distrib/msw/palmos.rsp
  • D /wxWidgets/trunk/distrib/msw/patch.rsp
  • D /wxWidgets/trunk/distrib/msw/readme.txt
  • D /wxWidgets/trunk/distrib/msw/setup.var
  • D /wxWidgets/trunk/distrib/msw/stc.rsp
  • D /wxWidgets/trunk/distrib/msw/stubs.rsp
  • D /wxWidgets/trunk/distrib/msw/tags.cmd
  • D /wxWidgets/trunk/distrib/msw/tardist
  • D /wxWidgets/trunk/distrib/msw/tardist.bat
  • D /wxWidgets/trunk/distrib/msw/tarmicrowin.sh
  • D /wxWidgets/trunk/distrib/msw/tarwxall
  • D /wxWidgets/trunk/distrib/msw/tarwxmac
  • D /wxWidgets/trunk/distrib/msw/tarwxmotif
  • D /wxWidgets/trunk/distrib/msw/tarwxx11
  • D /wxWidgets/trunk/distrib/msw/tex2rtf.rsp
  • D /wxWidgets/trunk/distrib/msw/tiff.rsp
  • D /wxWidgets/trunk/distrib/msw/tmake/b32.t
  • D /wxWidgets/trunk/distrib/msw/tmake/b32base.t
  • D /wxWidgets/trunk/distrib/msw/tmake/base.t
  • D /wxWidgets/trunk/distrib/msw/tmake/basevc.t
  • D /wxWidgets/trunk/distrib/msw/tmake/bcc.t
  • D /wxWidgets/trunk/distrib/msw/tmake/cocoa.t
  • D /wxWidgets/trunk/distrib/msw/tmake/dos.t
  • D /wxWidgets/trunk/distrib/msw/tmake/filelist.t
  • D /wxWidgets/trunk/distrib/msw/tmake/filelist.txt
  • D /wxWidgets/trunk/distrib/msw/tmake/g95.t
  • D /wxWidgets/trunk/distrib/msw/tmake/gtk.t
  • D /wxWidgets/trunk/distrib/msw/tmake/lib/wxFileInfo.pm
  • D /wxWidgets/trunk/distrib/msw/tmake/lib/wxFileList.pm
  • D /wxWidgets/trunk/distrib/msw/tmake/lib/wxVersion.pm
  • D /wxWidgets/trunk/distrib/msw/tmake/Makefile
  • D /wxWidgets/trunk/distrib/msw/tmake/mac.t
  • D /wxWidgets/trunk/distrib/msw/tmake/makeall.bat
  • D /wxWidgets/trunk/distrib/msw/tmake/makeall.sh
  • D /wxWidgets/trunk/distrib/msw/tmake/mgl.t
  • D /wxWidgets/trunk/distrib/msw/tmake/micro.t
  • D /wxWidgets/trunk/distrib/msw/tmake/motif.t
  • D /wxWidgets/trunk/distrib/msw/tmake/msw.t
  • D /wxWidgets/trunk/distrib/msw/tmake/os2.t
  • D /wxWidgets/trunk/distrib/msw/tmake/sc.t
  • D /wxWidgets/trunk/distrib/msw/tmake/tmake.conf
  • D /wxWidgets/trunk/distrib/msw/tmake/univ.t
  • D /wxWidgets/trunk/distrib/msw/tmake/v15.t
  • D /wxWidgets/trunk/distrib/msw/tmake/vc.t
  • D /wxWidgets/trunk/distrib/msw/tmake/vc6app.t
  • D /wxWidgets/trunk/distrib/msw/tmake/vc6base.t
  • D /wxWidgets/trunk/distrib/msw/tmake/vc6msw.t
  • D /wxWidgets/trunk/distrib/msw/tmake/vc6univ.t
  • D /wxWidgets/trunk/distrib/msw/tmake/wat.t
  • D /wxWidgets/trunk/distrib/msw/tmake/watbase.t
  • D /wxWidgets/trunk/distrib/msw/tmake/watmgl.t
  • D /wxWidgets/trunk/distrib/msw/tmake/wxwin.pro
  • D /wxWidgets/trunk/distrib/msw/tmake/x11.t
  • D /wxWidgets/trunk/distrib/msw/univ.rsp
  • D /wxWidgets/trunk/distrib/msw/unix2dos.c
  • D /wxWidgets/trunk/distrib/msw/user.rsp
  • D /wxWidgets/trunk/distrib/msw/utilmake.rsp
  • D /wxWidgets/trunk/distrib/msw/utils.rsp
  • D /wxWidgets/trunk/distrib/msw/vc.rsp
  • D /wxWidgets/trunk/distrib/msw/vcupdate.bat
  • D /wxWidgets/trunk/distrib/msw/wince.rsp
  • D /wxWidgets/trunk/distrib/msw/wordstyle.dot
  • D /wxWidgets/trunk/distrib/msw/wxrc.rsp
  • D /wxWidgets/trunk/distrib/msw/wxtree.rsp
  • D /wxWidgets/trunk/distrib/msw/wxwidgets_in.iss
  • D /wxWidgets/trunk/distrib/msw/wxwin01.bmp
  • D /wxWidgets/trunk/distrib/msw/wx_chm.rsp
  • D /wxWidgets/trunk/distrib/msw/wx_hlp.rsp
  • D /wxWidgets/trunk/distrib/msw/wx_htb.rsp
  • D /wxWidgets/trunk/distrib/msw/wx_html.rsp
  • D /wxWidgets/trunk/distrib/msw/wx_pdf.rsp
  • D /wxWidgets/trunk/distrib/msw/wx_word.rsp
  • D /wxWidgets/trunk/distrib/msw/x11.rsp
  • D /wxWidgets/trunk/distrib/msw/xml.rsp
  • D /wxWidgets/trunk/distrib/msw/zipdist.sh
  • D /wxWidgets/trunk/distrib/msw/zipmac.sh
  • D /wxWidgets/trunk/distrib/msw/zippatch.bat
  • D /wxWidgets/trunk/distrib/msw/zipwince.bat
  • D /wxWidgets/trunk/distrib/msw/zipwinminimal.bat
  • D /wxWidgets/trunk/distrib/msw/zipxml.bat
  • D /wxWidgets/trunk/distrib/scripts/build-environ.cfg
  • D /wxWidgets/trunk/distrib/scripts/build-linux.sh
  • D /wxWidgets/trunk/distrib/scripts/build-mac.sh
  • D /wxWidgets/trunk/distrib/scripts/build-windows.sh
  • D /wxWidgets/trunk/distrib/scripts/builddemos.sh
  • D /wxWidgets/trunk/distrib/scripts/build_controller.py
  • D /wxWidgets/trunk/distrib/scripts/create-archive.py
  • D /wxWidgets/trunk/distrib/scripts/create_archives.sh
  • D /wxWidgets/trunk/distrib/scripts/docs/creating_releases.html
  • D /wxWidgets/trunk/distrib/scripts/includes/configure_build.inc
  • D /wxWidgets/trunk/distrib/scripts/is_text.sh
  • D /wxWidgets/trunk/distrib/scripts/mac/dobuilds
  • D /wxWidgets/trunk/distrib/scripts/mac/lipo-dir.py
  • D /wxWidgets/trunk/distrib/scripts/mac/macbuild
  • D /wxWidgets/trunk/distrib/scripts/mac/macbuild-framework
  • D /wxWidgets/trunk/distrib/scripts/mac/macbuild-lipo
  • D /wxWidgets/trunk/distrib/scripts/mac/mac_options.inc
  • D /wxWidgets/trunk/distrib/scripts/mac/tardist
  • D /wxWidgets/trunk/distrib/scripts/manifests/base.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/cocoa.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/dfb.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/dmc.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/docsrc.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/generic.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/generic_samples.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/gtk.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/gtk1.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/jpeg.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/mac.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/makefile.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/mgl.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/motif.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/msw.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/os2.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/palmos.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/stc.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/tex2rtf.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/tiff.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/univ.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/utilmake.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/utils.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/vc.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/wince.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/x11.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/xml.rsp
  • D /wxWidgets/trunk/distrib/scripts/msw/makeinno.sh
  • D /wxWidgets/trunk/distrib/scripts/msw/makesetup.sh
  • D /wxWidgets/trunk/distrib/scripts/msw/make_msvc6_setup
  • D /wxWidgets/trunk/distrib/scripts/msw/make_msvc7_setup
  • D /wxWidgets/trunk/distrib/scripts/msw/setup.var
  • D /wxWidgets/trunk/distrib/scripts/setup_environ.sh
  • D /wxWidgets/trunk/distrib/scripts/unix/dobuilds
  • D /wxWidgets/trunk/distrib/scripts/unix/maketarballs
  • D /wxWidgets/trunk/distrib/scripts/unix/unixbuild
  • D /wxWidgets/trunk/distrib/scripts/update-manifests.sh
  • D /wxWidgets/trunk/distrib/scripts/utils.inc
  • D /wxWidgets/trunk/distrib/tar-o-matic.sh
  • M /wxWidgets/trunk/docs/tech/index.txt
  • D /wxWidgets/trunk/docs/tech/tn0013.txt

Remove all obsolete release-generation scripts. Only leave the files which are still used for the daily snapshots generation. Also remove the obsolete release-making instructions. See #11610.

2010-04-12 02:36 VZ, revision 63943

Fix return value of wxList::insert() in non-STL builds. The returned value was the same as the iterator that was passed in which could even be invalid when appending. Fix the wrong use of postfix decrement instead of prefix one and handle the case of appending correctly. Closes #11808.

2010-04-12 02:36 VZ, revision 63942

Fix compilation of wxIconBundle in some particular minimal builds. Let the code compile when wxUSE_STREAMS==1 but wxUSE_FILE and wxUSE_FFILE are both 0. Closes #10900.

2010-04-12 02:36 VZ, revision 63941

Use string sort order with CompareString() in wxString::CmpNoCase(). Using the default word sort order may fail to define a strict weak order using this function, thus breaking algorithms such as std::sort which rely on its properties. It's also more consistent with the fallback manual implementation. Closes #10375.

2010-04-11 19:38 VZ, revision 63940

Use template class instead of template function in wxVectorSort(). This allows the code to compile with VC6 which has trouble with explicit specification of the template functions instantiation.

2010-04-11 15:20 JMS, revision 63939

Fixed typo in documentation string

2010-04-11 13:08 VZ, revision 63938

Add wxString::ToStdString() and ToStdWstring(). These trivial helper functions are available in all builds (provided that wxUSE_STD_STRING is not explicitly set to non-default 0 value) unlike implicit conversions to std::[w]string which are only available when wxUSE_STL==1.

2010-04-11 11:26 SC, revision 63937

cocoa implementation for overlay

2010-04-10 20:23 VZ, revision 63936

Fix crash in wxMimeTypesManager [backport of r63935 from trunk]. Don't crash if wxMimeTypesManager is used before wxApp creation. See #11927.

2010-04-10 20:13 VZ, revision 63935

Don't crash if wxMimeTypesManager is used before wxApp creation. This is arguably not a supported use case but this apparently used to work before and so it's probably not a good idea to break it now. Closes #11927.

2010-04-10 20:13 VZ, revision 63934

Add non-template wxWeakRef<T> constructor from T*. We need a non-template ctor to make the code initializing wxWeakRef with literal NULL to compile. Closes #11916.

2010-04-10 20:13 VZ, revision 63933

Add wxWeakRef::element_type, remove unnecessary assignment operator. Define element_type for consistency with other classes (wxSharedPtr, weak_ptr) and to allow accessing the type from the template code. Also remove the apparently unnecessary template assignment operator: assignment from an expression convertible to type T* works even without it and while assigning something implicitly convertible to T* wouldn't work now, it's for the best as we don't want to rely on such implicit conversions.

2010-04-10 19:47 SC, revision 63932

flushing upon destruction, hope this won't redraw congestion in old code, see #11930

2010-04-10 19:46 SC, revision 63931

note for future implementation using a former private API

2010-04-10 01:18 MW, revision 63930

Corrections for the buildbot configs.

2010-04-10 01:04 MW, revision 63929

Add wxDFB to buildbot.

2010-04-10 00:20 MW, revision 63928

Typos.

2010-04-10 00:04 MW, revision 63927

Update configuration of linux buildbots.

2010-04-09 16:14 VS, revision 63925

Regenerated makefiles after removing USE_GDIPLUS.

2010-04-09 16:12 VS, revision 63924

Remove USE_GDIPLUS setting from bakefiles. GDI+ DLL is always loaded dynamically at runtime, so there's no reason to link against it anymore.

2010-04-09 15:15 VZ, revision 63923

Discard fully transparent alpha channel when loading bitmaps. Some bitmap files declare themselves to be 32bpp, normally indicating that they have an alpha channel, but have only zeroes in their alpha data. Hence loading them used to create fully transparent images which wasn't the desired effect. Fix this by simply discarding the alpha channel entirely if it turns out that all pixels were fully transparent. Closes #10915.

2010-04-09 15:15 VZ, revision 63922

Add wxImage::ClearAlpha(). This simple method can be used to remove alpha channel from the image. See #10915.

2010-04-09 10:10 SC, revision 63921

reverting r57083 for OSX, fixes #11922

2010-04-09 08:55 VS, revision 63920

Add system libs in msvc/wx/setup.h too. This makes it possible to use static build of wx from VC++ by just including its headers. Even though it's common to have these libs in your settings, it's not always the case.

2010-04-08 23:46 MW, revision 63919

Add initial config for TBITCWXBUILDBOT buildbot.

2010-04-08 23:39 SC, revision 63918

trying to simplify and optimize font handling

2010-04-08 20:47 SC, revision 63917

using statically allocated font objects for speedup

2010-04-08 11:46 SC, revision 63912

allowing direct native tlw modal loops

2010-04-08 11:45 SC, revision 63911

switching modal loop implementation, fixes #11921

2010-04-08 07:02 RD, revision 63910

--enable-uiactionsim for wxPython builds

2010-04-08 00:23 RD, revision 63909

#include <algorithm> to fix problem in PCH-less STL builds

2010-04-08 00:07 SC, revision 63908

fixing NSFontDescriptor matching for font weights and styles, fixes #11910

2010-04-07 23:56 RD, revision 63907

(blind) fix for buildbot breakage with MSVC 6

2010-04-07 22:40 RD, revision 63905

Drop the Array class added in the last scintilla patch and switch to using wxVector instead. Closes #11765.

2010-04-07 22:32 RD, revision 63904

Add wxVectorSort function for sorting wxVector<T> containers. Closes #11889

2010-04-07 22:29 RD, revision 63903

Test m_dc before using it

2010-04-07 22:27 SC, revision 63902

fixing focus, fixes #11911

2010-04-07 20:59 VS, revision 63901

Fixed wxFileSystem::FileNameToURL() regression with UNC paths. We cannot use wxURI to do the escaping, because wxFileSystem depends on use of nonstandard escaping and prefixes (wxURI eats away file:// prefix, while wxFileSystem uses it to signify UNC paths; wxFileSystem needs to escape #,: as well).

2010-04-07 20:42 SC, revision 63900

borders might have to be drawn differently

2010-04-07 14:55 VZ, revision 63894

Fix harmless MSVC warning about int to bool conversion in Scintilla. The warning is harmless but prevents buildbot from reporting any new warnings during the library compilation step so suppress it. Notice that it might be better if ViewStyle::extraFontFlag was bool and not int to begin with.

2010-04-07 14:52 VZ, revision 63893

Suppress dummy gcc warnings in regex library code. These warnings are harmless (variables are always initialized when they are used) but they unfortunately prevent buildbot from reporting any new warnings (which may not be harmless) during the library compilation step so suppress them in the least intrusive way possible.

2010-04-07 14:43 VZ, revision 63892

Work around "possibly uninitialized variable" warning in wxFileName. Initialize multiplier to its default value in GetHumanReadableSize() to avoid a "warning: 'multiplier' may be used uninitialized in this function" from g++.

2010-04-07 12:50 VZ, revision 63891

Rename the rest of wxSIZE_CONV_TRADIONAL to wxSIZE_CONV_TRADITIONAL. Fix tests compilation after r63886. See #10673.

2010-04-07 12:50 VZ, revision 63890

Correct documentation of wxSizeConvention elements. 1KiB is 1024 bytes, not 1000. Also put the elements in the correct order (same as in the real header). See #10673.

2010-04-07 11:05 SC, revision 63889

switching loop mode for idle processing, fixes #11912 (left is a redraw issue, textfield borders are not repainted correctly when enabling)

2010-04-07 09:22 SC, revision 63888

moving static box construction - z Order makes checkboxes nonresponsive otherwise on OSX

2010-04-07 01:51 VZ, revision 63887

Fix wxGTK compilation after r63880. SendTextUpdatedEvent() needs to be public as it's called from GTK callback.

2010-04-07 00:51 FM, revision 63886

fix typos introduced by error in r63870 (see #10673)

2010-04-07 00:43 SC, revision 63885

making gradients working again

2010-04-06 23:17 SC, revision 63884

supporting text foreground color, fixes #11903

2010-04-06 20:57 SC, revision 63883

fixing warnings

2010-04-06 20:46 VZ, revision 63882

Add wxTextEntryBase::ForwardEnableTextChangedEvents(). Use this method to forward the status of text events in the implementation of wxComboBox in wxOSX/Carbon. This ensures that the events are correctly [not] generated when various wxComboBox methods are called. The unit tests now also pass with wxOSX/Carbon.

2010-04-06 20:46 VZ, revision 63881

Fix text text changed events sending in OS X combo box and text control. Don't duplicate needlessly wxTextEntry functionality in wxTextCtrl. Don't clear the combobox text entry part twice in wxComboBox::DoClear(), it is supposed to only clear the item container contents as the base class Clear() already calls wxTextEntry::Clear(). Do send text updated events from wxTextEntry itself as it applies to wxComboBox just as well as to wxTextCtrl. The unit tests now pass under wxOSX/Cocoa, not breaking them again would be appreciated.

2010-04-06 20:46 VZ, revision 63880

Move SendTextUpdatedEvent() down to wxTextEntryBase from wxTextCtrlBase. This will allow reusing it in wxComboBox implementation as well. Also add SendTextUpdatedEventIfAllowed() which can be used to only send the events if they were not blocked at wxTextEntry level. No real changes otherwise.

2010-04-06 20:46 VZ, revision 63879

Implement support for gradient stops for OS X. Currently the code still doesn't work but OTOH it's not any worse than what it was before. See #11904.

2010-04-06 20:46 VZ, revision 63878

Remove duplicated GetTextPeer() definitions from derived classes. GetTextPeer() may be implemented directly in wxTextEntry under OS X, there is no need to define it (identically) in wxTextCtrl and wxComboBox. Also just call this method instead of duplicating its code in wxOSX wxTextCtrl.

2010-04-06 20:46 VZ, revision 63877

Set the value passed to wxComboBox ctor in wxOSX/Cocoa. The initial value was simply ignored, do use it now if it's specified, i.e. non empty.

2010-04-06 20:46 VZ, revision 63876

Suppress a harmless signed/unsigned comparison warning. wxComboBox::FindString() used int loop index, change it to unsigned one.

2010-04-06 20:46 VZ, revision 63875

Suppress unused parameter warnings. observer argument of wxCFEventLoop::ObserverCallBack() and timestampsec one of wxComboBox::OSXHandleClicked() were unused and generated gcc warnings. wxComboBox::EnableTextChangedEvents() needs to be implemented but as there is already a wxFAIL in it an extra warning is not really useful.

2010-04-06 19:38 VZ, revision 63874

Attempt to correct mysterious MSVC6 compilation error. For some reasons MSVC6 refuses to compile TestData struct initialization. Try to work around it by not using wxULongLong as this looks like the only thing which might be confusing it.

2010-04-06 19:38 VZ, revision 63873

Fix more harmless warnings. Fix a warning about unused parameters and another about signed/unsigned comparison during samples and tests compilation.

2010-04-06 18:51 SC, revision 63872

adding clipboard events, fixes #11906

2010-04-06 18:23 VZ, revision 63871

Remove extra semicolons from NOTIFYICONDATA_V[12]_SIZE definitions. These semicolons prevented the code from compiling when using old SDK which didn't provide these symbols itself.

2010-04-06 16:53 VZ, revision 63870

Add support for IEC and SI size units to wxFileName::GetHumanReadableSize(). Allow choosing the multiplier to use (1000 or 1024) and the names of the units (SI or IEC). By default, still use traditional convention, i.e. multiplier of 1024 but SI unit names. This will probably need to be changed to use IEC units in the future. Also added unit test for this function. Closes #10673.

2010-04-06 15:55 VZ, revision 63869

Add default constructor to wxGraphicsGradientStop. It may be convenient to create wxGraphicsGradientStop first and initialize it later so allow doing this by providing the default argument for constructor parameters and thus allowing to use it as the default constructor. See #11897.

2010-04-06 15:55 VZ, revision 63868

Correct check for MSVC version in wxUSE_GRAPHICS_CONTEXT definition. Set wxUSE_GRAPHICS_CONTEXT to 1 by default for MSVC 7.1+ and not 8+.

2010-04-06 11:47 JJ, revision 63867

Update OpenVMS compile support

2010-04-06 02:17 VZ, revision 63866

Correct checks for gradient stop position. It may be <= 1 in the final version and not < 1. See #11897.

2010-04-05 19:52 RR, revision 63865

non PCH compilation

2010-04-05 19:19 VS, revision 63864

Fix text input and completion in wxComboCtrl and wxOwnerDrawnComboBox. Both wxEVT_KEY_DOWN and wxEVT_CHAR must be handled and only the latter used for completion (or any characters input). Don't make incorrect assumptions about wxEVT_CHAR keycodes either, it's only the Unicode character and printability that matter. Otherwise, completion in readonly controls wouldn't work correctly for e.g. numbers on numpad or non-ASCII characters.

2010-04-05 19:18 VS, revision 63863

wxOwnerDrawnComboBox: handle Home and End keys as native control does.

2010-04-05 19:18 VS, revision 63862

Pass events around with ProcessEvent(), not AddPendingEvent(). The latter adds the event for later processing. As a result, the event appears to be processed to the caller, even if the handled it was passed to called Skip() on it. ProcessEvent() doesn't suffer from this problem, it may modify the event as expected.

2010-04-05 19:18 VS, revision 63861

wxOwnerDrawnComboBox: handle numpad navigation keys. For consitency with the native control, up/down/pgup/pgdown keys should be handled even when pressed on the numpad.

2010-04-05 19:18 VS, revision 63860

Implement native mousewheel behaviour in wxOwnerDrawnComboBox.

2010-04-05 19:18 VS, revision 63859

In wxPopupFocusHandler, watch for EVT_CHAR, not EVT_KEY_DOWN. We should close the popup only if neither of these events was processed; previously, EVT_CHAR would never reach the popup in open state, as it would be closed automatically.

2010-04-05 14:44 SC, revision 63858

moving OnInit back

2010-04-05 14:15 VZ, revision 63857

Add support for gradient stops to wxGraphicsContext. Allow specifying a set of gradient stops instead of just the beginning and ending colours. Add the new wxGraphicsGradientStop(s) classes and new wxGraphicsContext::Create{Linear,Radial}GradientBrush() overloads. Also change the same methods of wxGraphicsRenderer to take wxGraphicsGradientStops instead of a pair of colours. Implement the new API for MSW and Cairo. OS X still uses just the two colours for now. Closes #11897.

2010-04-05 13:44 VZ, revision 63856

Add wxTransparentColour global pseudo-variable. Introduce a symbolic name for a fully transparent colour. See #11897.

2010-04-05 13:44 VZ, revision 63855

Use helper wxColourToColor function in wxMSW wxGraphicsContext code. Don't repeat Color ctor from wxColour all the time.

2010-04-05 03:07 PC, revision 63854

avoid setting negative window size

2010-04-05 03:06 PC, revision 63853

freeze whole window for TLW

2010-04-05 02:45 PC, revision 63852

avoid permanently frozen TLW when frozen child is destroyed with GTK+ 2.18

2010-04-04 17:22 JMS, revision 63850

Resolve GCC's 'type-punned pointer will break strict-aliasing rules' warning by breaking up code in wxAny GetValue() and SetValue() functions into several lines (fixes #11865)

2010-04-04 15:19 VZ, revision 63849

Fix wxTaskBarIcon to work under all Windows versions. When the code was compiled using a new SDK, creating wxTaskBarIcon failed under older Windows systems because of a too big NOTIFYICONDATA size specified by the program. Fix this by using the fixed NOTIFYICONDATA_V2_SIZE to get old version of the struct which nevertheless contains everything we need and even fall back to NOTIFYICONDATA_V1_SIZE for Win9x if needed. Closes #11886.

2010-04-03 14:25 VZ, revision 63842

Correct compilation breakage of r63832. wx/setup.h can't use wxCHECK_VISUALC_VERSION() which is defined in wx/platform.h _after_ wx/setup.h inclusion. Replace wxCHECK_VISUALC_VERSION() with manual tests for _MSC_VER. Also add more comments to explain what's going on.

2010-04-03 11:58 SC, revision 63841

shuffling code back from eventloop to common app utils

2010-04-03 11:49 SC, revision 63840

no special casing for iphone necessary

2010-04-03 11:43 SC, revision 63839

fixing wrong version commit

2010-04-03 11:10 SC, revision 63838

support for toggle bitmap button

2010-04-03 08:59 SC, revision 63837

fixing multilib build

2010-04-02 23:30 VZ, revision 63833

Correct typo in configure introduced in r63832. See #11892.

2010-04-02 21:30 VZ, revision 63832

Allow using wxGraphicsContext with MinGW if gdiplus.h is available. MinGW doesn't include gdiplus.h but it can be installed independently by the user. Allow to use it if it's available: - Include windows.h when checking for it in configure as this is apparently needed for its compilation. - Don't reset wxUSE_GRAPHICS_CONTEXT to 0 for non-Microsoft compilers, instead just define it as 0 by default for them, allowing the user to simply change the definition in wx/msw/setup.h. Closes #11892.

2010-04-02 21:30 VZ, revision 63831

Fix crash in wxMediaCtrl::GetDownloadProgress() with ActiveMovie backend. IActiveMovie::get_FilterGraph() may return S_FALSE, i.e. succeed, while leaving the output pointer NULL. Check for this and don't dereference the pointer before checking for its validity. Also do it for the other call in this function just in case. And rearrange the code to be slightly more readable. Closes #11894.

2010-04-02 21:30 VZ, revision 63830

Show labels for controls in wxOSX/Carbon toolbars. Add a call to HIToolbarItemSetLabel(). Closes #11885.

2010-04-02 20:19 SC, revision 63829

keeping m_labelOrig untouched, solves test failures (FM)

2010-04-02 16:52 SC, revision 63828

simplifying modal event loop handling

2010-04-02 14:27 SC, revision 63827

moving OnInit to a later stage to avoid Carbon Emulation artifacts by the OS, fixes #11839

2010-04-01 19:16 PC, revision 63819

move everything inside wxUSE_RIBBON wrapper

2010-04-01 19:00 PC, revision 63818

avoid setting negative window sizes

2010-04-01 18:59 PC, revision 63817

don't try to create a color named "Default"

2010-04-01 11:59 JJ, revision 63816

Fix OpenVMS compile support for new version in src/stc

2010-03-30 23:38 FM, revision 63806

Committing modified version of jwiesemann's patch (see #11223): Fix wxURL copy ctor and assignment: the default ones provided by the compiler are wrong because wxURL uses pointers internally. Also add a test for copy & assignment in URLTestCase. Closes #11223

2010-03-30 18:14 PC, revision 63805

Remove unnecessary declarations. Contrary to the comment, they are not used often, in fact only once each and in the same file.

2010-03-30 14:02 JJ, revision 63804

correcting typo in commit 63803

2010-03-30 13:54 JJ, revision 63803

Defining wxCOMPILE_TIME_ASSERT for OpenVMS

2010-03-30 05:50 RD, revision 63792

Apply patch (plus some additional changes) upgrading Scintilla to version 2.03. Closes #11765, #11748, #11346

2010-03-29 23:31 FM, revision 63786

better docs for Get/SetLabel methods

2010-03-29 23:24 VZ, revision 63785

Fix compilation breakage in r63783. Added missing #endif.

2010-03-29 23:24 VZ, revision 63784

Only allow opening existing files in docview framework. Use wxFD_FILE_MUST_EXIST when asking the user for the name of the file to open. Closes #11866.

2010-03-29 22:57 VZ, revision 63783

Add wxUSE_FSWATCHER dependency on wxUSE_THREADS for wxMSW. wxFileSystemWatcher implementation uses threads under MSW and can't be compiled when wxUSE_THREADS==0.

2010-03-29 20:17 JMS, revision 63782

For better support of wxValidators, invoke wxValidator::Validate() directly. Also remove obsolete flag wxPG_FL_VALIDATION_FAILED and make wxPropertyGrid::DoEditorValidate() virtual.

2010-03-29 16:19 VS, revision 63781

Use fixed screen DPI of 96 when printing HTML. Unlike font sizes, which depend on screen resolution because of weird wxFont API, pixel sizes used elsewhere (and in particular, for images) shouldn't depend on screen DPI. This finally makes the output independent of screen size. Fixes #10942.

2010-03-29 16:18 VS, revision 63780

Removed useless wxDisplaySize() calls from wxHtmlPrintout.

2010-03-29 13:39 CE, revision 63779

2.8.11