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

2008-07-20 22:11 VZ, revision 54729

fix (harmless) Win64-compatibility MSVC warning

2008-07-20 22:05 VZ, revision 54728

handle C++ exception in EVT_{TIMER,IDLE} handlers (#9768)

2008-07-20 12:57 VZ, revision 54727

really fix compilation for PCH-less builds

2008-07-20 12:37 VZ, revision 54726

add a missing backslash (#9766)

2008-07-20 12:35 VZ, revision 54725

compilation fix for PCH-less builds

2008-07-19 23:14 VZ, revision 54723

big wxURI cleanup; it now handles Unicode characters correctly (#3874)

2008-07-19 20:07 VZ, revision 54722

remove the just added assertEquals(time_t, long) overload, it results in infinite recursion and crash if time_t is the same type as long

2008-07-19 19:59 VZ, revision 54721

check that string passed to FromUTF8() is valid even in release build, this is safer; add a separate FromUTF8Unchecked() which can be used for maximal efficiency

2008-07-19 16:17 MMK, revision 54710

Created custom event

2008-07-19 15:36 VZ, revision 54709

no changes, just removed an unnecessary semicolon at top level

2008-07-19 05:33 VZ, revision 54708

compilation fix for builds without wxHAS_RAW_KEY_CODES

2008-07-19 01:53 VZ, revision 54704

already escaped backslash shouldn't escape the following quote in ConvertStringToArgs()

2008-07-19 01:45 VZ, revision 54703

fix bug with wxCSConv("ASCII")

2008-07-19 01:37 VZ, revision 54702

no changes, just added some explanatory comments for wxCSConv members

2008-07-19 01:34 VZ, revision 54701

backport fix for wxCSConv(wxFONTENCODING_SYSTEM) creation from trunk: use system encoding for DoCreate(), not name which is not handled correctly for ASCII case

2008-07-19 00:32 VZ, revision 54700

return ISO8859-1 from wxLocale::GetSystemEncoding() for C locale, as in trunk, otherwise wxCSConv with default encoding doesn't work at all

2008-07-18 23:36 VZ, revision 54699

disable compilation of test broken by wxMimeTypesManager changes

2008-07-18 23:33 VZ, revision 54698

compilation fix for PCH-less build

2008-07-18 23:08 VZ, revision 54697

simplify the test, don't reuse the same macro for different things

2008-07-18 23:07 VZ, revision 54696

get rid of special WX_ASSERT_FOO_EQUAL macros by defining CppUnit::assertEquals() overloads for wx types

2008-07-18 22:22 VZ, revision 54695

mention compatibility implications of wxExecute() quoting changes; don't change quoting of already quoted arguments in 2.8 for compatibility; also fix handling of empty arguments as a side effect (see #4115)

2008-07-18 13:56 VZ, revision 54693

remove duplicate SetIcon(sample_xpm) call which didn't even compile under MSW

2008-07-18 13:47 VZ, revision 54692

compilation fix for eVC4: include commctrl.h explicitely

2008-07-18 12:56 JS, revision 54691

Tab removal

2008-07-18 12:55 JS, revision 54690

Tab removal

2008-07-18 08:17 JS, revision 54689

Fixed initial layout bug when using dynamically created bitmap on wxGTK

2008-07-18 08:06 MW, revision 54688

Fix gzip class factory to return gzip not zlib stream.

2008-07-18 02:45 PC, revision 54676

fix masking of disabled bitmaps with some themes

2008-07-18 00:47 VZ, revision 54675

really correct detecting the end of UTF-7-encoded strings

2008-07-17 23:45 VZ, revision 54673

fix bug introduced in r54646: we still need to count the embedded NULs when converting the entire NUL-terminated string to wchar_t, only the trailing NUL shouldn't be counted

2008-07-17 23:24 VZ, revision 54672

make test failures easier to debug by using more informative failure messages

2008-07-17 23:01 VZ, revision 54671

don't run the tests which can't succeed in ANSI build; remove the tests for wxUSE_WCHAR_T, it's always 1 now; test MB2WC conversions in Unicode build too (it only tested WC2MB for some reason)

2008-07-17 23:01 VZ, revision 54670

properly detect missing data at the end of UTF-7-encoded segment and fail the conversion in this case

2008-07-17 20:03 VZ, revision 54669

overwrite incorrect last commit (which did exactly what its comment said it couldn't do as it was breaking ABI compaitiblity...)

2008-07-17 19:59 VZ, revision 54668

use int32 values in invalid wxDateTime ctor after r54663 fixes to wxLongLong under LP64 platforms (unfortunately we can't do the same thing as in trunk as this would break ABI because default-constructed wxDateTime objects in the programs compiled against old headers would become different from the ones defined in the new library)

2008-07-17 19:44 VZ, revision 54667

CP-xxx and MS-yyy iconv identifiers actually don't have dashes in them (this fixes CP932 unit test failure under FreeBSD where iconv doesn't have WINDOWS-932)

2008-07-17 19:43 VZ, revision 54666

implement wxCSConv::From/ToWChar() correctly for Latin-1 (#9739)

2008-07-16 16:06 VZ, revision 54665

emphasize the fact that GetSelectedCols/Rows() is not sufficient to get the selection (#4732)

2008-07-16 15:53 VZ, revision 54664

allow using SetFont(wxNullFont) to reset the font as per documented behaviour (#3238)

2008-07-16 15:22 VZ, revision 54663

fix wxLongLong for LP64 platforms [backport of r45256 from trunk] (#9745)

2008-07-16 15:21 VZ, revision 54662

add GetLo/Hi() test

2008-07-16 08:59 SC, revision 54661

adding missing include for non-precomp builds, and grouping headers, solves #9744

2008-07-16 03:02 VZ, revision 54660

disable the test declarations and not just the definitions if we don't have strtoll()

2008-07-16 02:59 VZ, revision 54659

disable test which doesn't work without setenv()

2008-07-16 02:49 VZ, revision 54658

_beginthreadex() entry point should really return unsigned and not wxUIntPtr even if this means that it's impossible to return pointers from wxThread::Entry() under Win64 (#9727)

2008-07-16 02:39 VZ, revision 54657

fix a typo in wxUSE_UNICODE test when choosing between strtoull and wcstoull; include wchar.h when testing for the latter

2008-07-16 02:30 VZ, revision 54656

disable the test if we have no strtoll()

2008-07-16 02:19 VZ, revision 54655

fix signed/unsigned comparison warning by using CPPUNIT_ASSERT_EQUAL instead of CPPUNIT_ASSERT

2008-07-16 02:18 VZ, revision 54654

removed a test which doesn't really work

2008-07-16 01:54 VZ, revision 54653

backport fixes for the fix for transparency in static bitmaps (r51824) from trunk (r54651 and r54652)

2008-07-16 01:47 VZ, revision 54652

check for comctl32.dll version and not OS one as an app running XP without manifest is still incapable of drawing bitmaps with alpha (still related to #8684)

2008-07-16 01:30 VZ, revision 54651

use parent background and not ours unless one was explicitly set when manually drawing (related to #8684)

2008-07-16 01:08 VZ, revision 54650

clean up wxBitmapButton::Create(); override MSWGetStyle() (#4804)

2008-07-16 00:53 VZ, revision 54649

use wxCmdLineParser::ConverStringToArgs() instead of (incorrectly) duplicating it here (#9743)

2008-07-16 00:49 VZ, revision 54648

implement flag for Unix-like behaviour in wxCmdLineParser::ConverStringToArgs()

2008-07-16 00:48 VZ, revision 54647

added wxConvISO8859_1 test

2008-07-15 23:57 VZ, revision 54646

fix the output length returned from cWC2MB/MB2WC() to be consistent with From/ToWChar(); fix off by NUL-length bug in wxMBConv implementation of From/ToWChar() in terms of legacy WC2MB/MB2WC() (which are still used in wxMBConv_wxwin) that this uncovered; added a simple test for the bugs the old code resulted in which could be easily seen with wxConvISO8859_1 (see #9739)

2008-07-15 21:29 JS, revision 54645

Fixed wxTreebook tree control border style

2008-07-15 21:28 JS, revision 54644

Fixed wxTreebook tree control style

2008-07-15 18:00 VZ, revision 54643

use CPPUNIT_ASSERT_EQUAL(x,y) instead of CPPUNIT_ASSERT(x==y) to better see test failures

2008-07-15 17:38 VZ, revision 54642

use CPPUNIT_ASSERT_EQUAL(x,y) instead of CPPUNIT_ASSERT(x==y) to better see test failures

2008-07-15 17:31 VZ, revision 54641

test ok in the record reading loop as otherwise we never exit from it if there is an invalid character in the record

2008-07-15 16:09 VZ, revision 54640

remove wxCSConv::MB2WC/WC2MB, implement Latin-1 fallback conversion in To/FromWChar() themselves; this is more efficient and removing the old code fixes off by 1 bugs in it (related to #9739)

2008-07-15 15:22 VZ, revision 54639

don't pass pointers to unaligned DWORDs to avoid 64 bit build problems (#9726)

2008-07-15 14:36 VZ, revision 54638

fix changing size of merged cells (#9736)

2008-07-15 13:50 VZ, revision 54637

don't mention deprecated wxRESIZE_BOX (#9735)

2008-07-14 21:13 VS, revision 54621

compilation fix after SetClippingRegion changes (patch #9696 by Anders Larsen)

2008-07-14 21:01 VZ, revision 54620

only initialize sockets if IPC implementation is socket-based

2008-07-14 15:12 VZ, revision 54617

PCH-less build fix

2008-07-14 10:00 JS, revision 54616

Documented wxRTC fixes

2008-07-14 02:34 VZ, revision 54615

fix heap corruption bug: use delete[] to delete a buffer allocated with new[], not delete

2008-07-14 02:19 VZ, revision 54614

added a simple IPC unit test

2008-07-14 02:04 VZ, revision 54613

relay out the control after deleting any page, not just the last one (#9684); also extract the size event sending code in a separate function to be able to replace it with something better easier later

2008-07-14 02:03 VZ, revision 54612

calling Notify() from child thread is ok -- as long as you do it from one and the same thread all the time

2008-07-14 01:20 VZ, revision 54611

removed automatically generated code for frame layout with human-readable version; some other cleanup

2008-07-13 22:13 KO, revision 54610

Revert accidently committed experimental code.

2008-07-13 18:20 VZ, revision 54609

define {first,second}_type in the struct declared by _WX_DECLARE_PAIR too for compatibility with std::pair, we can avoid #ifdefs in the code using the hash then (#9725)

2008-07-13 18:16 VZ, revision 54608

set wxKeyEvent::m_uniChar correctly in the events generated by generic wxListCtrl (#4581)

2008-07-13 18:06 VZ, revision 54607

added wxFlexGridSizer::Add{Row,Col}Growable() (#2603)

2008-07-13 18:02 VZ, revision 54606

mention that GetItemRect() is new in 2.9.0

2008-07-13 18:01 VZ, revision 54605

relay out the control after deleting any page, not just the last one (#9684); also extract the size event sending code in a separate function to be able to replace it with something better easier later

2008-07-13 17:52 VZ, revision 54604

don't assert when GetSubItemRect() is called in non-report view if it's called with wxLIST_GETSUBITEMRECT_WHOLEITEM

2008-07-13 17:34 VZ, revision 54603

add back parameter dropped during Doxygen conversion (#9697)

2008-07-13 17:31 VZ, revision 54602

correct wrong example of using wxSizerFlags::Border() (#9699)

2008-07-13 17:28 VZ, revision 54601

added wxVListBox::GetItemRect() (#9711)

2008-07-13 16:33 VZ, revision 54600

use wxString::Format() instead of hardcoding floating point numbers string representation, this doesn't work in locales using decimal comma (#9714)

2008-07-13 16:29 VZ, revision 54599

more compilation fixes for wxUSE_STL && wxUSE_DEBUG_CONTEXT build (#9698)

2008-07-13 12:13 JS, revision 54598

Shift+Return now puts the cursor on the next line Fixed GetContiguousPlainText bug that caused wrapping problem

2008-07-13 12:11 JS, revision 54597

Shift+Return now puts the cursor on the next line Fixed GetContiguousPlainText bug that caused wrapping problem

2008-07-12 02:43 VZ, revision 54593

run tests several times with different socket flags

2008-07-12 02:30 VZ, revision 54592

check that the stream raises no error other than EOF when it's supposed to be at EOF

2008-07-12 02:29 VZ, revision 54591

enable the rest of wxSocketStream tests now that they pass

2008-07-12 02:28 VZ, revision 54590

add wxSocket::IsClosed(), use it to implement Eof() in wxSocketStream

2008-07-12 02:17 VZ, revision 54588

no changes, just removed broken #if 0'd out code

2008-07-12 02:12 VZ, revision 54587

no changes, just removed the unnecessary inline keywords

2008-07-12 02:01 VZ, revision 54585

remove unused private wxSocketBase::m_lastError

2008-07-10 02:28 RD, revision 54574

ShouldAccountFor was a 2.8 only change. Use IsShown instead.

2008-07-10 02:07 VZ, revision 54573

make wxApp::Yield() exception-safe

2008-07-10 01:33 RD, revision 54569

Bump subrelease number

2008-07-10 01:32 RD, revision 54568

If an item is hidden, don't check it for overflows.

2008-07-10 01:32 RD, revision 54567

If an item is hidden, don't check it for overflows.

2008-07-09 23:05 VS, revision 54566

use iterators instead of c_str() in wxXmlResource::GetText()

2008-07-09 17:25 SN, revision 54565

Applied fix for wxGrid::ClearAttrCache (#9712).

2008-07-09 17:24 SN, revision 54564

Applied fix for wxGrid::ClearAttrCache (#9712).

2008-07-09 14:02 VZ, revision 54563

unescape the value of wxHyperlinkCtrl label (#9683)

2008-07-09 06:49 SC, revision 54562

adjusting endif comment to new #if

2008-07-09 02:40 VZ, revision 54560

some blind compilation fixes for legacy code (#9698)

2008-07-09 02:36 VZ, revision 54559

fix wxUniv/MSW build with wxUSE_MENUS==0 (#9694)

2008-07-09 02:32 VZ, revision 54558

show busy cursor in wxLaunchDefaultBrowser and add a new flag to avoid it (#9678)

2008-07-09 02:18 VZ, revision 54557

update the year in wx information dialog (#9701)

2008-07-09 02:16 VZ, revision 54556

add some output stream tests

2008-07-09 02:16 VZ, revision 54555

skip calls of TellI/TellO() if the stream is not seekable; more const-correctness

2008-07-09 02:05 VZ, revision 54554

use wxSocketBase::Initialize/Shutdown() instead of GSocket_Init/Cleanup()

2008-07-09 01:38 RD, revision 54553

Applied patch from Ticket #9563. Use just the rectangle of the widget with the focus when deciding if scrolling is needed, instead of the rect of the parent of the widget/child of the target window. This fixes some flickering when a panel of widgets is used inside the scrolled window, and also a total lack of scrolling if the focused widget is out of view but the upper-left corner of the panel is in view.

2008-07-09 01:37 RD, revision 54552

Applied patch from Ticket #9563. Use just the rectangle of the widget with the focus when deciding if scrolling is needed, instead of the rect of the parent of the widget/child of the target window. This fixes some flickering when a panel of widgets is used inside the scrolled window, and also a total lack of scrolling if the focused widget is out of view but the upper-left corner of the panel is in view.

2008-07-08 15:51 JS, revision 54549
  • D /wxWidgets/branches/SOC2008_WXWALLCTRL/wxWallCtrlProject-autosave.pjd

Remove auto-save file

2008-07-08 12:38 MMK, revision 54548

Implemented seeking functionality

2008-07-08 00:49 VZ, revision 54543

MSW compilation fix after last commit

2008-07-08 00:19 VZ, revision 54542

added (for now trivial) socket stream test

2008-07-07 20:21 RR, revision 54541

Minor corrections

2008-07-07 16:00 PC, revision 54523

gtk-universal build fixes

2008-07-07 13:17 SC, revision 54522

make sure mac pref files remain visible and named as before

2008-07-06 23:57 VZ, revision 54520

fix focus problems in picker controls under MSW which were due to not letting the system process kill focus for the text part of the control (#9687)

2008-07-06 18:34 RR, revision 54515

wxString doc corrections

2008-07-06 16:30 SN, revision 54514

Make AutoSizing in wxGrid's SetCol/RowSize work and use it from corresponding AutoSize functions. This fixes #4107.

2008-07-06 16:29 SN, revision 54513

Make AutoSizing in wxGrid's SetCol/RowSize work and use it from corresponding AutoSize functions. This fixes #4107.

2008-07-06 14:14 VZ, revision 54511

fix unused parameters warnings (#9529)

2008-07-06 14:04 VZ, revision 54510

avoid duplicated command events if a wxFrame-level handler called event.Skip() (#4757)

2008-07-06 13:40 VZ, revision 54509

added wxscintilla and wx_stc projects (#4378)

2008-07-06 02:21 VZ, revision 54504

take const address objects in wxSocketClient::Connect() and wxSocketBase::SetLocal()

2008-07-06 02:20 VZ, revision 54503

add a numeric column test

2008-07-06 00:26 VZ, revision 54501

remove mentions of pos attribute, it never worked and it's time to remove it

2008-07-06 00:25 VZ, revision 54500

don't use deprecated wxToolBar::AddTool() overload taking position parameters which don't do anything anyhow

2008-07-05 20:53 VZ, revision 54499

remove code for drawing icon of minimized window manually, this was only useful under NT 3.51 and earlier among all Win32 systems and I don't think we support that any more

2008-07-05 20:51 VZ, revision 54498

avoid duplicating wxWindow::HandleCommand() in wxFrame, only handle the commands for the frame menu bar elements there: this avoid generating duplicate events if a command event handler skips

2008-07-05 19:06 VS, revision 54497

reverted Robert's premature removal of deprecated 2.6 functions in r54490

2008-07-05 18:25 SN, revision 54496

Added missing include (#9625).

2008-07-05 18:23 SN, revision 54495

Added missing include (#9625).

2008-07-05 18:23 PC, revision 54494

mark long-deprecated methods as such, and don't use them in wx code

2008-07-05 18:05 SN, revision 54493

Experimental simplification of the code by using MWERKS version for all compilers.

2008-07-05 17:54 SN, revision 54492

Fixed Digital Mars breakage as suggested by Vadim on mailing list (#9619).

2008-07-05 17:38 SN, revision 54491

Added missing include (depending on configuration, see #9622).

2008-07-05 10:58 RR, revision 54490

Remove 2_6 compatibility code

2008-07-04 14:23 SC, revision 54486

changing condition to make sure we are not failing in case the min system is given as 10.3.9 ... solves #9693

2008-07-04 14:05 RR, revision 54485

Use t_str() instead of c_str()

2008-07-04 09:49 JS, revision 54484

Typo correction

2008-07-04 08:02 RR, revision 54483

Ticket #9689 (new defect) Opened 33 hours ago Documentation Corrections for \interface\wx\notebook.h

2008-07-04 07:56 RR, revision 54482

added wxString.t_str() and used it in filefn.cpp

2008-07-03 20:34 RR, revision 54481

Make wxMSW wxBase compile in UTF-8 mode

2008-07-03 17:20 MMK, revision 54480

Fixed DB project

2008-07-03 16:04 VZ, revision 54479

handle FNERR_INVALIDFILENAME which happens if an invalid file name is passed to wxFileDialog (#9688)

2008-07-03 15:42 VZ, revision 54478

support disabling items before adding them to the menu (#3423)

2008-07-03 15:37 VZ, revision 54477

don't ignore changes of empty string to 0 or vice versa in float grid cells (#2802)

2008-07-03 14:29 RR, revision 54476

wxMac wxDataViewCtrl no border patch

2008-07-03 13:44 RR, revision 54475

further xxx_str() clarification

2008-07-03 12:13 RR, revision 54474

Corrected c_str() docs

2008-07-02 14:45 VZ, revision 54465

don't use @true and @NULL inside of @code sections

2008-07-02 10:46 RR, revision 54464

Tried to make wxListBox::Update() work, typo corrected

2008-07-02 08:15 RR, revision 54463

Tried to make wxListBox::Update() work

2008-07-02 08:10 RR, revision 54462

#9675: wxDataViewModel::Reset() and scrollbar problem (wxMac)

2008-07-01 21:20 MMK, revision 54458

Code placed at correct location to allow Dialog Blocks to regenerate code without overwriting the sample program code.

2008-07-01 16:09 VZ, revision 54454

compilation fix for PCH-less build after last commit

2008-07-01 15:49 VZ, revision 54453

change not only the focus but also last remembered TLW focus in SetValue() to avoid focus being reset to the wrong radio button when TLW regains activation (#9676)

2008-07-01 13:44 VZ, revision 54451

use proper name for a contributor

2008-07-01 10:04 RR, revision 54450

Add code for parsing globs file in /usr/local as well

2008-07-01 09:59 RR, revision 54449

Add code for parsing globs file

2008-07-01 09:28 RR, revision 54448

Add stub for parsing globs file

2008-07-01 08:48 RR, revision 54447

Restore wxFile docs

2008-07-01 08:31 RR, revision 54446

Remaining conversion to read-only XDG MIME types code

2008-07-01 08:30 RR, revision 54445

Corrected mime types docs

2008-07-01 00:05 VZ, revision 54441

quote the arguments containing spaces or quotes correctly in wxExecute(char **) overload (#4115)

2008-06-30 23:48 VZ, revision 54440

remove unused exec.rc file

2008-06-30 23:37 VZ, revision 54439

fix a hang up in wxExecute(wxArrayString& output) overload (#4380)

2008-06-30 18:21 VZ, revision 54437

implement wxListCtrl::GetSubItemRect() for generic version and fix bug in it in wxMSW one; also added a test for it in the sample

2008-06-30 13:40 VZ, revision 54436

VC6 compilation fix: using access declaration can only be used with immediate base class members with this compiler

2008-06-30 13:35 VZ, revision 54435

VC8 compilation fix after last change (#9665)

2008-06-30 11:58 RR, revision 54434

Removed most of the pre-XDG MIME code from the Unix implementation, many speed-ups by simplification

2008-06-30 10:42 MMK, revision 54433

Updated DB project file

2008-06-30 09:42 JS, revision 54432

Further style preview fix

2008-06-30 09:42 JS, revision 54431

Further style preview fix

2008-06-30 09:39 JS, revision 54430

Compile fix

2008-06-29 22:11 VZ, revision 54426

blind fix for PCH-less build

2008-06-29 22:05 VZ, revision 54425

add Scintilla.iface to the distribution

2008-06-29 21:46 VZ, revision 54424

compilation fix for ASCII STL build (#9661)

2008-06-29 17:04 JS, revision 54423

Corrected problem of wrong paragraph receiving style in formatting dialog.

2008-06-29 17:03 JS, revision 54422

Corrected problem of wrong paragraph receiving style in formatting dialog.

2008-06-29 15:15 SN, revision 54421

Don't force ColWidth to always grow for wxGridCellAutoWrapStringRenderer (#1798)

2008-06-29 15:14 SN, revision 54420

Don't force ColWidth to always grow for wxGridCellAutoWrapStringRenderer (#1798)

2008-06-29 01:35 VZ, revision 54419

ensure that GetEditControl() returns something even if label editing was started by the user and not the program (#1325) [backport of r53831 from trunk]

2008-06-29 01:28 VZ, revision 54418

open the file for reading and writing in wx(F)FileStream, this class can't work otherwise (#3335) [partial backport of r54246 from trunk]

2008-06-29 01:21 VZ, revision 54417

use _get_timezone() under VC8 as _timezone is not available in all CRT versions (#4691)

2008-06-29 01:04 VZ, revision 54416

fix crash when vetoing label edit end due to a click outside of the text control (#8947) [backport of r51149 from trunk]

2008-06-29 00:50 VZ, revision 54415

fix handling of the keys in wxSpinCtrl (#9637)

2008-06-29 00:35 VZ, revision 54414

add a new menu for wxTextEntry-specific tests, currently it allows to check how auto-completion works (#9614)

2008-06-29 00:19 VZ, revision 54413

don't call SetInsertionPointToEnd() on read-only combobox in wxGridCellChoiceEditor::Reset() neither (this had been already fixed for StartEdit() before) (#8843)

2008-06-29 00:12 VZ, revision 54412

support wxListCtrl::GetViewRect() in report view too; test it in the sample (#9484)

2008-06-28 23:18 VZ, revision 54411

fix --disable-optimise configure option description (#9660)

2008-06-28 23:14 VZ, revision 54410

don't ignore changes of empty string to 0 or vice versa in float grid cells (#4764)

2008-06-28 20:52 VS, revision 54409

backported high-quality wxMSW printing to 2.8 (disabled by default, has to be enabled by changing wxUSE_HIGH_QUALITY_PREVIEW_IN_WXMSW to 1 in prntbase.cpp

2008-06-28 18:58 VZ, revision 54407

support wxDP_ALLOWNONE in generic wxDatePickerCtrl (#3164)

2008-06-28 18:56 VZ, revision 54406

forward port 2.8.8 changelog

2008-06-28 18:18 VZ, revision 54405

deprecate wxTE_AUTO_SCROLL as it's always on in the ports which support it anyhow (#2176)

2008-06-28 15:32 VS, revision 54404

split wxPrintPreviewBase::RenderPage() into helper methods in the same way its done on the trunk

2008-06-28 15:16 VS, revision 54403

backport of r53980: fixed wxHTML default font size for printing to be 12pt regardless of the platform

2008-06-28 01:49 VZ, revision 54400

don't activate items on Alt-Space or Alt-Enter (#9615)

2008-06-28 01:43 VZ, revision 54399

test for either Ctrl or Shift in MSWShouldPreProcessMessage() instead of Ctrl twice (#9620)

2008-06-28 01:40 VZ, revision 54398

don't call OnData() if OnEnter() rejected the drag (#9634)

2008-06-28 00:17 SN, revision 54397

Restricted column/row resizing in cell window to left button for consistency with label windows and because ending the resize is only handled in case of LeftUp() (Fixing #4212).

2008-06-28 00:10 SN, revision 54395

Restricted column/row resizing in cell window to left button for consistency with label windows and because ending the resize is only handled in case of LeftUp() (Fixing #4212).

2008-06-27 21:32 BP, revision 54393

#9605: Documentation Corrections for richtextctrl.h

2008-06-27 21:31 BP, revision 54392

#9589: Documentation Corrections for textctrl.h

2008-06-27 21:07 VZ, revision 54391

use wxIconizeEvent::IsIconized() instead of deprecated Iconized()

2008-06-27 18:23 BP, revision 54388

Forgot to export the environment variable so Doxygen picks it up for stripping the path.

2008-06-27 18:00 BP, revision 54387

Commit 3 of 3 for Doxygen path fixes, this one finally removes all 600+ unnecessary uses of @wxheader and @headerfile.

2008-06-27 16:47 BP, revision 54386

Part 2 of 3 commits bringing proper Doxygen path usage without use of @wxheader.

2008-06-27 16:22 BP, revision 54385

Moved all interface headers into a 'wx' subdirectory for proper use of Doxygen path settings.

2008-06-27 15:27 SC, revision 54384

use default fonts that have also bold and italic variants present on the system (CoreText does not synthesize font variants) fixes #4751

2008-06-27 14:14 RR, revision 54383

Added mostly empty wxLaunchDefaultApplication

2008-06-27 13:47 RR, revision 54382

Ticket #9641: wxBitmapComboBox_SetFont.patch, making it public

2008-06-27 13:45 RR, revision 54381

Fix warning

2008-06-27 13:19 RR, revision 54380

gtk wxStaticText and wxALIGN_CENTER_VERTICAL

2008-06-27 09:50 SC, revision 54379

was incorrectly forcing the font to 12 in most cases, fixes #4745

2008-06-27 06:31 BP, revision 54378

Separated out function grouping for less confusing parameter docs. (#9651)

2008-06-26 17:25 VZ, revision 54377

build fix for PCH-less build

2008-06-26 12:47 SC, revision 54376

updating help texts, fixes #9647

2008-06-26 12:44 VZ, revision 54375

still support wxNB_XXX and wxADJUST_MINSIZE in XRC files even if they're deprecated at C++ level, not all tools have been updated to not use them any more

2008-06-26 11:49 MMK, revision 54374

Implemented OnSize() and added unicode macros

2008-06-26 11:49 VZ, revision 54373

don't forget to output new line in wxMessageOutputStderr::Output() even if conversion to multibyte fails

2008-06-26 11:16 VZ, revision 54372

fix the wrong #ifdef WXWIN_COMPATIBILITY_2_8 checks, #if should be used (#9644)

2008-06-26 10:55 JS, revision 54371

Fixed bug whereby sash would disappear under left hand pane

2008-06-26 10:55 JS, revision 54370

Fixed bug whereby sash would disappear beneath left-hand pane

2008-06-26 07:19 SC, revision 54369

fixing an incorrect conversion path from utf8 to plain ascii instead of unicode, closes #9629

2008-06-26 07:09 SC, revision 54368

fixing an incorrect conversion path from utf8 to plain ascii instead of unicode, closes #9629

2008-06-25 09:04 SC, revision 54359

rename for docs as well

2008-06-25 08:38 JS, revision 54358

Allow an app to cut down start time by not doing unnecessary mime types initialisation

2008-06-25 08:37 JS, revision 54357

Documented filesys.no-mimetypesmanager

2008-06-25 08:36 JS, revision 54356

Allow an app to cut down start time by not doing unnecessary mime types initialisation

2008-06-25 08:35 JS, revision 54355

WinCE compile fix

2008-06-25 07:57 JS, revision 54354

Recorded GNOME MIME types fix

2008-06-25 07:52 JS, revision 54353

Gnome Mime type fix by scanning for .desktop files

2008-06-25 07:51 JS, revision 54352

Better extension extraction

2008-06-25 01:02 VZ, revision 54350

more wxBitmapType-related backward compatibility fixes

2008-06-24 23:43 VZ, revision 54349

provide deprectaed LoadFile() and FindHandler() overloads taking long, otherwise the existing code using long instead of wxBitmapType doesn't compile because of the ambiguity between long->wxBitmapType and long->wxString conversions (as these methods are also overloaded to take wxString)

2008-06-24 23:42 VZ, revision 54348

don't use deprecated wxIconizeEvent::Iconized()

2008-06-24 18:59 MMK, revision 54347

Modified rendering time and used arrow keys

2008-06-24 16:53 BP, revision 54346

Tagged 2.8.8 release from r54336 of WX_2_8_BRANCH.

2008-06-24 12:56 RR, revision 54344

Compilation

2008-06-24 12:48 RR, revision 54343

Next part of tree state icon patches

2008-06-24 06:48 PC, revision 54342

fix crash on exit, after hiding search tool then toggling tooltips

2008-06-23 22:49 VZ, revision 54339

wxLB_MULTIPLE is same as wxLB_EXTENDED in wxGTK2

2008-06-23 20:31 VS, revision 54338

added <xrc-file> tag to wxpresets

2008-06-23 17:43 PC, revision 54337

avoid setting a negative window size

2008-06-23 16:47 CE, revision 54336

add missing glgrab

2008-06-23 13:42 JS, revision 54333

Fixed mime type recognition under Gnome by reading appropriate .desktop files and application defaults

2008-06-23 13:38 JS, revision 54332

Don't fail to get correct extension if there's a dot somewhere else in the path.

2008-06-22 15:49 VZ, revision 54331

fix problem with label characters starting with -1 in ANSI build (#9572)

2008-06-22 15:06 VZ, revision 54330

fix handling of wxDP_SHOWCENTURY for some non-C locales (one of the problems of #4743)

2008-06-22 14:47 VZ, revision 54329

allow creating items without parent menus (#3425)

2008-06-22 14:40 VZ, revision 54328

allow wxDialog::ShowModal() after Show() (see #1416, #4658, #4664)

2008-06-22 14:39 RR, revision 54327

Minor patch for state icons patch

2008-06-21 23:05 VZ, revision 54325

review the header after the conversion and restore parts dropped by the script; document automatic icon style deduction (#2897)

2008-06-21 17:17 VZ, revision 54324

initialize wx{Client,Paint,Window}DC with fonts/colours of its window

2008-06-21 17:05 VZ, revision 54323

remove Create{Window,Client,Paint}DC() methods without window parameter -- they don't make sense as these DCs must always be associated with a window and are unusable if created without it

2008-06-21 16:59 VZ, revision 54322

don't allow editing listbox entries; better handling of scrollbar styles (#9084)

2008-06-21 16:51 VZ, revision 54321

assert if ShowModal() is called after a previous Show() (#1416)

2008-06-21 16:17 VZ, revision 54320

add wxShowEvent::IsShown() and wxIconizeEvent::IsIconized() instead of (now deprecated) GetShow() and Iconized() respectively (#978)

2008-06-21 16:13 VZ, revision 54319

compilation fix for PCH-less build

2008-06-21 16:10 VZ, revision 54318

disable report view mode under Mac as it hangs the native wxListCtrl implementation (continuation of #9484)

2008-06-21 16:02 MMK, revision 54317

Improved bmp reading, managed memory and included RTTI macros

2008-06-21 15:50 VZ, revision 54316

use the real clipping region and not just its bounding box in :DoDrawBitmap() (#9597)

2008-06-21 15:42 VZ, revision 54315

implement wxWinINetInputStream::GetSize() (#9600)

2008-06-21 15:32 VZ, revision 54314

added wxGenericStaticBitmap (#9608)

2008-06-21 15:03 RR, revision 54313

Use wxMenuBase:SendEvent() to emit event, shoudl also fix #801: Menu cmd events: Inconsistent GetEventObject()

2008-06-21 06:13 BP, revision 54312

Leftover changes for sample doc improvements in ticket #9582 (most of the patch was applied already in r54310).

2008-06-21 05:53 BP, revision 54311

Minor doc corrections for [q-r] in ticket #9581 (most of the patch was applied already in r54308).

2008-06-21 05:10 BP, revision 54310

Patch from Utensil Candel with large improvements to the samples documentation, and a PCH fix for the power sample.

2008-06-21 03:33 BP, revision 54309

Documentation corrections for /interface/log.h (#9583)

2008-06-21 02:38 BP, revision 54308

Finished initial review of [q-r] by Utensil Candel also making the enumeration lists more readable (one per line).

2008-06-20 16:57 PC, revision 54305

don't include private header in a sample

2008-06-20 14:41 VZ, revision 54304

don't pass negative height to wxWindow::SetSize(), this results in GTK+ warnings

2008-06-20 10:27 RR, revision 54302

Balance table

2008-06-20 10:19 JJ, revision 54301

OpenVMS setup update

2008-06-20 08:55 RR, revision 54300

minor formatting

2008-06-20 08:22 RR, revision 54299

Add missing SWAP macros for 64-bit signed int

2008-06-20 08:20 RR, revision 54298

Give spin button the same height as the associated text control

2008-06-20 08:17 RR, revision 54297

Don't let MSW's wxSpinCtrl emit spin up and down events as in the other ports

2008-06-20 07:58 RR, revision 54296

Formatting

2008-06-20 07:47 CE, revision 54295

2.8.8

2008-06-20 07:46 CE, revision 54294

2.8.8

2008-06-20 07:43 RR, revision 54293

Formatting

2008-06-19 19:02 RR, revision 54286

Missing and Moved Paragraphs in \interface\thread.h

2008-06-19 15:46 VZ, revision 54285

document GetValue() behaviour when called from an event handler processing change in the controls value

2008-06-19 08:47 MW, revision 54284

New dev.

2008-06-19 08:08 CE, revision 54283

fix for http://article.gmane.org/gmane.comp.lib.wxwidgets.devel/103292

2008-06-18 12:35 MMK, revision 54278

Fixed file structure

2008-06-18 11:24 SN, revision 54277

Cleaned up/Fixed wxGrid{Cell,RowOrCol}AttrData::SetAttr, adding some comments.

2008-06-18 11:21 SN, revision 54276

Cleaned up/Fixed wxGrid{Cell,RowOrCol}AttrData::SetAttr, adding some comments.

2008-06-17 17:28 VZ, revision 54273

declare future-deprecated SetStyle(int) in wxPen/Brush and not wxPen/BrushBase as it's useless there (compilation of user code doing pen.SetStyle(wxDOT) still fails)

2008-06-17 17:12 VZ, revision 54272

fix compilation of TestRegConfRead()

2008-06-17 14:39 MMK, revision 54271

Added navigation class

2008-06-16 23:09 VZ, revision 54269

don't recreate combobox with proportion of 1 (instead of initial 0) (#9594)

2008-06-16 17:50 RR, revision 54267

#9591: Item state (icons) for wxTreeCtrl on any platform

2008-06-16 13:32 RR, revision 54266

Ticket #9592: gtk-choice-setcolumns.2.diff

2008-06-16 08:45 VS, revision 54265

added a note about print preview inaccurancies and recommendation to use native preview when possible to the docs

2008-06-16 08:41 VS, revision 54264

Implemented high-quality preview for wxMSW (this approach doesn't work on other platforms). The preview is now accurate representation of printed page and wxHtmlEasyPrinting preview shows identical layout to what will be printed.

2008-06-16 08:10 VS, revision 54263

fixed SetUserScale() calls to use correct scale on Y axis

2008-06-16 08:08 VS, revision 54262

fixed SetUserScale() calls to use correct scale on Y axis

2008-06-16 07:43 VS, revision 54261

fixed printing preview to not report errors in infinite loop (bug introduced by r54133)

2008-06-16 05:13 SC, revision 54256

new path organisation for mac

2008-06-16 05:12 SC, revision 54255

new path organisation for mac

2008-06-15 23:38 VZ, revision 54252

overload Write() for char and unsigned char too, otherwise code writing them fails due to lack of exact match and absence of overloaded wxToString()

2008-06-15 22:20 RD, revision 54251

Fix off-by-1 error in GetTextRaw

2008-06-15 18:02 VZ, revision 54248

regenerate the makefiles with correct new test name (iostreams.cpp, iostream.cpp is already taken by strings test)

2008-06-15 17:34 VZ, revision 54246

added a unit test for input/output file streams and fixed the problem it exposed (#3335)

2008-06-15 17:26 SN, revision 54245

Fixed problems with reassigning the already assigned attribute, see #9567.

2008-06-15 17:24 SN, revision 54244

Fixed problems with reassigning the already assigned attribute, see #9567.

2008-06-15 16:42 SN, revision 54241

Fixed wxDoSetEnv (ticket # 9588).

2008-06-15 14:17 VZ, revision 54240

another 64 bit fix: make SendMsg() return wxIntPtr instead of long too

2008-06-15 14:16 VZ, revision 54239

correct wxIntPtr definition

2008-06-15 14:11 SN, revision 54238

Added missing screen update on deselection in wxGrid (ticket #4212, part1).

2008-06-15 14:10 SN, revision 54237

Added missing screen update on deselection in wxGrid (ticket #4212, part1).

2008-06-15 13:56 VZ, revision 54236

fixed STC under Win64: as wxStyledTextCtrl::SendMsg() used (32 bit) long arguments, passing (64 bit) pointers to it almost certainly didn't work

2008-06-15 13:50 MW, revision 54235

Add utils and tests to OS/2 builds, #9587 from Dave Parsons.

2008-06-15 13:15 VS, revision 54234

revert part of r54233 that was included by accident

2008-06-15 13:14 VS, revision 54233

if gdiplus.dll cannot be loaded, return NULL from wxGraphicsContext::Create() instead of silently pretending to render the output, but do nothing

2008-06-15 12:42 SN, revision 54232

Applied ticket #1230 (patch to SetColFormatCustom), setting both editor and renderer when selecting a specific format instead of just the renderer.

2008-06-15 12:08 VZ, revision 54231

fix off by 1 error in GetTextRaw() (#4317)

2008-06-15 11:45 VZ, revision 54230

fix crash when copying empty selection to clipboard (#4783)

2008-06-15 11:31 VZ, revision 54229

ignore mouse wheel events which are coming too fast to be processed (#9057)

2008-06-15 11:22 VZ, revision 54228

fix crash in wxSetEnv(var, NULL) (#9585)

2008-06-15 01:18 VZ, revision 54227

fix overview links and various Doxygen errors (#9580)

2008-06-15 01:16 VZ, revision 54226

derive wxSTC from wxTextEntryBase to provide even more wxTextCtrl-like methods (see #9114)

2008-06-15 00:59 VZ, revision 54225

derive wxSTC from wxTextAreaBase to provide wxTextCtrl-like methods (see #9114)

2008-06-14 23:29 VZ, revision 54224

rebuild files generated by src/stc/gen_iface.py automatically in Unix builds

2008-06-14 18:33 VZ, revision 54219

state clearly that the entire contents of generated files is generated; put special {{{ and }}} markers around the generated sections (these are special and extra-convenient for ViM but can probably be used to at least go to the end/beginning/other extremeity of the generated block from any other decent editor)

2008-06-14 18:32 VZ, revision 54218

explicitly check that we're being run from the correct directory

2008-06-14 18:09 VZ, revision 54217

remove extra ')' in EVT_STC_CALLTIP_CLICK

2008-06-14 15:59 VZ, revision 54216

translate Scintilla getters to const methods of wxStyledTextCtrl

2008-06-14 14:35 VZ, revision 54215

fix ANSI mode build

2008-06-14 14:27 VZ, revision 54214

compilation fix (casts for mb_str() used as argument to printf() and a few others) (#9571)

2008-06-14 14:25 VZ, revision 54213

fix various Doxygen errors (#9568)

2008-06-14 14:07 VZ, revision 54212

fix various Doxygen errors (#9573)

2008-06-14 14:06 VZ, revision 54211

change shortcut for "Sort" to Ctrl-T to avoid conflict with another item using Ctrl-S (#9574)

2008-06-14 14:04 VZ, revision 54210

fix various Doxygen errors (#9578)

2008-06-14 02:53 VZ, revision 54208

standard location of env is in /usr/bin, not /bin

2008-06-14 02:51 VZ, revision 54207

make the script executable

2008-06-14 02:21 VZ, revision 54204

don't interfere with Scintilla drag-and-drop (#9088)

2008-06-14 01:53 VZ, revision 54203

don't compile in wx hash code unless we really use it (#9532:12)

2008-06-14 01:44 VZ, revision 54202

recreate the window if FSAA is requested (changeset_r54022_Fix.patch from #9145)

2008-06-13 22:38 VZ, revision 54201

don't clear the list control when wxLC_[HV]RULES style is toggled (#4688)

2008-06-13 22:19 VZ, revision 54200

search for X11 headers in paths under /usr/local before those under /usr (#9477)

2008-06-13 21:37 VZ, revision 54199

fix reference counting problems with wxGridCellWithAttr (re-#9567)

2008-06-13 19:23 RR, revision 54198

Ticket #1032 wxVariant::operator==(wxVariant& variant) has bad bug

2008-06-13 12:53 JS, revision 54187

Small improvement in HTML help options dialog.

2008-06-13 12:52 JS, revision 54186

Small improvement in HTML help options dialog.

2008-06-13 11:56 JS, revision 54185

Skip base command line parsing, which fails when passing a book file

2008-06-13 08:29 MMK, revision 54184

Implemented basic manual motion

2008-06-13 07:10 JS, revision 54183

Use new API

2008-06-13 04:20 SC, revision 54182

fixing file paths after renaming

2008-06-13 04:17 SC, revision 54181

mac paths updated

2008-06-13 00:09 VZ, revision 54179

use HandleWindowEvent() in Close() as it can be called from a GTK+ callback (#9565)

2008-06-13 00:05 VZ, revision 54178

use @deprecated doxygen tag, a few other minor corrections (#9564)

2008-06-13 00:01 VZ, revision 54177

correct bad references and use of @begincode instead of @code (#9566)

2008-06-12 23:58 VZ, revision 54176

fix crash which happened if you called SetAttr(NULL) followed by SetAttr(attr) (#9567)

2008-06-12 23:49 VZ, revision 54175

optimize wxGrid::BlockToDeviceRect() to avoid iterating over all cells, it's enough to only iterate over the visible ones (#9527)

2008-06-12 23:28 VZ, revision 54174

exclude pieces of wx hash map implementation which were wrongly included when std::unordered_map was used in STL build

2008-06-12 20:25 JS, revision 54173

Correction for menu code problem introduced in 2.8.5

2008-06-12 20:14 SC, revision 54172

mac paths updated

2008-06-12 18:51 VZ, revision 54171

don't test for hash_{map,set} classes if we have unordered_map

2008-06-12 18:51 VZ, revision 54170

get rid of several dozen of warnings when using g++ >= 4.2 about string literals to char* conversion

2008-06-12 18:43 VZ, revision 54169

use std[::tr1]::unordered_map if available in wxUSE_STL build (#9532)

2008-06-12 18:15 SC, revision 54168

mac paths updated

2008-06-12 18:12 VZ, revision 54167

fix some wrong declarations which upset mingw32

2008-06-12 18:08 SC, revision 54166

fixing file paths after renaming

2008-06-12 18:07 SC, revision 54165

fixing file paths after renaming

2008-06-12 18:07 SC, revision 54164

fixing file paths after renaming

2008-06-12 18:07 SC, revision 54163

fixing file paths after renaming

2008-06-12 18:06 SC, revision 54162

fixing file paths after renaming

2008-06-12 18:05 SC, revision 54161

fixing file paths after renaming

2008-06-12 18:05 SC, revision 54160

fixing file paths after renaming

2008-06-12 18:04 SC, revision 54159

fixing file paths after renaming

2008-06-12 18:04 SC, revision 54158

fixing file paths after renaming

2008-06-12 18:04 SC, revision 54157

fixing file paths after renaming

2008-06-12 18:03 SC, revision 54156

fixing file paths after renaming

2008-06-12 18:03 SC, revision 54155

fixing file paths after renaming

2008-06-12 18:03 SC, revision 54154

fixing file paths after renaming

2008-06-12 18:02 SC, revision 54153

fixing file paths after renaming

2008-06-12 18:02 SC, revision 54152

fixing file paths after renaming

2008-06-12 18:01 SC, revision 54151

fixing file paths after renaming

2008-06-12 18:01 SC, revision 54150

fixing file paths after renaming

2008-06-12 17:59 SC, revision 54149

fixing file paths after renaming

2008-06-12 17:59 SC, revision 54148

fixing file paths after renaming

2008-06-12 17:59 SC, revision 54147

fixing file paths after renaming

2008-06-12 17:57 SC, revision 54146

fixing file paths after renaming

2008-06-12 17:56 SC, revision 54145

fixing file paths after renaming

2008-06-12 17:56 SC, revision 54144

fixing file paths after renaming

2008-06-12 17:54 SC, revision 54143

fixing file paths after renaming

2008-06-12 12:42 SC, revision 54142

fixing file paths after renaming

2008-06-12 12:16 RR, revision 54141

#4479: wx.ComboBox needs a SetFont method

2008-06-12 09:42 JJ, revision 54140

Update openVMS setup-file

2008-06-12 06:45 SC, revision 54139

fixing file paths after renaming

2008-06-12 00:50 VZ, revision 54138

propagate style changes correctly to buttons with images (#3939)

2008-06-11 21:14 SC, revision 54135

fixing non precomp include

2008-06-11 20:58 SC, revision 54134

fixing file paths after renaming

2008-06-11 20:56 VS, revision 54133

render pages in print preview at idle time, not from OnPaint, to make the UI appear more responsive when preview takes long time to create

2008-06-11 20:49 SC, revision 54132

fixing file paths after renaming

2008-06-11 20:46 SC, revision 54131

fixing file paths after renaming

2008-06-11 19:58 SC, revision 54130

fixing file paths after renaming

2008-06-11 19:30 SC, revision 54129

fixing file paths after renaming

2008-06-11 19:24 SC, revision 54128

fixing file paths after renaming

2008-06-11 19:23 SC, revision 54127

fixing file paths after renaming

2008-06-11 19:22 SC, revision 54126

fixing file paths after renaming

2008-06-11 19:17 SC, revision 54125

fixing file paths after renaming

2008-06-11 19:14 SC, revision 54124

fixing file paths after renaming

2008-06-11 17:07 PC, revision 54123

simplify menu item callbacks by passing in wxMenuItem instead of wxMenu

2008-06-11 16:53 SC, revision 54122

renaming mac to osx and subdirs

2008-06-11 16:50 SC, revision 54121

renaming mac to osx and subdirs

2008-06-11 16:46 SC, revision 54120
  • D /wxWidgets/trunk/src/mac

renaming

2008-06-11 16:46 SC, revision 54119

renaming

2008-06-11 16:44 SC, revision 54118
  • D /wxWidgets/trunk/include/wx/mac

renaming

2008-06-11 16:30 SC, revision 54117

renaming

2008-06-11 16:27 SC, revision 54116
  • D /wxWidgets/trunk/src/mac/corefoundation

renaming

2008-06-11 16:26 SC, revision 54115
  • A /wxWidgets/trunk/src/mac/core
  • R /wxWidgets/trunk/src/mac/core/cfstring.cpp
  • R /wxWidgets/trunk/src/mac/core/stdpaths_cf.cpp
  • R /wxWidgets/trunk/src/mac/core/utilsexc_base.cpp

renaming

2008-06-11 16:26 SC, revision 54114

iphone additions

2008-06-11 16:25 SC, revision 54113

iphone additions

2008-06-11 16:23 SC, revision 54112

pure CF code

2008-06-11 16:13 SC, revision 54111
  • D /wxWidgets/trunk/include/wx/mac/corefoundation

rename round

2008-06-11 16:12 SC, revision 54110
  • D /wxWidgets/trunk/include/wx/mac/corefoundation/private

rename round

2008-06-11 16:09 SC, revision 54109
  • D /wxWidgets/trunk/include/wx/mac/corefoundation/cfdataref.h
  • D /wxWidgets/trunk/include/wx/mac/corefoundation/cfref.h
  • D /wxWidgets/trunk/include/wx/mac/corefoundation/cfstring.h
  • D /wxWidgets/trunk/include/wx/mac/corefoundation/hid.h
  • D /wxWidgets/trunk/include/wx/mac/corefoundation/joystick.h
  • D /wxWidgets/trunk/include/wx/mac/corefoundation/private.h
  • D /wxWidgets/trunk/include/wx/mac/corefoundation/stdpaths.h

rename round

2008-06-11 16:09 SC, revision 54108
  • D /wxWidgets/trunk/include/wx/mac/corefoundation/private/strconv_cf.h

rename round

2008-06-11 16:08 SC, revision 54107

rename round

2008-06-11 16:06 SC, revision 54106

committing changes before renaming

2008-06-11 16:05 SC, revision 54105

common private decls

2008-06-11 16:05 SC, revision 54104

common private decls

2008-06-11 16:00 SC, revision 54103

rearranging sources according to environment

2008-06-11 15:54 SC, revision 54102

removing double includes

2008-06-11 15:53 SC, revision 54101

switching to OSX naming

2008-06-11 14:22 VZ, revision 54100

use more general pointer-to-member representation for wxEvtHandler methods to make it possible to use as event handlers methods of classes multiply inheriting from it and some other class (#9556)

2008-06-11 13:45 MMK, revision 54099

Adjusted item sizes to use correct aspect ratio

2008-06-11 11:47 VZ, revision 54098

fix for crash under wxX11: we get text event there when m_popup is still NULL

2008-06-11 11:45 VZ, revision 54097

use native calendar control in wxDatePickerCtrl if available (#9548)

2008-06-11 11:41 VZ, revision 54096

use wxDC::SetDeviceClippingRegion() instead of deprecated SetClippingRegion()

2008-06-11 08:32 SC, revision 54095

removing outdated files for mac

2008-06-11 07:43 RR, revision 54094

#9559 DataViewCtrl wrong behaviour with reordering not reorderable columns

2008-06-11 06:56 SC, revision 54093

removing outdated files for mac

2008-06-11 05:23 PC, revision 54092

move 8 copies of the same function to common code

2008-06-11 05:07 KO, revision 54091

Stub implementation for GTK to get the build compiling there.

2008-06-11 05:01 SC, revision 54090

removing outdated files for mac

2008-06-11 04:14 SC, revision 54089

forward port of fix

2008-06-11 04:13 SC, revision 54088

removing old files

2008-06-11 00:28 VZ, revision 54086

remember the last type used for loading or saving the image and return it from GetType() (#9551)

2008-06-11 00:03 VZ, revision 54085

fix some parameters docs and other minor changes (#9557)

2008-06-10 22:35 MMK, revision 54084
  • D /wxWidgets/branches/SOC2008_WXWALLCTRL/wxWallCtrlProject.suo

Removed .suo file

2008-06-10 22:34 MMK, revision 54083

Modifying files structure

2008-06-10 20:02 MMK, revision 54081

2008-06-10 19:18 MMK, revision 54080

2008-06-10 19:00 SC, revision 54079

removing outdated files on mac

2008-06-10 18:59 SC, revision 54078
  • D /wxWidgets/trunk/src/mac/carbon/aga.cpp
  • D /wxWidgets/trunk/src/mac/carbon/gsocket.cpp
  • D /wxWidgets/trunk/src/mac/carbon/mpthread.cpp

removing outdated files on mac

2008-06-10 18:57 MMK, revision 54077

2008-06-10 18:56 SC, revision 54076
  • D /wxWidgets/trunk/include/wx/mac/carbon/aga.h
  • D /wxWidgets/trunk/include/wx/mac/carbon/gsockmac.h
  • D /wxWidgets/trunk/include/wx/mac/carbon/macsock.h

removing outdated files on mac

2008-06-10 18:54 SC, revision 54075
  • D /wxWidgets/trunk/include/wx/mac/aga.h
  • D /wxWidgets/trunk/include/wx/mac/gsockmac.h
  • D /wxWidgets/trunk/include/wx/mac/macsock.h

removing outdated files on mac

2008-06-10 18:47 SC, revision 54074
  • D /wxWidgets/trunk/include/wx/mac/macnotfy.h

removing outdated files on mac

2008-06-10 18:47 SC, revision 54073
  • D /wxWidgets/trunk/include/wx/mac/carbon/macnotfy.h

removing outdated files on mac

2008-06-10 18:40 SC, revision 54072

removing outdated files on mac, adding new files

2008-06-10 18:22 VZ, revision 54071

use locale-dependent decimal separator in our wxStrtod() implementation (recloses #8740)

2008-06-10 17:44 SC, revision 54070
  • D /wxWidgets/trunk/src/wxWindows.xcode

removing outdated files on mac

2008-06-10 17:42 SC, revision 54069
  • D /wxWidgets/trunk/src/mac/carbon/data.cpp
  • D /wxWidgets/trunk/src/mac/carbon/dc.cpp
  • D /wxWidgets/trunk/src/mac/carbon/dccg.cpp
  • D /wxWidgets/trunk/src/mac/carbon/macnotfy.cpp
  • D /wxWidgets/trunk/src/mac/carbon/utilsexc.cpp

removing outdated files on mac

2008-06-10 17:41 SC, revision 54068

removing outdated files on mac

2008-06-10 11:41 MMK, revision 54067

2008-06-10 03:54 PC, revision 54065

wxMenuItem code cleanup, removing duplicate and unneccessary code

2008-06-10 03:54 PC, revision 54064

fix botched copy-n-paste from r40978

2008-06-09 22:50 VZ, revision 54060

correct some compatibility problems with the existing Unicode-mode code (#9513), more remains to be done (#9560)

2008-06-09 15:52 VZ, revision 54056

don't use deprecate SetClippingRegion(wxRegion)

2008-06-09 09:51 SC, revision 54055

RGBColor on QD only

2008-06-09 09:50 SC, revision 54054

setup font defines for iphone correctly

2008-06-09 09:49 RR, revision 54053

blind fix for: #9549: crash in wxDataViewMainWindow::GetEndOfLastCol() after column reordering

2008-06-09 09:38 SC, revision 54052

adding correct include explicitely

2008-06-09 09:37 SC, revision 54051

clipping to empty if not visible

2008-06-09 09:36 SC, revision 54050

only available on carbon or cocoa

2008-06-09 07:44 SC, revision 54049

use 10.3 backwards compatible names for constants

2008-06-08 17:18 KO, revision 54032

svn merge -r 53824:54030 http://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH

2008-06-08 16:56 SC, revision 54031

removing unneeded code for osx

2008-06-08 15:54 SC, revision 54030

10.3 support

2008-06-08 15:53 SC, revision 54029

changing to c name mangling, so that glgrab.c can use it

2008-06-08 01:58 VZ, revision 54025

make list whose items are referred to by their numbers in the text really numbered; fix a few typos (#9550)

2008-06-08 01:45 VZ, revision 54024

deprecate wxDC::SetClippingRegion(wxRegion) overload and replace it with SetDeviceClippingRegion() to avoid confusion due to use of different kind of coordinates in this and other overloads of the same function; also rename wxDCImpl::DoSetClippingRegionAsRegion() to DoSetDeviceClippingRegion(); finally use bounding box of the region passed to wxDCClipper ctor to avoid interpreting coordinates differently for different ctors of the same class (see #8970)

2008-06-08 00:12 VZ, revision 54022

added multisampling (anti-aliasing) support to wxGLCanvas (#9145)

2008-06-07 16:54 VZ, revision 54021

set a global flag on shut down instead calling Delete() on all threads sequentially which could take an eternity if there were many of them

2008-06-07 16:39 VZ, revision 54020

do what we advise, not what we say is unsupported: don't log directly from worker threads to wxTextCtrl but do it from the idle handler of the main thread

2008-06-07 16:20 VZ, revision 54019

make wxLogWindow thread-safe (#8783)

2008-06-07 15:24 VZ, revision 54018

present information about key presses better; some code simplification (#9541)

2008-06-07 15:12 VZ, revision 54017

use memcpy() instead of wxTmemcpy() as the latter is defined in wx/wxcrt.h which includes wx/string.h and hence can't be used from here

2008-06-07 15:06 VZ, revision 54016

more compilation fixes for VC6 (#9492)

2008-06-07 14:26 SN, revision 54015

Compilation fix for GTK1.

2008-06-07 14:07 SN, revision 54014

Use spaces in configuration names, so they need less space in the table.

2008-06-07 09:26 SN, revision 54013

Updated information about bug tracker.

2008-06-07 02:32 VZ, revision 54012

compilation fix for PCH-less compilation after the last change

2008-06-07 02:30 VZ, revision 54011

don't show the normal context menu while editing an item (#9543)

2008-06-07 02:09 VZ, revision 54010

don't refresh the current cell in SetCellHighlightROPenWidth() if it's invalid (#9523)

2008-06-07 02:04 VZ, revision 54009

ensure that dialog gripper is always positioned below the other children, even if they're created after it (#9519)

2008-06-07 01:54 VZ, revision 54008

support multiline labels in wxCheckBox (#9495)

2008-06-07 01:24 VZ, revision 54007

correct phrase broken by the last change

2008-06-07 01:22 VZ, revision 54006

call wxSizerFlags::Top/Bottom() or Left/Right() shouldn't change horizontal or vertical alignment (#9534)

2008-06-07 00:53 VZ, revision 54005

change another long type to wxBitmapType

2008-06-07 00:04 VZ, revision 54004

specify the name of the control (#9515)

2008-06-07 00:01 VZ, revision 54003

replace another SF link with wxTrac one (#9501)

2008-06-06 23:58 VZ, revision 54002

replace SF links with wxTrac ones (#9500)

2008-06-06 23:50 VZ, revision 54001

use report mode for the wxListbook list control if there are no images (#9484)

2008-06-06 23:40 VZ, revision 54000

fixed another pointer-to-int-of-lesser-size conversion warning

2008-06-06 23:33 VZ, revision 53999

change longs used for bitmap types to wxBitmapType (#9126)

2008-06-06 22:55 VZ, revision 53998

don't leave current item index invalid after SetItemCount() (ticket #3720)

2008-06-06 21:24 VZ, revision 53997

remove another unnecessary memcpy() of string contents to wxStringBufferLength

2008-06-06 21:20 VZ, revision 53996

remove unnecessary memcpy() of string contents to wxStringBufferLength

2008-06-06 21:19 VZ, revision 53995

initialize wxStringBuffer with the original contents of wxString it was created from for better compatibility with the old, non-STL, build (this avoids problems such as ticket #4845); add wxString::tchar_buf() to help with the implementation

2008-06-06 21:06 VZ, revision 53994

compilation fix for VC6 (and maybe not only): enums defined in containing class are not accessible from the nested classes

2008-06-06 20:56 VZ, revision 53993

compilation fixes for ANSI build

2008-06-06 20:55 VZ, revision 53992

removed the test which never works: Lower/Upper() don't work with Unicode strings currently

2008-06-06 15:21 JS, revision 53991

Fixed reading of image type

2008-06-06 15:21 JS, revision 53990

Fixed reading of image type

2008-06-05 23:51 VZ, revision 53988

corrected bug in wxTimeSpan::IsShorterThan() for equal time spans (ticket #9539)

2008-06-05 15:48 VZ, revision 53987

set focus to the control when it's clicked [backport of r53014 from trunk]

2008-06-05 15:05 VS, revision 53986

PCH-less compilation fix

2008-06-05 13:47 VZ, revision 53985

compilation fix for --disable-filesystem --enable-xrc build (wxArrayString is needed here and was only included indirectly via wx/filesys.h) (ticket #9537)

2008-06-05 09:38 VS, revision 53984

added wxHtmlWindow::SetRelatedStatusBar(wxStatusBar*) (patch #9235 by troelsk)

2008-06-04 22:34 VS, revision 53980

Changed wxHTML default font size for printing to be 12pt regardless of the platform; this font shouldn't depend on toolkit's default GUI font (introduced in 2.8, now reverting to pre-2.8 correct behaviour).

2008-06-04 21:50 VS, revision 53979

wxDFB: implemented Raise() and Lower() for TLWs

2008-06-04 18:46 VZ, revision 53978

compilation fix for wxUSE_STL==1

2008-06-04 14:19 VS, revision 53977

glcmn.cpp doesn't belong in OPENGL_SRC_PLATFORM (it is incorrect syntax that was previously silently ignored)

2008-06-04 10:53 SN, revision 53976

More compilation fixes for mingw-w64.

2008-06-04 10:52 SN, revision 53975

More compilation fixes for mingw-w64.

2008-06-04 09:07 SC, revision 53974

when no prefix used, #if cannot work

2008-06-04 07:16 SC, revision 53973

guarding with wxMAC_USE_CORE_GRAPHICS

2008-06-04 07:12 SC, revision 53972

adding glgrab to project

2008-06-04 06:14 JS, revision 53971

Out by one correction

2008-06-04 06:14 JS, revision 53970

Out by one correction

2008-06-04 04:35 SC, revision 53969

to make sure the CG code never gets called when not in a CG-Build, as this method is only needed for dcgraph's blitting, no loss anyway

2008-06-03 19:49 RR, revision 53966

Remove old GTK 1.2 code

2008-06-03 16:52 BIW, revision 53965

prevent memory leak

2008-06-03 16:51 BIW, revision 53964

prevent memory leak

2008-06-03 16:14 VZ, revision 53963

removed deleted wx/gtk/treectrl.h from bakefiles as well

2008-06-03 12:45 VZ, revision 53962

fix crash when repositioning tools without labels in DoDeleteTool() (ticket #9530)

2008-06-03 12:42 VZ, revision 53961

fix unused parameter warning (ticket #9529)

2008-06-03 10:18 JS, revision 53960

Blind fix for !CG

2008-06-02 21:46 RR, revision 53958

Separate label with wx mnemonics (&) and with gtk mnemonics (_) into m_text and m_gtkText, fixes #4409

2008-06-02 20:45 VZ, revision 53956

suppress warning about casting int to a pointer of greater size

2008-06-02 20:45 RR, revision 53955

Make wxMenuItem::GetLabelText readable again

2008-06-02 20:42 VZ, revision 53954

define wxHAS_ATOMIC_OPS only if native implementation is available; use fewer loop iterations in the test if it isn't as otherwise the test takes way too long to run

2008-06-02 18:30 RD, revision 53930

Add a SetDoubleBuffered method for wxMSW (XP+)

2008-06-02 18:27 RD, revision 53929

Add a SetDoubleBuffered method for wxMSW (XP+)

2008-06-02 18:22 RD, revision 53928

Fallback to old API if there was an error getting the printer resolution

2008-06-02 18:07 RR, revision 53927

Disable disabling wxWeakRef<T>

2008-06-02 16:41 VZ, revision 53926

regenerated after recent autoconf_inc.m4 change

2008-06-02 14:48 VS, revision 53925

regenerated all trunk makefiles with bakefile-0.2.3

2008-06-02 10:59 VS, revision 53924

regenerated all 2.8 makefiles with bakefile-0.2.3

2008-06-02 10:39 VS, revision 53923

fixed OSX bundles bkl code to handle conditional targets correctly

2008-06-02 10:38 VS, revision 53922

fixed OSX bundles bkl code to handle conditional targets correctly

2008-06-02 09:58 RR, revision 53921

Only test new renderer methods on GTK+2, MSW and MAC.

2008-06-02 08:04 VZ, revision 53920

added a note about wxrc to Xcode section

2008-06-01 22:39 VZ, revision 53919

remove mentions of contrib

2008-06-01 22:34 VZ, revision 53918

fix the test for vsscanf() declaration which never passed because it was trying to use char* instead of va_list

2008-06-01 20:32 VZ, revision 53917

correct DateTimeTestCase::TestTimeTicks() [backport of r53902 from trunk]

2008-06-01 20:19 VZ, revision 53916

use wxHAS_RAW_BITMAP instead of wxHAVE_RAW_BITMAP

2008-06-01 20:18 PC, revision 53915

fix removing control tool (partial backport of r52840 and r53913), ticket #4102

2008-06-01 20:17 VZ, revision 53914

correct error in wxHAVE_RAW_BITMAP definition: it shouldn't be defined at all if there is no raw bitmap support

2008-06-01 20:02 PC, revision 53913

fix tool referencing, remove dropdown element in DoDeleteTool, ticket #4102

2008-06-01 20:00 CE, revision 53912

force dos line endings

2008-06-01 19:58 CE, revision 53911

force dos line endings

2008-06-01 19:16 VZ, revision 53910

define TEST_NET as 0 instead of leaving it undefined

2008-06-01 18:52 VZ, revision 53909

use IMPLEMENT_APP_CONSOLE and not IMPLEMENT_APP for console apps

2008-06-01 18:49 VZ, revision 53908

disable tests which fail in build bot builds on test drive machines, as nobody is going to fix them anyhow it's better to at least be able to notice any new breakage

2008-06-01 18:42 VZ, revision 53907

define wxHAS_RAW_BITMAP (instead of inconsistenly named wxHAVE_RAW_BITMAP) and use it to avoid test build error under ports not supporting raw bitmaps

2008-06-01 18:33 VZ, revision 53906

don't run GUI tests under Unix if the DISPLAY is not set

2008-06-01 16:59 VZ, revision 53905

ReadBig() should be defined in ANSI build too

2008-06-01 16:58 VZ, revision 53904

include wx/crt.h to get wxUSE_WXVSNPRINTF

2008-06-01 16:56 VZ, revision 53903

compilation fix for wxX11

2008-06-01 15:44 VZ, revision 53902

really fix the test to work in any time zone and with or without DST

2008-06-01 15:32 VZ, revision 53901

added missing wx/wrapsizer.h include

2008-06-01 14:37 VZ, revision 53900

fix wxDateTime::ParseRfc822Date() to handle missing seconds (ticket #1341)

2008-06-01 14:13 VZ, revision 53899

another compilation fix, now for Unicode build

2008-06-01 13:24 SN, revision 53898

Added mingw-w64 builds (cross compile on i686-linux).

2008-06-01 13:15 VZ, revision 53897

test for fifth getsockopt() argument type using C++ compiler, not C one (blind fix for HP-UX buildbot failure)

2008-06-01 13:07 VZ, revision 53896

fix compilation with wxUSE_DRAG_AND_DROP==0 (as in wxX11 build)

2008-06-01 13:04 VZ, revision 53895

compilation fix for ANSI build

2008-06-01 13:01 VZ, revision 53894

add a special macro for comparing time_t values to fix unit test compilation on platforms with 64 bit time_t (such as FreeBSD 6.2 apparently)

2008-06-01 12:58 VZ, revision 53893

fix time zone conversion test to work in any time zone, not just GMT+1

2008-06-01 03:11 VZ, revision 53891

corrected bug in wxMBConvStrictUTF8::FromWChar(): it wrote one extra NUL when used with explicit source length

2008-06-01 03:09 VZ, revision 53890

added wxTextOutputStream::Flush(): this is necessary with the stateful encodings, such as UTF-7

2008-06-01 03:08 VZ, revision 53889

rewrote UTF-7 to work on streams of data to be comaptible with the way wxTextStream uses the converters; also converted a couple off by 1 bugs and unit test finally pass now

2008-05-31 23:41 VZ, revision 53886

disable visibility for powerpc-apple-darwin8 build, otherwise we get errors when linking the test

2008-05-31 23:08 VZ, revision 53885

use CPPUNIT_ASSERT_EQUAL instead of CPPUNIT_ASSERT to have more details when the test fails

2008-05-31 23:01 VZ, revision 53884

reviewed and completed wxMBConv and friends documentation

2008-05-31 22:35 VZ, revision 53883

create a separate category for the conversion classes

2008-05-31 17:30 SC, revision 53881

supporting Freeze and Thaw in native control, has huge implications on performance of lists with many thousands of elements

2008-05-31 13:31 VZ, revision 53880

include configure/makefiles necessary for building libtiff

2008-05-31 13:25 VZ, revision 53879

no real changes, just simplify LoadPage() to make it more readable and less redundant

2008-05-31 12:44 SN, revision 53878

Compilation fixes for mingw-w64.

2008-05-31 12:43 SN, revision 53877

Compilation fixes for mingw-w64.

2008-05-31 09:44 VS, revision 53876

allow periods in wxFileSystem URL anchors (patch #2265)

2008-05-31 05:44 RD, revision 53875

Don't use both -framework OpenGL and -lGL

2008-05-31 02:46 VZ, revision 53874

make test failure in TestStreamDecoder more informative

2008-05-31 01:57 VZ, revision 53873

use more informative CPPUNIT_ASSERT_EQUAL instead of CPPUNIT_ASSERT

2008-05-31 01:55 VZ, revision 53872

don't write extraneous NUL bytes in wxMBConv_iconv::FromWChar()

2008-05-31 01:54 VZ, revision 53871

correct similar off by 1 bug to the one fixed by r53869 in wxMBConv_iconv::ToWChar() in FromWChar()

2008-05-31 01:53 VZ, revision 53870

fix bug with wrong return value in wxMBConv_iconv::ToWChar() introduced by a recent check in

2008-05-31 01:39 VZ, revision 53869

fix wxMBConv_iconv to respect the base class conventions: when the input is NUL-terminated, the output should be NUL-terminated and the return value should account for the terminating NUL

2008-05-31 01:23 VZ, revision 53868

swap all characters instead of just the last one in a loop in wxMBConv_iconv::ToWChar()

2008-05-31 01:22 VZ, revision 53867

don't return success when converting incomplete UTF-7 sequences

2008-05-30 23:38 VZ, revision 53866

disable test using network by default as it's not available on some of buildbot machines and so makes the test fail

2008-05-30 23:38 VZ, revision 53865

fix test failures: the expected results were incorrect, UTF-8 build uses %lc for characters and not %s

2008-05-30 23:12 VZ, revision 53864

undid change of r44565: not taking hyphens into account entirely is a bad idea as we then recognize some junk as valid encodings and it even made our own unit test fail

2008-05-30 22:57 VZ, revision 53860

make assertion failure messages more useful by using WX_ASSERT_STR_EQUAL instead of just CPPUNIT_ASSERT

2008-05-30 22:49 VZ, revision 53858

implement wxMBConv_iconv::To/FromWChar() instead of MB2WC/WC2MB: this allows to use wxMBConv conversions with wxTextInputStream and fixes TextStreamTestCase unit test failures

2008-05-30 22:11 VZ, revision 53857

don't run vsnprintf() test if we're using the system version, there is nothing we can do about its failures then anyhow

2008-05-30 21:59 VZ, revision 53856

don't compile the test in the build configurations where it's not supported (trying to fix buildbot OS X build)

2008-05-30 20:04 VZ, revision 53855

at least mingw32 3.4.5 needs wxBitmap declaration to compile wxPixelData<wxBitmap> (thanks buildbot)

2008-05-30 19:49 VZ, revision 53853

check that the argument is not empty in wxHtmlWindow::LoadPage() to avoid crashing if it is

2008-05-30 19:30 VZ, revision 53852

fixed wxImagePixelData compilation (ticket #3003); added a unit test for it (to be extended to cover more wxImage methods...)

2008-05-30 18:59 VZ, revision 53851

blind fix for Borland ANSI build: define wxStructStat specially for this compiler

2008-05-30 17:51 JS, revision 53850

Typo correction

2008-05-30 17:50 JS, revision 53849

Typo correction

2008-05-30 17:44 JS, revision 53848

Don't update UI if hidden

2008-05-30 17:44 JS, revision 53847

Don't update UI if hidden

2008-05-30 17:14 SC, revision 53846

remove duplicate line

2008-05-30 16:47 SC, revision 53845

fixing a problem where CoreGraphics didn't correctly clip to an empty region

2008-05-30 16:42 SC, revision 53844

make sure invisible windows cannot paint using a wxClientDC or wxWindowDC by making their clip rect empty

2008-05-30 13:49 VZ, revision 53843

mention the problem with writing enums to wxConfig (see #8656)

2008-05-30 13:35 VZ, revision 53842

always define wxUSE_RICHEDIT[2] -- this is better than never defining them (closes #9514)

2008-05-30 13:31 VZ, revision 53841

mention the ambiguities which arise when passing wxString[.c_str()] to functions overloaded to take both char* and wchar_t* (see #9507)

2008-05-30 10:47 VS, revision 53840

re-added accidentally omitted 'ANSI'

2008-05-30 10:33 VS, revision 53839

fixed confusingly complicated sentence to make sense

2008-05-30 01:07 VZ, revision 53833

document that SetItemCount() doesn't have to refresh the control (to avoid problems of ticket #4570)

2008-05-30 01:05 VZ, revision 53832

use 'i' and 'd' instead of WXK_DELETE/INSERT as wxMSW list control doesn't get the latter keys in its OnListKeyDown()

2008-05-30 00:26 VZ, revision 53831

ensure that GetEditControl() returns something even if label editing was started by the user and not the program (closes #1325)

2008-05-30 00:03 VZ, revision 53830

no changes, just refactor the code to avoid having the same code for m_textCtrl destruction in 4 places

2008-05-29 23:47 RR, revision 53829

Don't fail compilation with GTK+ 2.2 in 2.8 branch

2008-05-29 23:36 VZ, revision 53828

remove misleading documentation of minPage in GetPageInfo() (see ticket #9502)

2008-05-29 23:13 RR, revision 53827

More work on getting wxLisBox events right

2008-05-29 18:28 KO, revision 53824

svn merge -r 53533:53823 http://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH

2008-05-29 17:05 KO, revision 53823

Rebaked files after last commit.

2008-05-29 17:04 KO, revision 53822

Implementing wxScreenDC::GetAsBitmap on Mac.

2008-05-29 16:58 VZ, revision 53821

include wx/crt.h needed for wxFprintf() (closes #9509)

2008-05-29 14:13 SC, revision 53820

adding lowlevel hook to listbox

2008-05-29 14:11 SC, revision 53819

adding lowlevel hook to listbox

2008-05-29 14:10 RR, revision 53818

Create own entry for default constructors

2008-05-29 13:35 VZ, revision 53817

don't give an error if VT_DATE variant is being released, there is nothing to do for it anyhow (closes #4527)

2008-05-29 13:28 VZ, revision 53816

take wxString in wxCrashReport::SetFileName() to allow passing either ASCII or wide strings as well as wxStrings to this method (closes 9505)

2008-05-29 09:54 SC, revision 53815

guarding against crashes because of out-of-bounds accesses in release mode (returning 0), better error reporting in debug builds

2008-05-29 09:53 SC, revision 53814

guarding against crashes because of out-of-bounds accesses in release mode

2008-05-29 08:42 MW, revision 53813

New devs.

2008-05-29 07:06 SC, revision 53812

define HAVE_DLOPEN as it's always available on >=10.3

2008-05-29 04:41 PC, revision 53811

remove unused/unneeded menuitem cruft

2008-05-29 04:27 PC, revision 53810
  • D /wxWidgets/trunk/include/wx/gtk/treectrl.h

remove obsolete file

2008-05-29 04:26 PC, revision 53809

mark long-deprecated ctor as such

2008-05-29 00:52 KO, revision 53807

Rebake with 0.2.3.

2008-05-29 00:45 KO, revision 53806

Fix for OBJCXXFLAGS issue in Bakefile 0.2.3.

2008-05-28 23:58 VZ, revision 53804

fix MSVC /Wp64 warnings

2008-05-28 12:47 VZ, revision 53802

fix assert in ANSI build in wxConsoleStderr::GetCommandHistory() (ticket 9146)

2008-05-28 12:30 VZ, revision 53801
  • D /wxWidgets/trunk/distrib/scripts/manifests/bc.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/cw.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/cw_mac.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/extradoc.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/glcanvas.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/microwin.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/msw_minimal.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/nplugin.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/patch.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/stubs.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/user.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/wxtree.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/wx_chm.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/wx_hlp.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/wx_htb.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/wx_html.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/wx_pdf.rsp
  • D /wxWidgets/trunk/distrib/scripts/manifests/wx_word.rsp

remove unused onsolete response files

2008-05-28 06:33 RD, revision 53800

Add wxWebKitNewWindowEvent

2008-05-28 06:15 PC, revision 53799

fix leak introduced by r53753

2008-05-28 06:12 RD, revision 53798

Add wxWebKitNewWindowEvent

2008-05-27 23:21 VZ, revision 53797

get rid of MSVC warning about possibly uninitialized variable in CalcAndSendEvent() and also make its code somewhat more structured

2008-05-27 22:48 VZ, revision 53796

fix some harmless compilation in (release) MSVC build

2008-05-27 18:07 VZ, revision 53795

change VERSION to 2.9.0 (not sure if this is really used though)

2008-05-27 18:02 VZ, revision 53794

remove mentions of demos/dbbrowse which doesn't exist any more

2008-05-27 18:00 VZ, revision 53793

add build/msw/wx_stc.dsp

2008-05-27 16:38 VZ, revision 53792

there is no std::wostream under Palm (part of ticket 4700)

2008-05-27 16:35 VZ, revision 53791

ifdef fixes for PalmOS6 (part of ticket 4700)

2008-05-27 16:34 VZ, revision 53790

Palm compiler needs const_cast for passing const int parameters to function taking int (part of ticket 4700)

2008-05-27 16:33 VZ, revision 53789

fixes for Linux build (part of ticket 4700)

2008-05-27 16:28 VS, revision 53788

silence warnings about not using double-buffered surface in wxScreenDC ; add comment explaining why (and how) is wxScreenDC implementation in wxDFB broken

2008-05-27 16:26 VZ, revision 53787

translate comments in English (part of ticket 4700)

2008-05-27 16:17 VZ, revision 53786

distinguish between Server 2003 and XP 64-bit (closes 3359)

2008-05-27 16:00 VZ, revision 53785

add a mention to OS description string if running under a 64-bit Windows version

2008-05-27 15:48 VZ, revision 53784

recognize Vista by name in wxGetOsDescription()

2008-05-27 14:15 SC, revision 53783

guard against layout changes during DoSize

2008-05-27 14:14 SC, revision 53782

make sure we add the correct wx-border pixels to native controls when calculating best size

2008-05-27 10:37 RR, revision 53781

Fix links

2008-05-27 10:24 RR, revision 53780

Minor doc update

2008-05-27 10:17 RR, revision 53779

Native wxBitmapComboBox patch for GTK+

2008-05-27 09:52 RR, revision 53778

Clear columns on destruction

2008-05-27 09:43 RR, revision 53777

Minor wxList clarification

2008-05-27 09:26 RR, revision 53776

Use wxList::DeleteContents() to delete columns

2008-05-27 09:19 RR, revision 53775

Use wxList::DeleteContents() to delete columns

2008-05-27 09:17 RR, revision 53774

Reapply wxWeakRef patch again

2008-05-27 08:53 RR, revision 53773

Use wxWindowRef to hold pointer to default button

2008-05-27 04:57 SC, revision 53772

fixing arc filling for angles > 180

2008-05-27 04:49 SC, revision 53771

fixing arc filling for angles > 180

2008-05-26 18:50 RD, revision 53754

Don't add new enums to the middle of the list to preserve ABI

2008-05-26 17:28 PC, revision 53753

fix removing menu item, ticket 3387

2008-05-26 11:41 RR, revision 53752

Removed more //@ groups

2008-05-26 11:17 RR, revision 53751

Ticket #9493: interface-string-asterisk.patch

2008-05-26 09:21 VS, revision 53750

use bakefile-0.2.3 to generate 2.8 bakefiles

2008-05-26 07:49 RR, revision 53749

Various minor corrections

2008-05-26 07:33 RR, revision 53748

Minor correction

2008-05-25 21:54 KO, revision 53747

(Port to trunk) Fix for wxClientDC::GetAsBitmap, which partially resolves ticket #9486

2008-05-25 21:48 KO, revision 53746

Build fix for non-pch builds, e.g. for universal binary building.

2008-05-25 21:29 RR, revision 53745

Removed Item Management category, minor corrections

2008-05-25 21:20 RR, revision 53744

Clarified wxWindow::Find() wrt to returning *this*, some formating

2008-05-25 20:54 RR, revision 53743

Defer SetHorizontalExtent to idle, also fixes (wxListBox::Delete ignores Freeze/Thaw and is verrrrry slow)

2008-05-25 17:56 KO, revision 53742

Fix for wxClientDC::GetAsBitmap, which partially resolves ticket #9486

2008-05-25 03:08 VZ, revision 53741

don't take the min size into account when setting the window size explicitly in wxGTK, just as wxMSW doesn't do it; mention this in the docs and added a unit test to enforce this

2008-05-25 02:56 VZ, revision 53740

create tests/window directory for wxWindow tests

2008-05-24 22:25 VZ, revision 53739

add test for bug 716

2008-05-24 20:24 RR, revision 53738

Dont send spin text update event from SetValue()

2008-05-24 19:49 RR, revision 53737

Mention wxDataViewTreeCtrl in wxTreeCtrl

2008-05-24 19:37 RR, revision 53736

Minor doc corrections

2008-05-24 19:16 RR, revision 53735

Don't use font encoding in Unicode mode

2008-05-24 17:24 CE, revision 53734

Borland still hates ternary ?

2008-05-24 15:09 VZ, revision 53733

compilation fix after the last change

2008-05-24 14:42 VZ, revision 53732

do case normalization after long path one, this fixes the problem with incorrect paths case under Vista (closes 9162)

2008-05-23 23:28 VZ, revision 53731

added wrapsizer (should have been checked in a long time ago)

2008-05-23 23:28 VZ, revision 53730

improve wxMessageOutputBest console output under Windows (closes 9146)

2008-05-23 19:41 RR, revision 53729

wxTextCtrk::GetRange() shouldn't crash on out of range request

2008-05-23 19:40 RR, revision 53728

Simplify SetValue() with empty string

2008-05-23 18:56 VZ, revision 53727

call base class version from SetWindowStyleFlag() to update common styles such as border ones too (closes #9480)

2008-05-23 18:49 VZ, revision 53726

correct toggling of the selected icon (closes 4029)

2008-05-23 18:31 RR, revision 53725

Invocation of default button by <ENTER> was impossible in wxLB_MULTIPLE

2008-05-23 12:18 VZ, revision 53722

fix MSVC warnings about conversions between pointers and longs

2008-05-23 11:17 RR, revision 53721

Update IsSelection() docs

2008-05-23 11:04 RR, revision 53720

Update controls sample to follow documented logic

2008-05-23 11:03 RR, revision 53719

Move event generation in multiple selection mode to common code

2008-05-23 11:03 RR, revision 53718

Move event generation in multiple selection mode to common code

2008-05-23 11:02 RR, revision 53717

Move event generation in multiple selectino mode to common code

2008-05-23 10:19 RR, revision 53716

Update selection cache when inserting items, too

2008-05-23 10:12 RR, revision 53715

Move event generation code for multiple selection mode to common code

2008-05-23 09:48 RR, revision 53714

Remove deprecated methods

2008-05-23 09:46 RR, revision 53713

Disable events upon item deletion (just in case) and update selection cache

2008-05-22 22:58 SN, revision 53711

Added workaround for "Internal compiler error" with old gcc(-2.8).

2008-05-22 21:47 RR, revision 53710

Forgot client data

2008-05-22 21:31 RR, revision 53709

Make events match better with MSW

2008-05-22 21:21 SN, revision 53708

Linker fix for non-PM builds.

2008-05-22 21:19 SN, revision 53707

Linker fix for non-PM builds.

2008-05-22 20:53 RR, revision 53706

Remove m_blockEvents and use Disable/Enable instead, some more rearraging

2008-05-22 20:19 RR, revision 53705

Minor doc corrections

2008-05-22 18:19 RR, revision 53704

Also allow UP and DOWN if we reached max number of characters, part of [ 1947652 ] Improves keyboard behavior in wxTextCtrl on Mac

2008-05-22 18:11 RR, revision 53703

[ wxwindows-Patches-1947680 ] wxMac: Fixes number of printouts and more

2008-05-22 17:22 SN, revision 53702

Compilation fix for old OS/2 compiler.

2008-05-22 16:46 PC, revision 53701

add missing static keyword

2008-05-22 06:34 BP, revision 53699

Fixed \newsince typo pointed out by Tim Stahlhut.

2008-05-22 00:55 VZ, revision 53698

add back wxChoice::DoGetBestSize() removed by the previous refactoring, it's still needed (#9150)

2008-05-22 00:49 VZ, revision 53697

added wxDateTime::SetFrom/GetAsMSWSysTime() (#9161)

2008-05-22 00:36 VZ, revision 53696

don't reserve space for the icons if none are used, even if we're in icon view (closes 9472)

2008-05-22 00:33 VZ, revision 53695

add handling of wxWrapSizer flags (part of ticket 9468)

2008-05-22 00:25 VZ, revision 53694

fix the confusion in boolean attributes handling in pre-1.3 and 1.3 versions of GLX API (closes 4823)

2008-05-21 19:35 VS, revision 53691

added missing Plural-Forms header

2008-05-21 16:18 PC, revision 53690

button text uses fg color, not text color

2008-05-21 13:06 JJ, revision 53689

Update OpenVMS compile support

2008-05-21 11:54 RR, revision 53688

Make height of red square depend on value in the model

2008-05-21 09:42 RR, revision 53687

Add test for progress renderer

2008-05-21 09:41 RR, revision 53686

Query value from the model column given by col->GetModelColumn()

2008-05-21 09:38 VS, revision 53685

fixed compilation with DirectFB 0.9

2008-05-21 08:47 RR, revision 53684

Added InsertColumn( pos, col ), some reformating

2008-05-21 08:12 RR, revision 53683

Update wxString overview

2008-05-21 08:10 RR, revision 53682

Correct wxString:Append docs

2008-05-21 07:39 RR, revision 53681

Correct formatting

2008-05-21 07:34 RR, revision 53680

Mention dropdown menu

2008-05-20 19:40 RR, revision 53679

Commit mem leak fix I introduced

2008-05-20 17:15 RR, revision 53678

replaces unsigned int with wxUIntPtr

2008-05-20 17:01 RR, revision 53677

Fix mem corruption due to string no longer being in scope

2008-05-20 15:10 PC, revision 53676

get wxSYS_COLOUR_HIGHLIGHTTEXT from GTK+, ticket 4733

2008-05-20 13:25 SC, revision 53675

make independent from carbon

2008-05-20 13:24 JS, revision 53674

COnversion of some common font names to current platform

2008-05-20 13:24 SC, revision 53673

allows resetting color of text to black, closes #4826

2008-05-20 13:23 SC, revision 53672

allows resetting color of text to black, closes #4826

2008-05-20 13:23 JS, revision 53671

COnversion of some common font names to current platform

2008-05-20 13:04 SC, revision 53670

allows resetting color of text to black, closes #4826

2008-05-20 13:03 SC, revision 53669

allows resetting color of text to black, closes #4826

2008-05-20 12:44 RR, revision 53668

Don't make lines narrower that default line height in variable height mode, don't miss button press

2008-05-20 09:28 VS, revision 53667

symbols added in 2.8.8 need to check for wxABI_VERSION >= 20808, not 20804

2008-05-20 09:04 RR, revision 53666

Added control renderers to GTK+

2008-05-20 07:48 BP, revision 53665

More interface header reviews by Azriel Fasten, and added skeleton docs for wxBookCtrlBase (still needs docs though).

2008-05-20 05:19 PC, revision 53664
  • D /wxWidgets/trunk/src/gtk/threadno.cpp
  • D /wxWidgets/trunk/src/gtk/threadsgi.cpp
  • D /wxWidgets/trunk/src/gtk/utilsres.cpp

remove unused files

2008-05-20 05:19 PC, revision 53663

add missing braces

2008-05-20 03:36 PC, revision 53662

add missing break statement

2008-05-20 03:27 PC, revision 53661

put frame extents XGetWindowProperty code in one place

2008-05-19 19:46 CE, revision 53657

up to 2.8.8.0 in prep for release

2008-05-19 19:32 CE, revision 53656

up to 2.8.8 in prep for release

2008-05-19 19:31 CE, revision 53655

up to 2.8.8 in prep for release

2008-05-19 19:23 CE, revision 53654

fix wrong file path

2008-05-19 19:20 CE, revision 53653

up to 2.8.8 in prep for release

2008-05-19 19:13 CE, revision 53652

up to 2.8.8 in prep for release

2008-05-19 19:09 CE, revision 53651

up to 2.8.8 in prep for release

2008-05-19 19:07 CE, revision 53650

up to 2.8.8 in prep for release

2008-05-19 12:46 RR, revision 53649

Set EventObject in event

2008-05-19 12:42 RR, revision 53648

Made the various logical 2 device transforms consistent with what's drawn on all platforms

2008-05-19 08:13 RR, revision 53647

Missing header

2008-05-19 08:06 CE, revision 53646

ignore text statius of watcom

2008-05-18 20:12 CE, revision 53645

try to fix SF bug 1913671

2008-05-18 19:55 CE, revision 53644

remove helpGen from distribution (see SF bug 1812087

2008-05-18 19:46 CE, revision 53643

fix SF bug 1812087

2008-05-18 17:40 RR, revision 53642

Correct remaining bits of variable height lines for wxMac, change highlight colour to just white (query it?)

2008-05-18 17:26 VZ, revision 53641

use GtkComboBox instead of deprecated GtkOptionMenu for wxChoice; this also allows to derive wxComboBox from wxChoice in wxGTK as in wxMSW (ticket #9150)

2008-05-18 17:17 VZ, revision 53640

add missing header to fix compilation after changes of r53629 in STL build (in fact fixed by Robert in exactly the same moment, so this change just resolves a local conflict)

2008-05-18 17:14 RR, revision 53639

Compilo

2008-05-18 17:04 JS, revision 53638

Fixed a bug preventing style resetting from occurring

2008-05-18 17:03 JS, revision 53637

Fixed a bug preventing style resetting to occur

2008-05-18 11:38 VZ, revision 53636

add tests for wxPATH_NORM_CASE (unsuccessfully trying to reproduce the problem of #9162)

2008-05-18 11:38 SC, revision 53635

removing double set of geometry

2008-05-18 11:14 VZ, revision 53634

work around VC7 compiler bug resulting in a warning about FileNameTest being never instantiatable

2008-05-17 23:53 VZ, revision 53633

fix handling of the commands with negative ids (e.g. created by NewControlId()) in MDI frames

2008-05-17 23:42 VZ, revision 53632

(blind) fixes for PCH-less build after r53626

2008-05-17 23:14 VZ, revision 53631

fix gcc warnings about not calling the base class ctors (replaces patch 1962992)

2008-05-17 23:07 VZ, revision 53630

make cast from double to long explicit to suppress gcc warning (part of patch 1962992)

2008-05-17 22:51 VZ, revision 53629

allow loading wxAnimationCtrl contents from stream (patch 1962344)

2008-05-17 22:49 VZ, revision 53628

added language info for Northern Sami (patch 1964036)

2008-05-17 22:44 VZ, revision 53627

fix crash in BitmapComboBoxWidgetsPage under wxUniv

2008-05-17 22:43 VZ, revision 53626

native wxBitmapComboBox implementation for MSW (patch 1941399)

2008-05-17 22:41 VZ, revision 53625

take const wxConfig object in wxDocManager::FileHistoryLoad() and wxFileHistory::Load() (patch 1942316) [should have been part of r53562]

2008-05-17 22:13 VZ, revision 53624

don't blit more than necessary in wxBufferedDC::UnMask() (patch 1943622) [should have been part of r53565]

2008-05-17 21:24 VS, revision 53623

minor Unicode overview corrections

2008-05-17 17:54 JS, revision 53622

Fixed common style collection and superscript/subscript selection

2008-05-17 17:54 JS, revision 53621

Fixed common style collection and superscript/subscript selection

2008-05-17 16:20 JS, revision 53619

Cast for argument to delete[] - VC6 doesn't want to delete a const pointer

2008-05-17 12:56 VZ, revision 53617

fix window rectangle computation in Centre(wxCENTER_ON_SCREEN)

2008-05-17 09:41 VS, revision 53616

wxUniv: implement wxSYS_VSCROLL_X/Y metrics in wxUniv code, they depend on the theme, not lowlovel port

2008-05-17 09:40 SN, revision 53615

Fixed wxWindowOS2::Reparent.

2008-05-17 09:34 VS, revision 53614

fixed error logging in TIFF image handler to output something useful regardless of the build

2008-05-17 09:28 SN, revision 53613

Added missing #include.

2008-05-17 09:28 SN, revision 53612

Added missing #include.

2008-05-16 22:05 RR, revision 53611

Tried unsuccessfully to change individual line height

2008-05-16 21:03 RR, revision 53610

Correct vert alignment

2008-05-16 20:08 RR, revision 53609

ignore invisble columns in height calculation

2008-05-16 19:51 RR, revision 53608

Typo

2008-05-16 15:21 SN, revision 53607

Ensure that wxApp::Yield is always processing pending event by creating a temporary event loop if needed.

2008-05-16 12:50 SN, revision 53606

Ensure that wxApp::Yield is always processing pending event by creating a temporary event loop if needed.

2008-05-16 12:49 RR, revision 53605

[ 1965257 ] wxMac implementation of wxDataViewColumn::SetResizeable()

2008-05-16 12:37 RR, revision 53604

Option for variable line heights (MSW and GTK+ sofar)

2008-05-15 17:24 PC, revision 53599

fix some warnings from GCC -Wextra

2008-05-15 11:53 RR, revision 53595

Missing semicolon

2008-05-15 11:50 RR, revision 53594

[ 1960295 ] wxWeakRef - Reorganization and comments

2008-05-14 14:27 SC, revision 53593

fixing 64-32 bit conversion warnings, no brush must be set for color bitmaps, only for monochrome ones

2008-05-14 09:27 RR, revision 53592

[wx-dev] [ wxwindows-Bugs-1566309 ] wxDir::IsOpened() and wxDir::Open() always true

2008-05-14 09:04 JJ, revision 53591

Update OpebVMS compile support

2008-05-14 01:30 VZ, revision 53590

generate size event when the dialog is shown for consistency with frames and other ports (bug 1961671); this also makes workaround for showing the gripper in the previous revision unnecessary

2008-05-14 00:53 VZ, revision 53589

delay gripper positioning until the dialog is shown to ensure that it doesn't overwrite other dialog children

2008-05-13 20:52 SC, revision 53588

adapting to new m_font handling in base (it's not always valid, so use GetFont())

2008-05-13 19:40 VZ, revision 53587

fix bug introduced by the last change: we could overwrite the buffer if the file size changed while we were reading it

2008-05-13 02:51 PC, revision 53586

fix overload ambiguity when compiler doesn't know NULL is a pointer

2008-05-13 00:20 RD, revision 53585

fixed last commit

2008-05-12 23:55 RD, revision 53583

Need to allow wxMemoryDC's at any time. (It derives from wxPaint event so the 2nd half of the test catches that.)

2008-05-12 23:54 RD, revision 53582

Resolve overload ambiguities

2008-05-12 22:42 BP, revision 53581

Fixed bug #1340071 (outdated documentation of wxFrame::CreateStatusBar() function default values).

2008-05-12 12:47 SN, revision 53573

Clarified difference between wrap width and width of control in wxStaticText.

2008-05-12 12:21 SN, revision 53572

Fixed link to page with third party tools.

2008-05-12 11:22 VZ, revision 53571

don't dereference end iterator

2008-05-12 06:27 PC, revision 53570

fix wxColourData::FromString() not restoring 16th color, bug 1844355

2008-05-12 00:05 VZ, revision 53568

add wxCAL_SHOW_WEEK_NUMBERS support (patch 1960860)

2008-05-12 00:03 VZ, revision 53567

add wxCmdLineParser::AddUsageText() and wxCMD_LINE_USAGE_TEXT (modified patch 1957542)

2008-05-11 23:46 VZ, revision 53566

make GetUsageString() public, this is useful at least for the tests

2008-05-11 23:19 VZ, revision 53565

don't blit more than necessary in wxBufferedDC::UnMask() (patch 1943622)

2008-05-11 23:04 PC, revision 53564

disconnect handler in wxTaskBarIcon dtor, should have been part of previous commit

2008-05-11 22:45 PC, revision 53563

prevent crash if panel/kicker is killed, bug 1872724

2008-05-11 20:32 VZ, revision 53562

take const wxConfig object in wxDocManager::FileHistoryLoad() and wxFileHistory::Load() (patch 1942316)

2008-05-11 20:17 PC, revision 53561

don't change brush settings in SetBackgroundMode(), it is only supposed to affect text background, bug 1480986

2008-05-11 19:59 VZ, revision 53560

fix appending items to sorted control (patch 1940384)

2008-05-11 19:50 VZ, revision 53559

revert r52151, apparently it doesn't work in 2.8 (see patch 1939287)

2008-05-11 17:45 VZ, revision 53558

include wx/timer.h for wxUSE_GUI==0 now that timers can be used in console apps too (patch 1939223)

2008-05-11 17:44 VZ, revision 53557

avoid extra reallocations and memcpy for seekable files in OnRead() (slightly modified patch 1935975)

2008-05-11 17:43 VZ, revision 53556

add a test for reading files >4KB

2008-05-11 17:18 VZ, revision 53555

assert if the window is being recreated, this indicates a bug in the user code and can be difficult to find without the help of this assert

2008-05-11 17:12 VZ, revision 53554

show resize grip on resizeable dialogs (slightly modified patch 1910654)

2008-05-11 17:08 VZ, revision 53553

move last change to the correct section

2008-05-11 16:17 VZ, revision 53552

make class names used for our windows unique between different wx instances (modified patch 1898289)

2008-05-11 15:37 VZ, revision 53551

added in sections ommitted by the translation script; clairified EVT_TEXT (non) generation from ctor

2008-05-11 15:24 SN, revision 53550

Blind fix for bug #1936227 (unable to set initial value > 100).

2008-05-11 01:38 BP, revision 53549

Replaced @returns with @return for more standard command use and compatibility.

2008-05-11 00:34 VZ, revision 53548

no changes, just fix a typo

2008-05-11 00:29 VZ, revision 53547

don't send text changed events from ctor as wxGTK doesn't do it and people apparently don't like it

2008-05-10 21:02 VZ, revision 53546

oops, fix compilation after last commit

2008-05-10 20:16 VZ, revision 53545

backport wxDocManager::MakeNewDocumentName() from the trunk for forward-compatibility

2008-05-10 17:48 PC, revision 53541

remove extra semicolons, correct virtual access

2008-05-10 17:46 PC, revision 53540

non-pch build fixes, after r53535

2008-05-10 17:30 PC, revision 53539

don't send paint events for exposures of the border-only GdkWindow, fix for bug 1894655

2008-05-10 09:54 FM, revision 53538

give a name to the unnamed enum to make it easier to document it

2008-05-10 09:46 JS, revision 53537

Fix conversion from variant array

2008-05-10 09:44 FM, revision 53536

other f*h header reviews

2008-05-10 09:40 FM, revision 53535

replace use of 'long/int bitmapType' with 'wxBitmapType bitmapType' in richtext and wxMemoryFSHandler

2008-05-10 09:37 FM, revision 53534

added version check against gcc-generated xml; added readme and few other notes about ifacecheck

2008-05-10 05:35 KO, revision 53533

svn merge -r 53388:53532 http://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH

2008-05-10 00:05 RD, revision 53524

Add some additional renderer functions for Mac and MSW (so far) but do it as standalone functions in order to not disrupt the ABI. These are primarily needed for wxWebKit which is why they are going in to 2.8 instead of straight into 2.9 the proper way (as new methods of the wxRenderer* classes.)

2008-05-09 22:18 RD, revision 53511

Merge r53510 from 2.8 branch

2008-05-09 22:15 RD, revision 53510

Avoid asserts when wxDP_ALLOWNONE is used and the date is set to wxDefaultDateTime

2008-05-09 21:53 VS, revision 53509

fixed wxMac compilation after ShowWithEffect() changes; also fixed to use correct directions meaning

2008-05-09 18:59 BIW, revision 53508

applied patch 1908782 wxAuiMDIChildFrame not removed from wxAuiMDIClientWindow

2008-05-09 18:58 BIW, revision 53507

applied patch 1908782 wxAuiMDIChildFrame not removed from wxAuiMDIClientWindow

2008-05-09 16:57 SC, revision 53506

reverting style of include back to user include as before

2008-05-09 08:47 JS, revision 53505

Apply previous paragraph style if pasting plain text, but not if pasting rich text.

2008-05-09 08:46 JS, revision 53504

Apply previous paragraph style if pasting plain text, but not if pasting rich text.

2008-05-09 08:30 MW, revision 53503

Move MinGW builds to another machine as td165 is down.

2008-05-09 04:48 SC, revision 53502

applying 1960600 (avoid dereferencing lc if it hasn't been set)

2008-05-08 22:50 VZ, revision 53501

update the documentation after the patch 1876663

2008-05-08 22:45 VZ, revision 53500

extracted wxWrapSizer in separate files and somewhat improved it (heavily modified patch 1876663)

2008-05-08 21:56 VS, revision 53499

changed ShowWithEffects() to use directional wxSHOW_EFFECT_XXX flags instead of additional wxDirection argument that doesn't always make sense; this also means the direction is never implicit

2008-05-08 20:46 BP, revision 53498

More interface header reviews by Azriel Fasten, along with a simple item "add" group for wxSizer.

2008-05-08 19:42 BP, revision 53497

Updates to wiki links, and XHTML source cleanups.

2008-05-08 18:58 VZ, revision 53495

add wxSizer::SetDimension() overload taking wxPoint/wxSize instead of 4 ints

2008-05-08 14:57 VZ, revision 53494

don't call TB_GETITEMRECT with invalid tool index

2008-05-08 14:48 VZ, revision 53493

fix some unused variables warnings reported by Borland

2008-05-08 14:15 VZ, revision 53492

correct the signature of the overriden Reparent()

2008-05-08 14:13 VZ, revision 53491

don't override DoDrawSpline() under CE at all instead of overriding it and then always forwarding to the base class version

2008-05-08 14:12 VZ, revision 53490

fix confusion with (Do)DrawSplines() overloads; don't allocate points on the heap unnecessarily when we can just do it on the stack

2008-05-08 13:57 VZ, revision 53489

don't redeclare vsscanf() for Windows compilers, the case of missing declaration for an existing function only arises under old Unix systems

2008-05-08 13:28 VZ, revision 53488

add a combobox to one of the toolbars, just for testing

2008-05-08 13:25 VZ, revision 53487

correct toolbar width calculation with comctl32.dll < 6.0 (patch 1902358)

2008-05-08 13:19 VZ, revision 53486

correct toolbar width calculation with comctl32.dll < 6.0 (patch 1902358); simplified the code a little by introducing wxGetTBItemRect() function

2008-05-08 12:55 VZ, revision 53485

compilation fix after switch to using std::string in wxString internally when wxUSE_STD_STRING==1 instead of only when wxUSE_STL==1

2008-05-08 02:36 VZ, revision 53484

update and complete Unicode overview; add an overview of changes since wx 2.8

2008-05-07 18:56 RR, revision 53483

Remove const consts from docs

2008-05-07 18:52 RR, revision 53482

current locale in wxString means wxConvLibc

2008-05-07 17:56 RR, revision 53481

Mention wxConvLocal in wxString

2008-05-07 17:36 RR, revision 53480

Further wxString clarification according to current implementation

2008-05-07 16:23 PC, revision 53479

use PNGAPI if it is defined

2008-05-07 07:29 JS, revision 53478

Added const when writing XPMs to avoid gcc warnings

2008-05-07 07:28 JS, revision 53477

Added const when writing XPMs to avoid gcc warnings

2008-05-07 00:46 VZ, revision 53475

use std::[w]string for wxString implementation unless wxUSE_STD_STRING==0 but even if wxUSE_STL==1

2008-05-07 00:43 VZ, revision 53474

extract the most important wxUSE_XXX settings in their own category

2008-05-07 00:35 VZ, revision 53473

don't use $0$ and $1$, Doxygen doesn't have math mode

2008-05-06 21:11 VS, revision 53471

compilation fixes for !wxUSE_FONTMEM case

2008-05-06 21:04 RR, revision 53470

[ 1957970 ] wxWeakRef - assign from other wxWeakRef

2008-05-06 20:36 RR, revision 53469

Fix more typos

2008-05-06 17:08 VS, revision 53468

removed wxDCWindowImpl::m_win; use wxDCImpl::m_window instead (fixes caret-related crash

2008-05-06 15:29 VS, revision 53467

use const char*, not char*, for embedded XPMs to fix gcc warnings

2008-05-06 12:51 RR, revision 53466

Try to fix formating

2008-05-06 10:42 RR, revision 53465

More wxString docs, listed most STL methods

2008-05-06 07:06 BP, revision 53464

Interface header review of wxStringTokenizer by Azriel Fasten.

2008-05-06 03:17 BP, revision 53463

Added missing semi-colon in DVC interface header, and fixed the appearance alias to really only output to HTML.

2008-05-05 23:35 VZ, revision 53462

dump totals as well as averages when gatheting statistics

2008-05-05 23:30 VZ, revision 53461

remove _T()s, they're unneeded now

2008-05-05 22:02 BP, revision 53460

Added todos for changing wxVListBox::OnDraw* virtual functions to non-const (I'm not sure what compatibility issues we'll run into here yet).

2008-05-05 20:49 BP, revision 53459

Added margin to event handler function prototypes for IE6 and IE7 which were rendering it on top of the previous paragraph.

2008-05-05 10:53 VS, revision 53457

fixed &nbsp; handling in wxHtmlWinParser, broken by TAB-handling changes (bug #1957041)

2008-05-05 10:52 VS, revision 53456

fixed &nbsp; handling in wxHtmlWinParser, broken by TAB-handling changes (bug #1957041)

2008-05-05 10:10 JS, revision 53455

Reverted patch 1906896 because it broke prgrammatic style application with BeginStyle/EndStyle.

2008-05-05 10:10 JS, revision 53454

Reverted patch 1906896 because it broke prgrammatic style application with BeginStyle/EndStyle.

2008-05-05 08:16 JS, revision 53453

Use fallback when passing -1 for point size (as allowed by other ports)

2008-05-05 08:16 JS, revision 53452

Use fallback if passing -1 as point size (as allowed on other ports)

2008-05-05 08:15 JS, revision 53451

Removed non-ANSI characters, even if the result is gibberish German

2008-05-04 21:03 VS, revision 53450

clarified From/To8BitData's purpose

2008-05-04 21:03 VS, revision 53449

clarified From/To8BitData's purpose

2008-05-04 13:55 SC, revision 53448

fixing memory leaks on three levels (bug report 1905138)

2008-05-04 13:49 SC, revision 53447

fixing memory leaks on three levels (bug report 1905138)

2008-05-04 09:37 VS, revision 53446

check tables width parameter for invalid values

2008-05-04 09:36 VS, revision 53445

check tables width parameter for invalid values

2008-05-04 09:04 BP, revision 53444

Initial review of various [q-r] by Utensil Candel.

2008-05-04 08:45 VS, revision 53443

fixed incorrect handling of end iterator in HtmlizeLinebreaks() introduced in r53298 (patch #1956966)

2008-05-03 20:18 JS, revision 53442

Fixed [ 1905777 ] Defining default accelerators for wxRichTextCtrl Added standard accelerators for cut, copy, paste and select all.

2008-05-03 20:18 JS, revision 53441

Fixed [ 1905777 ] Defining default accelerators for wxRichTextCtrl Added standard accelerators for cut, copy, paste and select all.

2008-05-03 20:07 JS, revision 53440

Applied patch [ 1906896 ] Fix for bug #1906223 and optimization Don't set default style to cursor style until entering text Andrej Sinicyn

2008-05-03 20:07 JS, revision 53439

Applied patch [ 1906896 ] Fix for bug #1906223 and optimization Don't set default style to cursor style until entering text Andrej Sinicyn

2008-05-03 20:01 JS, revision 53438

Made bullet page more compact

2008-05-03 19:53 JS, revision 53437

Don't trigger kill focus event twice

2008-05-03 19:53 JS, revision 53436

Don't trigger kill focus event twice

2008-05-03 15:33 VZ, revision 53435

replaced test for inexistent wxUSE_LOCALE with the correct wxUSE_INTL

2008-05-03 01:42 VZ, revision 53434

update from FELIPE PERIARD LOPES

2008-05-03 00:40 VZ, revision 53433

don't return junk from wxHtmlTag::GetParamAsInt() if the parameter is not an integer [backport of r53432 from trunk]

2008-05-03 00:39 VZ, revision 53432

don't return junk from wxHtmlTag::GetParamAsInt() if the parameter is not an integer (this resulted in practically infinite loop in table parsing code for bad HTML with incorrect colspan values)

2008-05-02 22:05 VZ, revision 53431

add an assert indicating that old code overriding OnExecute() must be updated with 2.9

2008-05-02 15:46 BP, revision 53430

Removed missing parameter from docs of wxVListBox constructor (bug 1956198).

2008-05-02 15:46 BP, revision 53429

Removed missing parameter from docs of wxVListBox constructor (bug 1956198).

2008-05-02 04:52 BP, revision 53428

Commented out appearance sections in docs temporarily until screenshots are added.

2008-05-02 04:12 BP, revision 53427

Finished initial review of a few [g*] interface headers.

2008-05-01 05:38 BP, revision 53425

Finished initial review of [v*] interface headers.

2008-04-30 13:45 RR, revision 53424

Update version info in platform detail page

2008-04-30 09:41 RR, revision 53423

Minor clarification

2008-04-30 09:34 RR, revision 53422

Mention wxGCDC

2008-04-30 09:26 RR, revision 53421

Added constructor to wxGCDC from wxPrinterDC

2008-04-30 09:17 RR, revision 53420

Use cairo_scale() for scaling to full printing resolution, correct transformation in Cairo graphics context for GTK+ printing

2008-04-30 00:44 RD, revision 53418

I think this is what Julian meant...

2008-04-29 19:16 SC, revision 53417

adding impl for Create( wxPrinterDC

2008-04-29 16:01 CE, revision 53416

add watcom define HAVE_VSSCANF_DECL (http://article.gmane.org/gmane.comp.lib.wxwidgets.devel/100710)

2008-04-29 12:40 JS, revision 53415

A direcory for the wxWebCtrl GSoC 2008 project

2008-04-29 12:13 RR, revision 53414

Tried to transform wxGC like wxDC, failed

2008-04-29 11:56 JS, revision 53413

Reduced the height requirement for the bullet dialog for small displays

2008-04-29 11:34 RR, revision 53412

Minor doc improvements

2008-04-29 10:12 RR, revision 53411

Minor doc improvements

2008-04-29 09:53 RR, revision 53410

Minor clarification

2008-04-29 09:10 JS, revision 53409

Added a wxRichTextCtrl-specific caret implementation in case of need

2008-04-29 09:10 JS, revision 53408

Added a wxRichTextCtrl-specific caret implementation in case of need

2008-04-28 20:39 RR, revision 53406

Added new wxGraphicsContext:Create( wxPrinterDC ) instead of wxDC:CreateGraphicsContext

2008-04-28 18:49 VZ, revision 53405

added wxQueueEvent() avoiding the bug of wxPostEvent() with the events having wxString fields

2008-04-28 18:13 RR, revision 53404

Some doc corrections

2008-04-28 17:31 RR, revision 53403

Check for m_treeCtrl!=NULL, [ wxwindows-Patches-1953459 ] wxGenericDirCtrl::SetFocus crash

2008-04-28 17:16 MW, revision 53402

User larger ccache for the benefit of IA64 builds.

2008-04-28 13:46 JS, revision 53401

More efficient implementation of DoGetPartialTextExtents

2008-04-28 13:09 SC, revision 53400

adapted Julian's new speed improved version

2008-04-28 12:57 SC, revision 53399

adapted Julian's new speed improved version

2008-04-28 12:32 VZ, revision 53398

fix wxTextCtrl::operator<<('\n') in Unicode build (should use char overload, not int); corrected mangled documentation of these operators

2008-04-28 11:33 VZ, revision 53397

fix wxEVT_COMMAND_TEXT_ENTER generation in wxSpinCtrl [backport of r53396 from trunk]

2008-04-28 11:31 VZ, revision 53396

fix wxEVT_COMMAND_TEXT_ENTER generation in wxSpinCtrl; add a test for it to the widgets sample

2008-04-28 11:09 VS, revision 53395

report Unicode characters when reporting EVT_CHAR in keyboard sample

2008-04-28 11:09 VS, revision 53394

report Unicode characters when reporting EVT_CHAR in keyboard sample

2008-04-28 10:57 VS, revision 53393

use the new DoLogString signature (fixes with 2.8 compat switched off)

2008-04-28 10:15 JS, revision 53392

Make controls better size on Mac

2008-04-28 08:26 BP, revision 53391

Removed deprecated layout constraints from class summary, and more v* header reviews.

2008-04-28 04:19 KO, revision 53390

Reverting last commit, it breaks ABI compat.

2008-04-28 02:34 KO, revision 53389

svn merge -r 53385:53388 http://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH

2008-04-28 02:29 KO, revision 53388

Store the DC used to initialize wxGCDC, and make it retrievable. This helps with things like wxRenderer.

2008-04-27 18:20 KO, revision 53385

svn merge -r 53326:53384 http://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH

2008-04-27 17:17 JS, revision 53384

Bug fix for empty objects