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

2008-04-27 17:17 JS, revision 53383

Bug fix for empty objects

2008-04-27 13:29 JS, revision 53382

Further wxRichTextCtrl performance improvements

2008-04-27 13:26 JS, revision 53381

Further wxRichTextCtrl performance improvements

2008-04-27 13:01 VZ, revision 53380

use GLX_DOUBLEBUFFER if no attributes were specified with GLX >= 1.3 too

2008-04-27 12:46 VZ, revision 53379

no real changes, clarified the usage of WX_GL_DOUBLEBUFFER; documented it and other WX_GL_XXX constants lost during doxygen transition; simplified wxMSW code a bit

2008-04-27 07:17 MW, revision 53378

New dev.

2008-04-26 23:05 VZ, revision 53373

backport fix to _TIFFrealloc from newer libtiff in trunk: don't call ::GlobalSize(NULL)

2008-04-26 19:43 JS, revision 53372

Fixed quotation mark input/output

2008-04-26 19:43 JS, revision 53371

Fixed quotation mark input/output

2008-04-26 05:43 KO, revision 53370

Add support for Mac dock icon bouncing. I used a cross-platform enum so that we can (ideally) craft a cross-platform API for 3.0.

2008-04-26 02:46 KO, revision 53368

Allow easy access to the build scripts from wx tree.

2008-04-26 02:33 KO, revision 53367

Make build tools accessible in 2.8 branch.

2008-04-26 02:25 KO, revision 53366

Add build script and utilities, including builder.py, an object-oriented wrapper for (eventually) all the compilers we support.

2008-04-26 02:14 KO, revision 53365

Home for scripts and such that are not tied to any particular wx version.

2008-04-25 19:59 RR, revision 53363

Trying to make wxString readable again, II

2008-04-25 19:52 RR, revision 53361

Trying to make wxString readable again

2008-04-25 18:53 RR, revision 53358

wxCairoGraphics need a font event without drawing text

2008-04-25 18:50 RR, revision 53357

Some testing code for wxGraphicsContext printing

2008-04-25 18:21 RR, revision 53356

Minor updates

2008-04-25 17:44 RR, revision 53355

Typo

2008-04-25 17:20 RR, revision 53354

Fix linking problem

2008-04-25 14:18 RR, revision 53349

Forgot to remove this one

2008-04-25 13:41 RR, revision 53348

const_iterator

2008-04-25 13:32 RR, revision 53347

Made wxCairo graphics code compile again, wxGraphicsBitmap still missing

2008-04-25 13:13 RR, revision 53346

Removed category for styled text control which only contained 1 item

2008-04-25 13:09 RR, revision 53345

A few wxString doc updates

2008-04-25 11:05 RR, revision 53344

Added wxDC::CreateGraphicsContext and implemented it for a few DCs

2008-04-25 10:07 RR, revision 53343

Forgot wxGraphicsPath

2008-04-25 10:06 RR, revision 53342

Mention graphics device classes

2008-04-25 09:59 RR, revision 53341

Mention graphics classes, separate out image and bitmap classes

2008-04-24 23:20 VS, revision 53340

Fixed handling of transparent background in borderless wxBitmapButton (patch #1477883)

2008-04-24 23:19 VS, revision 53339

Fixed handling of transparent background in borderless wxBitmapButton (patch #1477883)

2008-04-24 14:39 JS, revision 53338

Made performance acceptable for editing large paragraphs on low-powered machines

2008-04-24 14:39 JS, revision 53337

Made performance acceptable for editing large paragraphs on low-powered machines

2008-04-24 11:44 JS, revision 53336

Further optimizations

2008-04-24 11:43 JS, revision 53335

Further optimizations

2008-04-24 08:30 VS, revision 53334

merged trunk translations for strings occuring but not translated in 2.8 into 2.8 catalogs

2008-04-24 07:58 VS, revision 53333

updated 2.8 message catalogs from sources

2008-04-24 07:56 VS, revision 53332

don't merge msw/it.po with wxstd.pot during 'make allmo', it's manually maintained

2008-04-24 07:54 VS, revision 53331

don't merge msw/it.po with wxstd.pot during 'make allmo', it's manually maintained

2008-04-24 07:36 VS, revision 53330

updated message catalogs from sources

2008-04-24 07:33 VS, revision 53329

contrib is no more, updated locale/Makefile accordingly

2008-04-24 07:20 VS, revision 53328

added missing "

2008-04-24 07:16 VS, revision 53327

added wxString::Clone() and made wxString(wxCStrData) ctor make deep copy too

2008-04-23 23:39 KO, revision 53326

svn merge -r 52985:53325 http://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH

2008-04-23 23:33 KO, revision 53325

Ensure popup menus can display sub-menus.

2008-04-23 23:31 KO, revision 53324

Ensure popup menus can display sub-menus.

2008-04-23 21:50 VZ, revision 53323

prevent all our windows from being destroyed in wxApp::OnEndSession(), otherwise we're still killed before the cleanup code finishes to run

2008-04-23 17:05 PC, revision 53322

restore caching of WM frame extents

2008-04-23 16:56 KO, revision 53321

svn merge -r 52525:52984 http://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH

2008-04-23 15:01 JS, revision 53320

Further performance optimizations

2008-04-23 15:01 JS, revision 53319

Further performance optimizations

2008-04-23 11:54 VS, revision 53318

wxHTML: preserve TAB characters when copying <pre> content to clipboard (backport from trunk)

2008-04-23 05:53 JJ, revision 53317

Update OpenVMS compile support

2008-04-22 16:29 VZ, revision 53315

make wxDir::Has{Files,SubDirs}() const

2008-04-22 13:52 VS, revision 53314

restored wxOKlibc() for wxGTK1's use

2008-04-22 13:14 RR, revision 53313

Let wxCommandEvent's copy constr copy its string via .c_str() as otherwise ::Clone() isn't thread-safe

2008-04-22 10:47 VS, revision 53312

small updates to Czech translation

2008-04-22 08:57 RR, revision 53311

Reviewd wxVariant

2008-04-22 08:29 RR, revision 53310

Remove usused variable

2008-04-22 08:26 RR, revision 53309

Minor correction

2008-04-22 07:57 JS, revision 53308

Two bug fixes for FindWrapPosition

2008-04-22 07:57 JS, revision 53307

Two bug fixes for FindWrapPosition

2008-04-22 06:01 BP, revision 53303

More initial reviews of [u*-v*] interface headers.

2008-04-22 01:38 BP, revision 53300

Finished initial reviews of the rest of the [d*] interface headers.

2008-04-21 21:25 RR, revision 53299

[ 1944519 ] improve left down event handling for wxPopupTransientWindow

2008-04-21 20:06 VS, revision 53298

use iterators in HtmlizeLinebreaks()

2008-04-21 19:01 RR, revision 53297

[ 1907169 ] GTK - trunk - dialog default button, part II for comboctrl

2008-04-21 18:48 RR, revision 53296

[ 1945434 ] Changing method wxComboCtrlBase::DrawButton to virtual one

2008-04-21 15:26 JS, revision 53285

Speeded up wrapping (again), this time using partial text extents.

2008-04-21 15:25 JS, revision 53284

Speeded up wrapping (again), this time using partial text extents.

2008-04-21 14:21 MW, revision 53283

Move builds to the machines currently working.

2008-04-21 10:46 VS, revision 53282

preserve TAB characters when copying HTML <pre> content to clipboard

2008-04-21 10:34 VS, revision 53281

@wxsince -> @since in Doxygen docs

2008-04-21 01:44 VZ, revision 53280

suppress unused parameter warning in release build

2008-04-21 01:40 BP, revision 53279

More initial reviews of d* interface headers.

2008-04-20 23:50 BP, revision 53278

More initial reviews of d* interface headers.

2008-04-20 22:44 PC, revision 53277

fix child window redraw glitches during scrolling (bug 1944002)

2008-04-20 22:10 VS, revision 53276

implement wxLIST_AUTOSIZE support in wxMac's wxListCtrl

2008-04-20 22:10 VS, revision 53275

implement wxLIST_AUTOSIZE support in wxMac's wxListCtrl

2008-04-20 20:30 VS, revision 53274

fixed wxMac's wxListCtrl::SetColumnWidth(-1, ...) to really set width for every column

2008-04-20 20:28 VS, revision 53273

fixed wxMac's wxListCtrl::SetColumnWidth(-1, ...) to really set width for every column

2008-04-20 19:08 JS, revision 53272

Fix for slow first character insertion

2008-04-20 19:06 JS, revision 53271

Fix for slow first character insertion

2008-04-20 11:39 VS, revision 53270

fixed wxHyperlinkCtrl XRC handler to not crash

2008-04-20 11:39 VS, revision 53269

fixed wxHyperlinkCtrl XRC handler to not crash

2008-04-19 21:56 VZ, revision 53268

replace inexistent wxTBK_DEFAULT with wxBK_DEFAULT

2008-04-19 20:54 PC, revision 53267

don't reset m_deferShow if Show() is called more than once, bug 1939534

2008-04-19 17:22 RR, revision 53266

Fixed wxDatePickerCtrl under OS X

2008-04-19 16:14 VS, revision 53265

source files are not executable

2008-04-19 11:18 VS, revision 53264

fixed wxString::Replace() to work directly on m_impl -- matters for UTF-8 build

2008-04-19 09:10 CE, revision 53263

add missing hildon files to gtk distrib

2008-04-19 08:12 BP, revision 53262

More dc* interface headers reviewed.

2008-04-18 08:08 RR, revision 53260

Reverted accidental change

2008-04-18 08:07 SC, revision 53259

1945421 applied

2008-04-18 08:06 SC, revision 53258

1945421 applied

2008-04-18 08:06 RR, revision 53257

Reverted accidental change

2008-04-18 08:04 RR, revision 53256

Reverted accidental change

2008-04-18 08:01 RR, revision 53255

Layout improvements for CalendarCtrl

2008-04-18 07:58 RR, revision 53254

Bring wxSpinCtrl closer to HIG

2008-04-18 07:57 RR, revision 53253

Improve default size calc of wxComboBox

2008-04-18 01:51 VZ, revision 53252

added wxMouseState::GetPosition(), for consistency with wxMouseEvent

2008-04-18 01:48 VZ, revision 53251

make wxMouseState accessors const; document this class

2008-04-17 17:29 MW, revision 53248

Backport getgrgid_r fix.

2008-04-17 15:31 RR, revision 53247

[ 1936700 ] wxCAL_SHOW_WEEK_NUMBERS, slightly modified

2008-04-17 15:19 RR, revision 53246

Patches-1940222 ] wxTextCtrl and keydown on fully selected text (wxMac)

2008-04-17 15:10 RR, revision 53245

[ 1942756 ] wxImage:SaveFile() returns true instead of result of subcall

2008-04-17 15:07 RR, revision 53244

[ 1942756 ] wxImage:SaveFile() returns true instead of result of subcall

2008-04-17 14:39 MW, revision 53243

Work around another buggy getgrgid_r.

2008-04-17 11:28 JJ, revision 53242

Update OpenVMS compiles support

2008-04-17 07:06 BP, revision 53241

Fixed wxScrolledWindow references to properly link (and appropriately changed others to wxScrolled). Initial reviews of a few d* interface headers in this commit as well.

2008-04-16 22:35 VS, revision 53239

removed no longer needed wxOKlibc() helper

2008-04-16 22:20 VS, revision 53238

wchar_t is now always required, updated chartype.h check accordingly

2008-04-16 20:11 BP, revision 53235

Added feature to the HTML manual to remember your preference to show or hide the inheritance diagram (shown by default now).

2008-04-16 06:11 RD, revision 53234
  • D /wxWidgets/branches/unlabeled-1.52.2

removing old bogus branches

2008-04-16 06:11 RD, revision 53233
  • D /wxWidgets/branches/unlabeled-1.50.4

removing old bogus branches

2008-04-16 06:11 RD, revision 53232
  • D /wxWidgets/branches/unlabeled-1.44.4

removing old bogus branches

2008-04-16 06:11 RD, revision 53231
  • D /wxWidgets/branches/unlabeled-1.34.2

removing old bogus branches

2008-04-16 06:09 RD, revision 53230
  • D /wxWidgets/branches/unlabeled-1.104.4

removing old bogus branches

2008-04-16 06:09 RD, revision 53229
  • D /wxWidgets/branches/unlabeled-1.97.2

removing old bogus branches

2008-04-16 06:09 RD, revision 53228
  • D /wxWidgets/branches/unlabeled-1.85.2

removing old bogus branches

2008-04-16 06:09 RD, revision 53227
  • D /wxWidgets/branches/unlabeled-1.72.2

removing old bogus branches

2008-04-16 06:09 RD, revision 53226
  • D /wxWidgets/branches/unlabeled-1.71.4

removing old bogus branches

2008-04-16 06:09 RD, revision 53225
  • D /wxWidgets/branches/unlabeled-1.70.4

removing old bogus branches

2008-04-16 06:09 RD, revision 53224
  • D /wxWidgets/branches/unlabeled-1.68.2

removing old bogus branches

2008-04-16 06:09 RD, revision 53223
  • D /wxWidgets/branches/unlabeled-1.66.2

removing old bogus branches

2008-04-16 06:09 RD, revision 53222
  • D /wxWidgets/branches/unlabeled-1.59.2

removing old bogus branches

2008-04-16 06:09 RD, revision 53221
  • D /wxWidgets/branches/unlabeled-1.50.2

removing old bogus branches

2008-04-16 06:09 RD, revision 53220
  • D /wxWidgets/branches/unlabeled-1.42.2

removing old bogus branches

2008-04-16 06:09 RD, revision 53219
  • D /wxWidgets/branches/unlabeled-1.41.2

removing old bogus branches

2008-04-16 06:09 RD, revision 53218
  • D /wxWidgets/branches/unlabeled-1.40.2

removing old bogus branches

2008-04-16 06:09 RD, revision 53217
  • D /wxWidgets/branches/unlabeled-1.36.2

removing old bogus branches

2008-04-16 06:09 RD, revision 53216
  • D /wxWidgets/branches/unlabeled-1.33.2

removing old bogus branches

2008-04-16 06:08 RD, revision 53215
  • D /wxWidgets/branches/unlabeled-1.30.2

removing old bogus branches

2008-04-16 06:08 RD, revision 53214
  • D /wxWidgets/branches/unlabeled-1.28.2

removing old bogus branches

2008-04-16 06:08 RD, revision 53213
  • D /wxWidgets/branches/unlabeled-1.27.2

removing old bogus branches

2008-04-16 06:08 RD, revision 53212
  • D /wxWidgets/branches/unlabeled-1.25.2

removing old bogus branches

2008-04-16 06:08 RD, revision 53211
  • D /wxWidgets/branches/unlabeled-1.24.2

removing old bogus branches

2008-04-16 06:08 RD, revision 53210
  • D /wxWidgets/branches/unlabeled-1.23.2

removing old bogus branches

2008-04-16 06:08 RD, revision 53209
  • D /wxWidgets/branches/unlabeled-1.22.2

removing old bogus branches

2008-04-16 06:08 RD, revision 53208
  • D /wxWidgets/branches/unlabeled-1.21.2

removing old bogus branches

2008-04-16 06:08 RD, revision 53207
  • D /wxWidgets/branches/unlabeled-1.20.2

removing old bogus branches

2008-04-16 06:08 RD, revision 53206
  • D /wxWidgets/branches/unlabeled-1.19.2

removing old bogus branches

2008-04-16 06:08 RD, revision 53205
  • D /wxWidgets/branches/unlabeled-1.18.2

removing old bogus branches

2008-04-16 06:08 RD, revision 53204
  • D /wxWidgets/branches/unlabeled-1.17.2

removing old bogus branches

2008-04-16 06:08 RD, revision 53203
  • D /wxWidgets/branches/unlabeled-1.16.2

removing old bogus branches

2008-04-16 06:08 RD, revision 53202
  • D /wxWidgets/branches/unlabeled-1.15.2

removing old bogus branches

2008-04-16 06:08 RD, revision 53201
  • D /wxWidgets/branches/unlabeled-1.14.2

removing old bogus branches

2008-04-16 06:07 RD, revision 53200
  • D /wxWidgets/branches/unlabeled-1.12.2

removing old bogus branches

2008-04-16 06:07 RD, revision 53199
  • D /wxWidgets/branches/unlabeled-1.11.4

removing old bogus branches

2008-04-16 06:07 RD, revision 53198
  • D /wxWidgets/branches/unlabeled-1.11.2

removing old bogus branches

2008-04-16 06:07 RD, revision 53197
  • D /wxWidgets/branches/unlabeled-1.10.4

removing old bogus branches

2008-04-16 06:07 RD, revision 53196
  • D /wxWidgets/branches/unlabeled-1.10.2

removing old bogus branches

2008-04-16 06:07 RD, revision 53195
  • D /wxWidgets/branches/unlabeled-1.9.4

removing old bogus branches

2008-04-16 06:07 RD, revision 53194
  • D /wxWidgets/branches/unlabeled-1.9.2

removing old bogus branches

2008-04-16 06:04 RD, revision 53193
  • D /wxWidgets/branches/unlabeled-1.5.2
  • D /wxWidgets/branches/unlabeled-1.5.4
  • D /wxWidgets/branches/unlabeled-1.5.6
  • D /wxWidgets/branches/unlabeled-1.6.2
  • D /wxWidgets/branches/unlabeled-1.6.4
  • D /wxWidgets/branches/unlabeled-1.7.2
  • D /wxWidgets/branches/unlabeled-1.7.6
  • D /wxWidgets/branches/unlabeled-1.8.2
  • D /wxWidgets/branches/unlabeled-1.8.4

removing old bogus branches

2008-04-16 06:02 RD, revision 53192
  • D /wxWidgets/branches/unlabeled-1.4.2
  • D /wxWidgets/branches/unlabeled-1.4.4
  • D /wxWidgets/branches/unlabeled-1.4.6

removing old bogus branches

2008-04-16 06:01 RD, revision 53191
  • D /wxWidgets/branches/unlabeled-1.2.2
  • D /wxWidgets/branches/unlabeled-1.2.4
  • D /wxWidgets/branches/unlabeled-1.3.2
  • D /wxWidgets/branches/unlabeled-1.3.4
  • D /wxWidgets/branches/unlabeled-1.3.6

removing old bogus tags

2008-04-16 06:00 RD, revision 53190
  • D /wxWidgets/branches/unlabeled-1.1.4
  • D /wxWidgets/branches/unlabeled-1.1.6

removing old bogus tags

2008-04-16 06:00 RD, revision 53189
  • D /wxWidgets/branches/unlabeled-1.1.2

removing old bogus tags

2008-04-16 05:59 RD, revision 53188
  • D /wxWidgets/branches/tag

removing old bogus tags

2008-04-16 03:40 BP, revision 53187

Finished reviewing (fixing) the datetime.h interface header.

2008-04-15 23:30 VZ, revision 53186

execute the usual cleanup code from EVT_END_SESSION handler under MSW, otherwise it's not run at all because we're simply killed by the system (bug 1428691)

2008-04-15 23:17 VZ, revision 53185

added a section about Connect(), improve/streamline the one about event tables

2008-04-15 12:55 MW, revision 53180

Move wxGTK Stable quick build to a machine with gtk+ installed.

2008-04-15 12:22 VZ, revision 53179

add possibility to specify the conversion to use in wxStringOutputStream; use it instead of reimplementing the same logic erroneously in wxHTML (bug 1711476)

2008-04-15 12:17 MW, revision 53178

Move builds to the currently available testdrive machines.

2008-04-15 12:16 MW, revision 53177

Just whitespace fixes, no change.

2008-04-15 09:06 RR, revision 53176

Use correct tree style

2008-04-15 08:49 RR, revision 53175

Mention default constr

2008-04-15 07:46 BP, revision 53174

Reviewed wxDatePickerCtrl and categorized most of the wxDateTime methods.

2008-04-15 03:25 BP, revision 53173

Reviewed dataobj.h interface header and added wxDataViewCtrl class group.

2008-04-14 22:30 VS, revision 53172

more wxString:[Aa]ppend() overloads for better compatibility

2008-04-14 20:14 RR, revision 53171

Support bitmaps and text and header columns using wxImageList, minor sizing corrections

2008-04-14 20:13 RR, revision 53170

Use scoped ptr template

2008-04-14 18:41 RD, revision 53169

Also set wxHAVE_RAW_BITMAP for Mac and GTK2, use it in wxSTC

2008-04-14 18:41 RD, revision 53168

Also set wxHAVE_RAW_BITMAP for Mac and GTK2, use it in wxSTC

2008-04-14 16:05 VZ, revision 53167

fix bug when appending string to itself (closes bug 1942116) [backport of r48302 from trunk]

2008-04-14 13:11 VZ, revision 53166

removed extra wxCalendarCtrl:: which is ignored by MSVC for some reason but breaks compilation with other compilers

2008-04-14 11:59 RR, revision 53165

Added bitmap support to column header

2008-04-14 09:40 RR, revision 53164

Correct weak ref usage which triggered an assert

2008-04-14 09:39 RR, revision 53163

Minor clarification

2008-04-14 05:36 BP, revision 53162

Finished initial review of the rest of the [c*] interface headers. Turned on wxPython and wxPerl doc sections as they should be on by default (in tradition of the old manual for now). Removed double border on tables for definition lists (we should work on nicer looking tables for everything, but it can wait).

2008-04-13 23:41 VZ, revision 53161

fix crashes due to missing npos handling in several wxString methods in STL build (bug 1941352); add an assert to ensure this bug doesn't occur in the future

2008-04-13 12:29 VS, revision 53160

fixed incorrect layout width caching in wxHtmlContainerCell (patch #1931479)

2008-04-13 12:28 VS, revision 53159

fixed incorrect layout width caching in wxHtmlContainerCell (patch #1931479)

2008-04-13 12:18 VS, revision 53158

Fixed IMPLEMENT_APP() to be compatible with the -WU flag of Borland C++ (patch #1935997)

2008-04-13 12:17 VS, revision 53157

Fixed IMPLEMENT_APP() to be compatible with the -WU flag of Borland C++ (patch #1935997)

2008-04-13 12:06 VS, revision 53156

wxDFB compilation fixes after recent brushes/pens changes (patch #1939986)

2008-04-13 02:09 VZ, revision 53155

allow predefining wxNO_XXX_LIB symbols to avoid implicitly linking with the corresponding library when using msvc/wx/setup.h

2008-04-13 01:30 VZ, revision 53154

added a simple benchmark for wxDC::DrawLine() performance

2008-04-13 01:29 VZ, revision 53153

removed a TODO comments, it actually doesn't seem necessary to optimize the use of MM_ANISOTROPIC

2008-04-12 23:27 BP, revision 53152

Finished initial review of the rest of the [co*] interface headers.

2008-04-12 21:48 VZ, revision 53151

no real changes but replace manual calls to Set{Text,Bk}Color() with matching calls to restore original colours with constructions of local wxTextColoursChanger objects which do this automatically; also renamed the old wxColourChanger class to wxBrushAttrsSetter to make it more clear what it does and reduce the risk of confusion with the new class

2008-04-12 21:07 VZ, revision 53150

test for pen validity before calling GetStyle() on it, this asserts now if the pen is invalid

2008-04-12 20:29 RR, revision 53149

Giving up on combining @e and @c

2008-04-12 20:24 RR, revision 53148

Fix crash when deleting node

2008-04-12 20:07 RR, revision 53147

Corrected/added support for column headers with icon and text

2008-04-12 19:34 RR, revision 53146

Try out - instead of @li, more backslash escaping

2008-04-12 17:10 VZ, revision 53145

don't use wxLocale if wxUSE_LOCALE==0

2008-04-12 17:10 VZ, revision 53144

don't stop on NULs in Replace()

2008-04-12 17:05 VZ, revision 53143

test that iterator is valid before comparing with it (another bug introduced when replacing indices with iterators)

2008-04-12 17:03 VZ, revision 53142

fix bugs introduced in wxCmdLineParser::ConvertStringToArgs() during Unicode transition; added a unit test for it

2008-04-12 16:30 RR, revision 53141

Try to escape backward slash with two of them

2008-04-12 15:37 RR, revision 53140

Add wxPopupWindow

2008-04-12 15:14 RR, revision 53139

Mention Scrolled and wxScrolledWindow

2008-04-12 15:12 VZ, revision 53138

forward declare wxVideoMode as struct, not class, now that it was reverted to be struct again

2008-04-12 15:05 RR, revision 53137

added @li to return values in wxStandardPaths

2008-04-12 12:05 CE, revision 53136

add ifacechaek to distrib

2008-04-12 02:31 VZ, revision 53135

use WXDLLIMPEXP_FWD_CORE instead of WXDLLEXPORT to avoid newer mingw32 warnings

2008-04-12 02:28 VZ, revision 53134

wxThread::Sleep() is the same as wxMilliSleep() on all platforms but Mac (and maybe it should be the same thing there as well)

2008-04-12 02:24 VZ, revision 53133

correct CallHtmlHelp() overload being called in Quit()

2008-04-12 02:17 VZ, revision 53132
  • D /wxWidgets/trunk/include/wx/mac/apptbase.h
  • D /wxWidgets/trunk/include/wx/mac/apptrait.h
  • D /wxWidgets/trunk/include/wx/mac/carbon/apptbase.h
  • D /wxWidgets/trunk/include/wx/mac/carbon/apptrait.h

remove unused wxAppTraits-related files

2008-04-11 22:12 VS, revision 53131

Added documentation for wxItemContainer class; moved methods docs from wxControlWithItems there and fixed errors in them.

2008-04-11 17:56 VZ, revision 53130

ENDSESSION_LOGOFF is a bit flag, test for it using bit end and not equality in WM_ENDSESSION handler

2008-04-11 13:01 VZ, revision 53129

argh, really, really fix Darwin build

2008-04-11 12:59 VZ, revision 53128

GetSocketManager() has no GUI-specific version under Darwin finally

2008-04-11 12:51 VZ, revision 53127

also use AddProcessCallback() and GetSocketManager() under Darwin

2008-04-11 10:40 RR, revision 53126

Add test for context menu, fixed mem leak, fixed focus problem when re-editing same item

2008-04-11 10:32 RR, revision 53125

Improve wxMenu docs

2008-04-11 09:52 VS, revision 53124

reverted wxVideoMode API breakage by r53049, finished documentation for it

2008-04-11 08:35 JJ, revision 53123

Updates for VMS : new Makefiles, proper type casts

2008-04-11 07:01 BP, revision 53122

Fixed multiple inheritance structure of vscroll.h classes.

2008-04-10 22:09 FM, revision 53121

introduce a new @beginFlagTable

2008-04-10 22:04 FM, revision 53120

other misc fixes

2008-04-10 21:59 FM, revision 53119

use an enum to make it easier to document the values

2008-04-10 21:31 FM, revision 53118

revisions of o-p headers contributed by Utensil Candel and revised by me

2008-04-10 21:17 FM, revision 53117

use a @section instead of <b> tags

2008-04-10 21:16 FM, revision 53116

revisions of o-p headers contributed by Utensil Candel and revised by me

2008-04-10 20:28 RR, revision 53115

More proof-reading in wxImage

2008-04-10 20:06 RR, revision 53114

Rearrange categories, III

2008-04-10 20:02 RR, revision 53113

Rearrange categories, II#

2008-04-10 19:53 RR, revision 53112

Rearrange categories

2008-04-10 18:02 VS, revision 53111

compilation fix after FM's wxBitmapHandler changes

2008-04-10 17:58 VS, revision 53110

compilation fix for newest DirectFB versions (patch #1939443 by Anders Larsen)

2008-04-10 17:58 VS, revision 53109

compilation fix for newest DirectFB versions (patch #1939443 by Anders Larsen)

2008-04-10 16:36 RR, revision 53108

Learning doxygen

2008-04-10 16:36 RR, revision 53107

minor improvements

2008-04-10 14:05 JS, revision 53106

Added wxRichTextCtrl superscript and subscript support (Knut Petter Lehre).

2008-04-10 14:05 JS, revision 53105

Added wxRichTextCtrl superscript and subscript support (Knut Petter Lehre).

2008-04-10 13:45 RR, revision 53104

Minor correction to Unicode overview

2008-04-10 13:36 RR, revision 53103

Correct introduction to wxControlWithItems

2008-04-10 13:21 RR, revision 53102

First attempt to document raw bitmap access

2008-04-10 12:35 RR, revision 53101

Make wxImage correction

2008-04-10 10:45 VZ, revision 53100

oops, added missing #endif

2008-04-10 10:44 VZ, revision 53099

only declare AddProcessCallback for wxMotif and wxGTK

2008-04-10 02:57 BP, revision 53098

Finished initial review of some [co*] interface headers.

2008-04-09 21:30 SN, revision 53097

Added missing (trivial) implementation file for wxMiniFrame on OS/2.

2008-04-09 21:25 SN, revision 53096

Added IMPLEMENT_DYNAMIC_CLASS for wxMiniFrame.

2008-04-08 13:52 JS, revision 53094

Try standard XDG location for documents directory

2008-04-08 13:51 JS, revision 53093

Try standard XDG location for documents directory

2008-04-08 12:38 RR, revision 53092

Update Unicode overview to 3.0

2008-04-08 11:17 RR, revision 53091

Adapt MSW's renderer's alignment to use column header's alignment by default

2008-04-08 11:05 JS, revision 53090

Don't send event from ChangeValue

2008-04-08 11:04 JS, revision 53089

Don't send event from ChangeValue

2008-04-08 10:40 RR, revision 53088

We do use templates now

2008-04-08 10:39 RR, revision 53087

By default, align renderers as column header under GTK+, too.

2008-04-08 05:34 BP, revision 53086

Finished initial review of [cl*-cm*] interface headers.

2008-04-08 00:31 KO, revision 53085

Since we use C-style casts to grab the pointer from an item id, we can return an invalid item if the control has extra items appended.

2008-04-07 20:12 VZ, revision 53084

don't ask for bounding rectangle of a hidden root, this fixes a crash introduced by the previous patch

2008-04-07 18:53 RD, revision 53083

wxVideoMode is a class not a struct

2008-04-07 18:52 RD, revision 53082

fix typedef

2008-04-07 17:41 FM, revision 53081

better integration of the window sizing overview in the wx docs; revised it removing python-like syntaxes; misc fixes to the wording

2008-04-07 12:25 JS, revision 53080

Avoid the use font setters to avoid any memory leaks

2008-04-07 10:46 RR, revision 53079

Put sample code back in, removed during conversion to Doxygen

2008-04-07 10:37 RR, revision 53078

Further corrections to container class docs

2008-04-07 09:27 RR, revision 53077

Split wxDataViewVirtualModel fork wxDataViewIndexModel to make the code clearer and let wxDataViewIndexModel behave the same on all platforms

2008-04-07 08:23 RR, revision 53076

Compilo after wxVideoMode change, MSW part

2008-04-07 06:23 KO, revision 53074

Enable popupwin on Mac.

2008-04-07 03:44 KO, revision 53073

Add somehow uncommitted file.

2008-04-07 01:06 VZ, revision 53072

correct positioning of the control and removed workarounds for old MSW bugs

2008-04-07 00:17 RR, revision 53071

Some corrections to container class docs.

2008-04-07 00:07 RR, revision 53070

Mention that the renderer's alignment is ignored under OS X, reorder docs

2008-04-06 23:28 RR, revision 53069

compilo

2008-04-06 23:16 RR, revision 53068

Test header and renderer aligment separately, II

2008-04-06 23:07 RR, revision 53067

Test header and renderer aligment separately

2008-04-06 23:04 RR, revision 53066

Added alignment parameter to renderers' constr

2008-04-06 22:59 RR, revision 53065

Mention wxDataViewRenderer Set/GetAlignment

2008-04-06 20:31 RR, revision 53064

Fix compilo

2008-04-06 20:02 VZ, revision 53063

no changes, just fix typo in variable name

2008-04-06 17:02 VZ, revision 53062

don't bounce back events to the text control recursively as this results in infinite recursion under wxGTK and probably other ports

2008-04-06 16:24 FM, revision 53061

stdobjects is used for both objects and pointers

2008-04-06 16:19 FM, revision 53060

my revision of o-p interface headers

2008-04-06 16:14 VZ, revision 53059

delay setting the window shape until it is realized (slightly modified patch 1935497)

2008-04-06 16:01 VZ, revision 53058

added a note about entry point in Unicode build (patch 1934836)

2008-04-06 15:57 VZ, revision 53057

use background colour, not WINDOW_COLOR, in OnDrawItem() (patch 1934179)

2008-04-06 15:55 VZ, revision 53056

use kind, not id, of a menu item to test whether it's a separator: this allows having separators with ids other than wxID_SEPARATOR in case it's useful to distinguish between them (patch 1929039)

2008-04-06 15:46 VZ, revision 53055

demo toggling border and 3D sash styles (last part of patch 1927817)

2008-04-06 15:45 VZ, revision 53054

use wxJoin() instead of redoing it manually in the code logging the messages (part of patch 1927817)

2008-04-06 15:42 VZ, revision 53053

demonstrate fuller about dialog in ShowFullAboutDialog() (part of patch 1927817)

2008-04-06 15:41 VZ, revision 53052

removed (unused) occurrences of _WX_DEFINE_DATE_EVENTS_ (part of patch 1927817)

2008-04-06 15:37 VZ, revision 53051

refresh the item after adding its first child as, apparently, otherwise the '+' is not always drawn immediately (patch 1927179)

2008-04-06 15:35 FM, revision 53050

give a name to the enumeration of the values which can be passed to OnDrawItem to make it easier to document it

2008-04-06 15:34 FM, revision 53049

documented wxVideoMode (otherwise wxDisplay docs are not very useful)

2008-04-06 15:31 VZ, revision 53048

continue with other handlers if some handler fails in LoadFile() after returning true from CanRead() (modified patch 1926226)

2008-04-06 15:28 FM, revision 53047

make sure all wxDefault* and all wxNull* global instances are documented

2008-04-06 15:25 VZ, revision 53046

corrected inverted test in IsEmpty() (patch 1936052)

2008-04-06 15:14 VZ, revision 53045

reset m_selection in DeleteAllPages() (patch 1922215); some cleanup of DoRemovePage() in trunk

2008-04-06 14:49 FM, revision 53044

small typo fix

2008-04-06 14:43 FM, revision 53043

improved rendering of styles and events sections: put the description of those items on new lines; put the prototype of event handlers on a separate line, too. This change requires that @event and @style macros are _not_ followed by a colon.

2008-04-06 13:57 VZ, revision 53042

no changes, just some cleanup (patch 1918720)

2008-04-06 12:52 FM, revision 53041

revisions contributed by Utensil Candel

2008-04-06 10:01 CE, revision 53040

SF bug 1895101

2008-04-06 09:31 CE, revision 53039

SF bug 1895101

2008-04-06 02:38 RD, revision 53038

use the same constant the other ports use instead of a magic number

2008-04-06 02:13 RD, revision 53037

Slight reorg of last change

2008-04-06 00:00 KO, revision 53036

Initial implementation of wxGraphicsContext::GetMultilineTextExtent, so that wxGraphicsContext has all the same drawing APIs as wxDC.

2008-04-05 21:00 SN, revision 53035

Tests for declarations of snprintf/vsnprintf/vsscanf should be done in C++.

2008-04-05 20:46 VZ, revision 53034

include more headers for PCH-less compilation

2008-04-05 18:25 RR, revision 53033

Also right-align second column

2008-04-05 18:22 RR, revision 53032

Always interpret a column width of -1 as 80 until somthing better is found

2008-04-05 17:54 VZ, revision 53031

use wxCHECK instead of wxASSERT in Alloc() to avoid crashing when (trying to) use strings of length close to INT_MAX (bug 1933693)

2008-04-05 17:50 VZ, revision 53030

document Alloc() vs returning bool (part of bug 1933693)

2008-04-05 17:29 RR, revision 53029

Added test for right alignment of 1st column

2008-04-05 17:28 VZ, revision 53028

don't crash in ReadString() if the length read from the stream is too big (bug 1933560)

2008-04-05 17:26 RR, revision 53027

Added test for left/centre/right alignment

2008-04-05 17:07 VZ, revision 53026

fix for g++ signed/unsigned comparison warning

2008-04-05 17:05 VZ, revision 53025

include the headers needed for its compilation from the header itself

2008-04-05 13:40 RR, revision 53024

Fixed bug that made adding a child to a branch (that was previously made empty) impossible

2008-04-05 12:37 RR, revision 53023

Bugs-1934787 ] Bug in wxDataViewSpinRenderer::CreateEditorCtrl()

2008-04-05 12:33 RR, revision 53022

Probable fix for [ 1933745 ] Crash in wxDataViewHeaderWindowBase::GetColumn()

2008-04-05 12:24 RR, revision 53021

[ 1922123 ] Generic wxDataViewCtrl leaks

2008-04-05 12:09 RR, revision 53020

Support renderer::LeftClick() in generic code, removed unsupported RightClick(), corrected docs, added test to sample

2008-04-05 09:12 BP, revision 53019

Finished initial review of [ca*-ch*] interface headers.

2008-04-04 23:07 VZ, revision 53014

set focus to the control when it's clicked

2008-04-04 22:30 VZ, revision 53013

use wxWANTS_CHARS to allow arrows to work inside the control

2008-04-04 22:25 VZ, revision 53012

make GenerateEvent() public again to fix wxGTK compilation

2008-04-04 18:39 VZ, revision 53011

regenerate VC8 project files after addition of native MSW version of wxCalendarCtrl too

2008-04-04 16:35 VZ, revision 53010

implemented toggling of wxCAL_MONDAY_FIRST in the native MSW version of wxCalendarCtrl

2008-04-04 16:26 VZ, revision 53009

implemented Mark() in the native MSW version of wxCalendarCtrl

2008-04-04 15:49 VZ, revision 53008

generate double click events in the native MSW version of wxCalendarCtrl

2008-04-04 15:26 VZ, revision 53007

generate the correct events in the native MSW version of wxCalendarCtrl

2008-04-04 14:58 VZ, revision 53006

implemented HitTest() in the native MSW version; added test for it to the sample

2008-04-04 14:24 VZ, revision 53005

implement EnableMonthChange() by restricting the dates range to the current month (this is not ideal as the UI of the control doesn't change, but better than nothing)

2008-04-04 13:07 VZ, revision 53004

compilation fix for PCH-less build

2008-04-04 06:20 BP, revision 53003

Intial review of calctrl.h.

2008-04-04 04:17 VZ, revision 53002

initial native implementation of wxCalendarCtrl for MSW

2008-04-03 23:28 RD, revision 53000

Fix AdjustForOverflow to use item->CalcMin, not item->GetSize

2008-04-03 23:27 RD, revision 52999

Fix AdjustForOverflow to use item->CalcMin, not item->GetSize

2008-04-03 18:57 VS, revision 52998

Fixed timing of malformed animated GIFs in wxHTML (patch #1926825 by Gennady Feller)

2008-04-03 18:55 VS, revision 52997

Fixed timing of malformed animated GIFs in wxHTML (patch #1926825 by Gennady Feller)

2008-04-03 12:47 VZ, revision 52996

replace wrong wxUSE_DYNAMIC_LOADER test with the correct wxUSE_DYNLIB_CLASS one

2008-04-03 12:09 SC, revision 52995

fixing the build for wxMAC_USE_COCOA=1

2008-04-03 11:47 SC, revision 52994

GetPixel isn't returning RGBColor anymore, so change call

2008-04-03 11:41 SC, revision 52993

GetPixel isn't returning RGBColor anymore, so change call

2008-04-03 08:37 FM, revision 52992
  • D /wxWidgets/trunk/docs/html

removed FAQs: they are already available in the website; there's no reason to duplicate them here

2008-04-03 06:43 RD, revision 52990

Call ValueChanged after SetValue so other views will be updated

2008-04-03 03:33 RD, revision 52989

fix warnings

2008-04-03 03:33 RD, revision 52988

fix warnings

2008-04-03 02:50 RD, revision 52987

Fix for potential layout glitches in wxGridBagSizer when items span cells but some other item affects the size of one of spanned rows/cols.

2008-04-03 02:45 RD, revision 52986

Fix for potential layout glitches in wxGridBagSizer when items span cells but some other item affects the size of one of spanned rows/cols.

2008-04-02 13:54 VZ, revision 52982

regenerated after vsscanf() changes

2008-04-02 13:51 VZ, revision 52981

wxMac compilation fix: must explicitly qualify non-dependent MacSetClipChildren() in wxScrolled::Create()

2008-04-02 12:05 SN, revision 52980

Added detection of vsscanf and whether or not a prototype exists in headers.

2008-04-02 11:05 FM, revision 52979

first revision (contains wxHelpEvent and wxNavigationKeyEvent modifications which needs to be solved)

2008-04-02 10:06 VS, revision 52976

backported wxXmlNode::InsertChildAfter and its use during XML parsing to 2.8

2008-04-02 10:04 JS, revision 52975

Only update the toolbar buttons if the toolbar is visible

2008-04-02 10:03 JS, revision 52974

Only update the toolbar buttons if the toolbar is visible

2008-04-02 09:36 VS, revision 52973

changing label invalidates best size

2008-04-02 05:29 BP, revision 52972

Restored the old Classes by Category page to live side-by-side with the full Classes by Category grouping. Also changed the license pages to include the actual license files verbatim rather than duplicated in comments. Cleaned up the Development Tips page a little fixing some minor issues and wrapping at 80 columns. Recategorized the WXDEBUG_NEW() macro from the RTTI group to the Debugging group.

2008-04-02 01:23 BP, revision 52971

115% line height on lists is more than enough, especially for the class hierarchy and class members pages. Also turned off REPEAT_BRIEF for when we add brief descriptions to classes.

2008-04-02 00:10 VZ, revision 52970

log error before returning, not after

2008-04-02 00:04 KO, revision 52969

Commit preliminary fix for wxGraphicsBitmap drawing code on Mac.

2008-04-01 23:53 KO, revision 52968

Use CreateMeasuringContext to do text measurements when we don't have a valid graphics context. (e.g. wxMemoryDC on Mac)

2008-04-01 23:44 VZ, revision 52967

suppress VC++ /Wp64 warnings

2008-04-01 23:43 VZ, revision 52966

move all appearace-related methods down to wxCalendarCtrlBase from wxGenericCalendarCtrl

2008-04-01 22:48 VZ, revision 52965

wxMimeTypesManagerImpl and wxFileTypeImpl are in base, not core

2008-04-01 22:19 SN, revision 52964

Another attempt at fixing Watcom compilation.

2008-04-01 19:43 SN, revision 52963

Added header needed for Solaris to find finite() prototype.

2008-04-01 15:40 VS, revision 52962

compilation fix for wxMSW and r52961

2008-04-01 15:07 VS, revision 52961

Generalized wxScrolledWindow into wxScrolled<T> that can derive from anything (typically wxPanel or wxWindow). Fixed generic wxListCtrl to use wxScrolled<wxWindow> - this fixes focus problems with label-editing text control. Fixes to wxScrolledWindow doxygen docs.

2008-04-01 13:59 FM, revision 52960

replace @b Note with @note; replace '' with "

2008-04-01 13:55 FM, revision 52959

first raw revision

2008-04-01 04:35 RD, revision 52954

Don't force wxBORDER_SUNKEN so the programmer can specify some other style.

2008-03-31 20:32 FM, revision 52952

move readme_vms.txt in a folder ad-hoc

2008-03-31 20:29 FM, revision 52951

add a list of the samples yet to document

2008-03-31 16:39 VZ, revision 52940

improve best height calculation for empty listbox [backport of r52927 from trunk]

2008-03-31 15:22 VZ, revision 52939

throw away the now invalid items in wxSelectionStore::SetItemCount() (bug 1929823) and added a unit test for this class

2008-03-31 15:00 VZ, revision 52938

give an error message when ran from a wrong location instead of just saying that config.status is not found

2008-03-31 14:53 VZ, revision 52937

fix unused parameter warning

2008-03-31 14:42 VZ, revision 52936

store selected indices as unsigned int, not size_t, in wxSelectionStore, we don't need to waste twice the memory needed under Win64

2008-03-31 14:39 FM, revision 52935

update links to the TODO lists

2008-03-31 14:35 FM, revision 52934
  • D /wxWidgets/trunk/docs/gtk/COPYING.LIB
  • D /wxWidgets/trunk/docs/gtk/changes.txt
  • D /wxWidgets/trunk/docs/gtk/licence.txt

remove old files not needed anymore

2008-03-31 14:35 FM, revision 52933
  • D /wxWidgets/trunk/docs/todo30.txt

moved to the wiki

2008-03-31 14:21 FM, revision 52932
  • D /wxWidgets/trunk/docs/cocoa/todo.txt
  • D /wxWidgets/trunk/docs/gtk/todo.txt
  • D /wxWidgets/trunk/docs/mac/todo.txt
  • D /wxWidgets/trunk/docs/motif/todo.txt
  • D /wxWidgets/trunk/docs/todo.txt
  • D /wxWidgets/trunk/docs/wine/todo.txt
  • D /wxWidgets/trunk/docs/x11/todo.txt

moved old TODO lists to the Wiki: http://www.wxwidgets.org/wiki/index.php/Development:_Todo_List

2008-03-31 14:14 FM, revision 52931

move TODO items for wxDocs from the wxwiki to the doxygen manual

2008-03-31 14:06 FM, revision 52930

CSS changes: make lists more spaced; use sans-serif font by default

2008-03-31 14:05 FM, revision 52929

moved translations list to the doxygen manual

2008-03-31 13:27 FM, revision 52928

merge "strategies" page with devtips.h; add mention of Bakefile and wx presets in devtips.h; add explanation of the difference between static/shared builds; reorganize the main page of the manual to improve its usability.

2008-03-31 00:40 VZ, revision 52927

don't leave empty listboxes with tiny best size

2008-03-30 23:34 FM, revision 52926

s/NB:/@note; revised wxFFile

2008-03-30 23:04 FM, revision 52925

typo fix

2008-03-30 18:30 KO, revision 52924

Merge build script updates from 2.8 branch.

2008-03-30 15:50 FM, revision 52923

optimization for faster execution: don't use wxString::Replace() all the times a wxType comparison is required

2008-03-30 14:49 FM, revision 52922

further revision (done by me)

2008-03-30 14:48 FM, revision 52921

revision contributed by Utensil Candel

2008-03-30 13:09 FM, revision 52920

add references to wxWebsite,wxWiki,wxForum

2008-03-30 10:27 VS, revision 52919

added wxXmlNode::InsertChildAfter and use it for (much) faster XML parsing (based on patch by Francesco Montorsi)

2008-03-30 10:12 SN, revision 52918

Add OS/2 to buildbot (patch #1929212).

2008-03-30 00:55 FM, revision 52915

updated the index page: 1) removed sample list: it duplicated (and was out-of-date) the doxygen samples page; 2) removed tex2rtf and odbc references; 3) merged with html/index.htm so that the entire 'html' folder can be removed; temporarily commented-out the FAQ (need to decide how to handle them) and the platforms/i18n pages (need to decide how to handle them)

2008-03-29 22:57 VS, revision 52914

fixed wxXmlNode::InsertChild() documentation to match the code

2008-03-29 22:55 VS, revision 52913

1. fixed wxXmlNode::InsertChild() documentation to match the code 2. added tests for InsertChild() 3. simplified InsertChild() code without changing what it does

2008-03-29 21:18 SN, revision 52912

Linker fixes for OS/2 build.

2008-03-29 19:34 SN, revision 52911

OS/2 port: reorganized wxBitmap/wxBitmapHandler classes to use wxBitmapType instead of "long" where possible; made them const-correct etc. (see r52820)

2008-03-29 19:10 FM, revision 52910
  • D /wxWidgets/trunk/docs/word

ODBC is not part of wx anymore

2008-03-29 19:09 FM, revision 52909
  • D /wxWidgets/trunk/docs/toback24.txt

noone is going to backport stuff to wx2.4 anymore

2008-03-29 19:03 FM, revision 52908
  • D /wxWidgets/trunk/docs/latex

removed latex sources of wxDocs; wxWidgets now uses Doxygen on the 'interface' headers to create its documentation

2008-03-29 18:14 VS, revision 52907

set initial GTK_CAN_FOCUS value to match AcceptsFocus (fixes wxTreeCtrl text control dismissing after r52476)

2008-03-29 18:14 VS, revision 52906
  • D /wxWidgets/trunk/src/gtk/win_gtk.c

removed no longer used win_gtk.c file

2008-03-29 17:27 KO, revision 52905

Porting wxNonOwnedWindow and wxPopupWindow Mac support to wxWebKitBranch.

2008-03-29 15:01 VS, revision 52904

be tolerant of XHTML self-closing tags when parsing the input in wxHTML (patch by kulick@hildensia.de)

2008-03-28 16:47 FM, revision 52901

add more pure virtuals to wxBrushBase; fix the GetColour() functions to return a wxColour object and not a reference; remove from docs the non-existent SetColour(const wxString&) overloads

2008-03-28 16:19 FM, revision 52900

substitute '@b NB:' with '@note'; first partial revision of e*h headers; replace @beginEventTable with @beginEventTable{1} which provides the prototype of the event handler

2008-03-28 10:13 VZ, revision 52895

compilation fix for ANSI build: use reinterptre_, not static_cast, to convert from BYTE* to char*

2008-03-28 02:47 VZ, revision 52891

added native GTK implementation of wxCalendarCtrl (modified patch 1925439)

2008-03-28 01:45 VZ, revision 52887

fix gcc warning about assigning -1 to a guint

2008-03-27 21:32 RD, revision 52872

Use SetCanFocus

2008-03-27 21:27 FM, revision 52871

build fix for non-PCH builds (thanks to buildbot emails ;))

2008-03-27 21:27 RD, revision 52870

Use C++ names in the text, not wxPython names

2008-03-27 21:26 RD, revision 52869

Fix line endings

2008-03-27 21:25 RD, revision 52868

wxPython needs win_gtk.h to be installed

2008-03-27 21:25 RD, revision 52867

A bit of cleanup for STC's use of PopupWindow

2008-03-27 21:23 RD, revision 52866

Use SetCanFocus

2008-03-27 21:15 FM, revision 52865

avoid even more false warnings better handling numeric default values

2008-03-27 21:14 FM, revision 52864

final fixes to [a-b]*h headers

2008-03-27 20:57 FM, revision 52863

add 'availability' infos to both wxMethod and wxClass: in this way ifacecheck does not warn about methods documented to be available only for port X, which are missing from the gcc XML, if the gcc XML was produced for a port different than X; this requires @onlyfor ALIAS to output <onlyfor> tags in the XML output

2008-03-27 20:54 FM, revision 52862

add @onlyfor tags to remove further ifacecheck warnings

2008-03-27 19:15 FM, revision 52861

add the ability to parse the gccxml preprocessor output in order to reduce the number of false positives; fix wrong wxASSERT in wxMethod::IsOk; provide more help when called with --help

2008-03-27 19:13 VZ, revision 52860

lock wxPendingEventsLocker when deleting the handler from wxPendingEvents (patch 1925946)

2008-03-27 16:41 VZ, revision 52859

compilation fix for PCH-less compilation (thanks buildbot)

2008-03-27 16:17 VZ, revision 52858

fixed typo (extra underscore) in wxEVT_COMMAND_LISTBOXDOUBLECLICKED

2008-03-27 16:13 VZ, revision 52857

added convenient wxON_BLOCK_EXIT_SET() macro

2008-03-27 15:37 VZ, revision 52856

added convenient wxON_BLOCK_EXIT_THISn() macros wrapping wxON_BLOCK_EXIT_OBJn(*this)

2008-03-27 14:03 FM, revision 52853

removed old utils (helpgen, tex2rtf, helphtml, nplugin, wxprop, wxole)

2008-03-27 13:03 VZ, revision 52851

don't blit too much when copying static box border in OnPaint()

2008-03-27 08:30 SC, revision 52845

graphics bitmap implementation, fix for bitmap scaling

2008-03-27 00:32 VZ, revision 52842

MSW fixes for the last change: call Realize() after changing the toolbar; hide/show the window when removing/adding it back as it isn't done by Remove/InsertTool() under MSW unlike under GTK (should it?)

2008-03-27 00:28 VZ, revision 52841

don't use gtk_notebook_insert_page() return value as some old GTK+ versions (the one in Solaris 9 for instance) don't have it; also don't use gtk_notebook_get_nth_page() which we need this return value for at all in the trunk as it seems to be unnecessary

2008-03-27 00:10 VZ, revision 52840

Several fixes for removing/readding controls to the toolbar: 1. Don't destroy the control in wxToolBar::RemoveTool() as this prevents it from being added back with is the purpose of using RemoveTool() rather than DeleteTool(). 2. Call wxToolBarTool::Attach/Detach() from the base code, not just from wxMSW and wxMac (wasn't called by wxGTK at all). 3. Allow adding back the removed control tool in wxGTK. 4. Add test for removing/adding back a control tool to the sample.

2008-03-26 23:45 VS, revision 52839

fixed focus related regression in wxListCtrl's wxTextCtrl handling after r52476

2008-03-26 18:40 MW, revision 52838

Add Solars 9 builds.

2008-03-26 16:40 FM, revision 52837

added the rungccxml.sh script and the setup_gccxml.h file to make it easier to generate the gccxml output for ifacecheck

2008-03-26 15:49 JS, revision 52836

Added GetId() to Connect calls to ensure only the relevant events are processed

2008-03-26 15:49 JS, revision 52835

Added GetId() to Connect to ensure only the relevant events are processed

2008-03-26 15:06 FM, revision 52834

substitute WXDLLEXPORT with WXDLLIMPEXP_CORE and WXDLLEXPORT_DATA with WXDLLIMPEXP_DATA_CORE

2008-03-26 11:16 SC, revision 52832

popup activation scope and l&f

2008-03-26 10:55 SC, revision 52831

fixing custom background on non owned windows

2008-03-26 10:54 SC, revision 52830

fixing custom background on non owned windows

2008-03-26 08:48 JS, revision 52827

Fixed selection clearing.

2008-03-26 08:47 JS, revision 52826

Fixed selection clearing.

2008-03-25 23:53 VZ, revision 52825

several g++ 4 warning fixes

2008-03-25 22:06 FM, revision 52824

final revision of prototypes for b*h (and few others)

2008-03-25 21:36 SC, revision 52823

moving tlw list up, cleanup

2008-03-25 21:34 SC, revision 52822

moving tlw list up, cleanup

2008-03-25 21:19 FM, revision 52821

build fix

2008-03-25 20:31 FM, revision 52820

reorganized wxBitmap/wxBitmapHandler classes to use wxBitmapType instead of "long" where possible; made them const-correct; introduce wxBITMAP_SCREEN_DEPTH instead of -1 for clearness (specially in the docs); remove wxBitmapHandler empty stubs and rename wxBitmapHandlerBase as wxBitmapHandler

2008-03-25 19:50 SC, revision 52819

porting reordering of controls back from 2.8

2008-03-25 17:41 FM, revision 52818

mention that both gccxml and doxygen are smart enough to mark as virtual functions declared so in base classes but not explicitely declared virtuals in derived classes

2008-03-25 17:04 JS, revision 52817

Fix for non-pch

2008-03-25 16:07 FM, revision 52816

further improve the automatic modify mode: wrap correctly inserted prototypes at comma boundaries, add @deprecated only if needed, update the locations of the methods below the fixed one

2008-03-25 16:01 FM, revision 52815

final prototype fixes to a*h headers; s/WXTYPE/wxEventType

2008-03-25 15:36 SC, revision 52814

adding 10.4 code for making focus events behave as similar to 10.5 as possible

2008-03-25 15:21 VZ, revision 52813

document On{Open,Save}Document()

2008-03-25 14:51 VZ, revision 52812

call OnReadWaiting(), not OnExceptionWaiting(), when we receive EPOLLHUP

2008-03-25 13:45 VZ, revision 52811

implement wxListItem::operator=()

2008-03-25 13:33 VZ, revision 52810

ANSI mode compilation fix

2008-03-25 13:00 SC, revision 52808

fix adding non owned window for mac

2008-03-25 12:26 FM, revision 52807

for each prototype make sure that if the n-th argument has a default value, then all the following arguments have a default value, too

2008-03-25 12:22 FM, revision 52806

prototype fixes (in particular fix missing default value initializers)

2008-03-25 08:21 SC, revision 52804

rebake after adding non owned window for mac

2008-03-25 08:02 SC, revision 52803

non owned window implementation

2008-03-25 08:01 SC, revision 52802

non owned window implementation

2008-03-25 07:59 SC, revision 52801

non owned window implementation

2008-03-25 07:57 BP, revision 52800

Removed the old, manual entry function, macro, and class category pages and replaced them with the new, finished versions auto-generated by Doxygen.

2008-03-25 07:54 SC, revision 52799

non owned window implementation

2008-03-25 07:53 SC, revision 52798

non owned window implementation

2008-03-25 07:52 SC, revision 52797

non owned window implementation

2008-03-25 07:49 SC, revision 52796

non owned window implementation

2008-03-25 07:48 SC, revision 52795

non owned window implementation

2008-03-25 07:47 SC, revision 52794

non owned window implementation

2008-03-25 07:42 SC, revision 52793

non owned window implementation

2008-03-25 07:41 SC, revision 52792

non owned window installation

2008-03-25 07:39 SC, revision 52791

make popup on mac behave as on msw

2008-03-25 07:36 BP, revision 52790

Finished review/fixes of the rest of the functions and macro categories (Network/User/OS, Process Control, Strings, Threads, and Time).

2008-03-25 07:35 SC, revision 52789

make popup on mac behave as on msw

2008-03-25 07:32 SC, revision 52788

turning off QuickDraw on the iPhone

2008-03-25 07:31 SC, revision 52787

addind nonowned window implementation

2008-03-25 07:30 SC, revision 52786

addind nonowned window implementation

2008-03-25 07:29 SC, revision 52785

addind nonowned window implementation

2008-03-25 07:27 SC, revision 52784

addind nonowned window implementation

2008-03-25 07:27 SC, revision 52783

addind nonowned window implementation

2008-03-25 07:26 SC, revision 52782

addind nonowned window implementation

2008-03-24 23:22 FM, revision 52774

added the process-only option

2008-03-24 23:13 VZ, revision 52773

fix wxExecute() compilation in ANSI build

2008-03-24 22:17 FM, revision 52771

prototype fixes (this time including pure virtual function detection)

2008-03-24 22:08 FM, revision 52770

added wxArgumentType; added parsing of argument names, so that the modify mode retains them when writing correct prototypes

2008-03-24 18:44 FM, revision 52769

add pure virtual function parsing; give more informative warnings; fix the initial line to delete when in modify mode

2008-03-24 18:17 FM, revision 52768

further prototype revisions; rename interface/aui.h to interface/framemanager.h since wxAuiManager and wxAuiPaneInfo are declared in the latter (in the real headers)

2008-03-24 15:07 VS, revision 52767

no need to export private list/arrays of generic controls' implementations

2008-03-24 13:39 FM, revision 52766

fix for built with compat 2.8 off

2008-03-24 13:02 FM, revision 52765

make the log file more readable; fix the count of warnings

2008-03-24 12:45 FM, revision 52764

use @a instead of @e where it makes sense

2008-03-24 12:45 FM, revision 52763

move macros out of the wxArray class decl

2008-03-24 12:23 FM, revision 52762

fix almost all deprecation warnings

2008-03-24 12:04 FM, revision 52761

add backward compat FindOrCreateFont

2008-03-24 02:38 VZ, revision 52756

fix (one off, so not really important) memory leak which happened if an application using XRCID() in event tables didn't initialize (and hence didn't shutdown) wx

2008-03-24 01:40 VZ, revision 52754

document wxSizerItem::SetMinSize()

2008-03-24 01:02 FM, revision 52753

final prototype fixes (done using ifacecheck)

2008-03-24 00:51 FM, revision 52752

fix the automatic modify mode

2008-03-24 00:51 FM, revision 52751

fix bug in buliding newtype string; fix GetAsString() to put proper spaces around args

2008-03-23 23:20 FM, revision 52750

add deprecation tags/attributes parsing

2008-03-23 23:19 FM, revision 52749

fix simple errors which block ifacecheck

2008-03-23 20:20 VZ, revision 52747

fix crash when pressing Up key in empty combobox

2008-03-23 19:39 BP, revision 52746

Removed @class command from templated classes. Doxygen doesn't seem to handle these well unless we just don't specify it, and let the parser find it from the declaration itself.

2008-03-23 19:16 FM, revision 52745

remove unused #defines; fix include header for MinGW32 wxMSW Trunk

2008-03-23 19:12 SN, revision 52744

Compilation fix.

2008-03-23 18:24 BP, revision 52743

Finished review/fixes of Math and Miscellaneous categories of functions and macros.

2008-03-23 18:24 PC, revision 52742

non-pch build fix

2008-03-23 18:08 FM, revision 52741

update infos about profiling under linux (callgrind utility has been merged with valgrind)

2008-03-23 18:04 FM, revision 52740

the control which can be enabled/disabled is a text control not a listbox

2008-03-23 17:41 SN, revision 52739

Updated brush/pen implementation for OS/2 to current implementation style.

2008-03-23 15:57 VZ, revision 52738

suppress warnings about hiding virtual functions in wxURLDataObject

2008-03-23 15:53 VZ, revision 52737

yet more compilation fixes after brush/pen style changes: remove trailing commas from enums

2008-03-23 14:54 SN, revision 52736

Fixed compilation after wxBrushStyle/wxPenStyle changes.

2008-03-23 14:41 SN, revision 52735

Compilation fix (CreateTimerImpl is taken from timerunx.cpp, so not inline).

2008-03-23 12:42 VS, revision 52733

wxError, wxFatalError, wxDebugMsg are not only deprecated, they don't exist anymore -- removed from docs

2008-03-23 12:41 VS, revision 52732

more utils.h fixes

2008-03-23 11:36 FM, revision 52730

further speedup the gccxml parser using dedicated ID-parsing char*-based functions instead of splitting wxStrings and searching inside them

2008-03-23 08:50 VS, revision 52727

restored wxWindow::Line/PageUp/Down docs

2008-03-23 06:25 BP, revision 52726

Finished review/fixes of Logging category of functions and macros.

2008-03-23 02:27 VZ, revision 52722

avoid needless Unicode<->MB conversions in Unix wxExecute(); simplify the code; provide both versions taking char** and wchar_t** for compatibility; also use wxMacExecute() (renamed to wxMacLaunch() to avoid confusion) from all wxExecute() overloads but don't use it if wxEXEC_SYNC was requested as it doesn't support it

2008-03-23 01:17 VZ, revision 52720

correct hhp2cached path

2008-03-23 01:07 KO, revision 52718

svn merge -r 51768:52524 http://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH

2008-03-23 00:08 FM, revision 52717

speedup a little the parser by converting gccXML ID attributes to numbers, instead of storing them as strings; remove 2nd argument to GetAttribute() calls

2008-03-23 00:05 FM, revision 52716

don't build ifacecheck on WinCE since it's a console app

2008-03-22 22:54 FM, revision 52715

use wxEmptyString as default value to return from GetAttribute()

2008-03-22 20:19 VS, revision 52714

fixed signatures of wxSizerFlags methods returning wxSizerFlags reference

2008-03-22 20:16 VS, revision 52713

documented wxRESERVE_SPACE_EVEN_IF_HIDDEN

2008-03-22 20:10 VZ, revision 52712

no changes, just removed unnecessary forward declaration

2008-03-22 20:04 VS, revision 52711

many formatting fixes to wxSizer docs

2008-03-22 19:18 FM, revision 52710

add Id keyword; remove old code (was commented out) which tried to implement alternative parsing strategies; basically those involved doing 4-5 passes on the gcc XML before actually passing it storing the list of the type IDs related in some way to wxWidgets, and then do the true parsing pass, skipping anything non-wx related. This approach (and its variations) showed however to be slower than building the full type table.

2008-03-22 19:09 VS, revision 52709

typo fix: doxygen uses -, not *, for lists

2008-03-22 18:02 FM, revision 52708

added the interface checker to the utils folder

2008-03-22 17:58 FM, revision 52707

silence bakefile warnings about the generation of project files for sample bakefiles using <wx-data>

2008-03-22 17:49 FM, revision 52706

remove the 1-space indentation from remaining pages; mark with @todo tags parts of the docs which need to be written yet

2008-03-22 17:42 FM, revision 52705

moved the samples in a separate page so it has a summary of all the samples descriptions and so writing references to samples is shorter (@ref page_samples_xxx instead of @ref page_utils_samples_xxx)

2008-03-22 16:07 VS, revision 52704

wxVector<T> is header-based, use @nolibrary

2008-03-22 15:54 VS, revision 52703

tagged wxNotebookSizer as deprecated

2008-03-22 15:41 VZ, revision 52702

add timing of synchronous execution

2008-03-22 15:37 VZ, revision 52701

don't use negative PID hack in GUI neither, add a separate flag to wxEndProcessData for this

2008-03-22 15:37 VZ, revision 52700

no real changes, just added a default value for the command used by exec with redirect to avoid having to type it every time

2008-03-22 15:02 VS, revision 52699

documented SelectAll()

2008-03-22 14:57 VS, revision 52698

upported wxHelpProvider docs fixes from r52197; minor tweaks to Doxygen docs of other classes in cshelp.h

2008-03-22 14:55 VZ, revision 52697

no real changes, just small cleanup after last few revisions

2008-03-22 14:50 VZ, revision 52696

refactored common code from XXX_EndProcessDetect in wxGTK[12] and wxMac/wxCocoa into wxHandleProcessTermination itself; also removed code dealing with negative pids as we don't use them any more

2008-03-22 14:49 VZ, revision 52695

don't show more than 20 lines of redirected IO, just 10 first and last ones is enough to check that the code works correctly

2008-03-22 14:43 VS, revision 52694

documented that Freeze and Thaw are now recursive

2008-03-22 14:15 VZ, revision 52693

get rid of traits functions unnecessary now that wxExecute() works in both base and GUI ports

2008-03-22 14:10 VZ, revision 52692

fixed IO redirection to work in wxExecute() in console applications (including the case when the child process outputs more than pipe buffer size) by using wxSelectDispatcher for multiplexing

2008-03-22 12:12 VZ, revision 52691

use wxGUIAppTraits::WaitForChild() in wxMac too

2008-03-22 12:11 VZ, revision 52690

fix warnings about unused parameters/variables in release build

2008-03-22 12:06 FM, revision 52689

use wx-style header and commets; fix indentation to be 4 spaces; move Doxygen comments in a new interface header; deprecate SetBrowser() in favour of SetViewer()

2008-03-22 11:55 VS, revision 52688

fixes to Freeze/Thawn when the window is shown or hidden in between Freeze and Thaw

2008-03-22 11:47 VS, revision 52687

fixed spurious debug message about unexpected focus change when wx focus changed more than once before event loop iteration

2008-03-22 04:19 VZ, revision 52681

make wxSelectDispatcher ctor public, it can be useful to create it in places other than wxFDIODispatcher

2008-03-22 04:08 VZ, revision 52679

correct the REDIRECT_COMMAND definition for Unix

2008-03-22 03:50 VZ, revision 52678

return bool from wxStreamTempInputBuffer::Update() indicating if anything was done; don't sleep in wxExecute() if IO is coming

2008-03-22 03:48 VZ, revision 52677

extracted GUI-specific part of utilsunx.cpp to a new unix/apptraits.cpp file and don't include utilsunx.cpp in both base and GUI libraries now so that we can get rid of BASE_AND_GUI_UNIX_SRC in files.bkl entirely

2008-03-22 03:46 VZ, revision 52676

extracted GUI-specific part of utilsunx.cpp to a new unix/apptraits.cpp file and don't include utilsunx.cpp in both base and GUI libraries now so that we can get rid of BASE_AND_GUI_UNIX_SRC in files.bkl entirely

2008-03-22 03:25 VZ, revision 52674
  • D /wxWidgets/trunk/src/unix/baseunix.cpp

unused any more (should have been part of r52667)

2008-03-22 03:15 VZ, revision 52673

rename classes use by generic wxSpinCtrl implementation to have "Generic" suffix to avoid conflicts with the classes with the same names in wxMac

2008-03-22 03:13 VZ, revision 52672

add comparison operators for wxPen/BrushStyle and wxSOLID/... constants to avoid warnings in the existing code using such comparisons

2008-03-22 03:06 VZ, revision 52671

added wxWindowDisabler ctor for conditionally disabling all windows and use it in WaitForChild()

2008-03-22 02:58 VZ, revision 52670

more compilation fixes after pen/brush styles changes

2008-03-22 00:07 VZ, revision 52667

replace wxAddProcessCallback() with wxAppTraits::AddProcessCallback() to fix linking problems in Unix ports; also reduce code duplication between GUI and base versions making src/unix/baseunix.cpp unnecessary any longer

2008-03-22 00:04 VZ, revision 52666

don't pass unnecessary arguments to FindOrCreateBrush/Pen()

2008-03-22 00:04 VZ, revision 52665

add default parameters for width and style parameters of FindOrCreatePen() for consistency with FindOrCreateBrush() and wxPen ctor

2008-03-22 00:02 VZ, revision 52664

add compatible FindOrCreateBrush(wxColour, int) (also fixes wxMotif compilation)

2008-03-21 23:55 VZ, revision 52663

kill the process launched by wxExecute(ASYNC) to avoid leaving unneeded processes running

2008-03-21 23:48 VZ, revision 52662

uncomment wxExecute(ASYNC) test now that it's supposed to work

2008-03-21 23:39 VZ, revision 52661

also use wx/private/*.h

2008-03-21 23:39 VZ, revision 52660

compilation fixes after pen/brush styles changes

2008-03-21 21:19 VS, revision 52659

fixed TABs positioning inside <pre> so that tags don't throw it apart

2008-03-21 21:19 VS, revision 52658

fixed TABs positioning inside <pre> so that tags don't throw it apart

2008-03-21 20:11 VS, revision 52657

remove needless casting (no real change)

2008-03-21 19:06 FM, revision 52656

some more comments about wxSortedArrayString::Sort

2008-03-21 18:23 VS, revision 52655

backported fix to wxSpinCtrl::GetClientSize() in wxMSW

2008-03-21 18:18 MW, revision 52654

Send build notification to wx-buildbot mailing list.

2008-03-21 18:04 FM, revision 52653

warn the user about using getters of objects in invalid state

2008-03-21 18:03 FM, revision 52652

add the default ctor

2008-03-21 16:21 VZ, revision 52651

restore setting m_appName broken by recent change (fixes bug 1921954)

2008-03-21 14:51 VS, revision 52647

misc wxVector<T> docs fixes

2008-03-21 14:36 VS, revision 52646

fixes to wxSharedPtr<T> docs

2008-03-21 14:22 FM, revision 52645

further prototype fixes (thanks to ifacecheck)

2008-03-21 14:21 FM, revision 52644

add to GetToolkitVersion() the = NULL default values for the two arguments: they were documented but not actually implemented

2008-03-21 14:20 VS, revision 52643

document standard IDs only in one place, not two; bring the list up to date

2008-03-21 09:37 FM, revision 52642

fix wxBrush for the mac build

2008-03-20 23:45 FM, revision 52641

splitted wxApp docs in wxApp+wxAppConsole docs; fix the signature of the documented functions

2008-03-20 22:33 FM, revision 52640

add the wxAnimation's ctor which automatically loads a file: it was documented but not present in the actual code

2008-03-20 22:32 FM, revision 52639

fix the signature of the documented functions and document some (relatively) new for wxAcceleratorEntry

2008-03-20 18:11 FM, revision 52638

fix header files so that they can be included directly without generating 'undefined reference' errors

2008-03-20 18:10 FM, revision 52637

fix a macroscopic error which made Doxygen generate invalid XML

2008-03-20 15:08 FM, revision 52636

make the Pen/Brush code backward compatible as discussed on wx-dev; marked the blocks of code to deprecate in future with FUTURE_WXWIN_COMPATIBILITY_3_0; add wxCHECK_MSG in all ports to block Get*() calls on invalid objects (as already is for all other refcounted objects and for most ports)

2008-03-20 15:06 VS, revision 52635

compilation fix for wxUSE_GUI=0

2008-03-20 13:45 VS, revision 52634

removed trailing whitespace in Doxygen files

2008-03-20 13:40 VS, revision 52633

removed wxAcceleratorTable copy ctor docs, no port implements it

2008-03-20 13:19 VS, revision 52631

forgot to fix one more place where it says accelerator tables can't be used with buttons in wxGTK

2008-03-20 06:00 BP, revision 52630

Finished review/fixes of GDI category of functions and macros.

2008-03-19 18:28 FM, revision 52626

further wxPenStyle/wxBrushStyle fixes for builds with compat off (partially by Marcin Wojdyr)

2008-03-19 14:09 SC, revision 52625

CGFloat

2008-03-19 13:26 SC, revision 52624

make background colour be the real color, to have inheritance work correctly

2008-03-19 13:24 SC, revision 52623

clean include

2008-03-19 13:23 SC, revision 52622

have bg style wxBG_STYLE_CUSTOM not skip event

2008-03-19 08:02 BP, revision 52620

Removed docs for old clipboard functions, and reviewed/fixed atomic ops, file & directory, and environment function categories.

2008-03-18 19:30 BP, revision 52618

Finished review of Dialogs category of functions and macros as well as choicdlg.h (assigned to myself).

2008-03-18 18:24 MW, revision 52617

Switch on build breakage email notifications.

2008-03-18 16:25 PC, revision 52616

revert removal of wxBU_AUTODRAW, now that it is again available with WXWIN_COMPATIBILITY_2_8==0

2008-03-18 16:21 VS, revision 52615

made wxAcceleratorTable work with buttons in wxGTK too

2008-03-18 16:19 VS, revision 52614

made wxAcceleratorTable work with buttons in wxGTK too

2008-03-18 16:17 VS, revision 52613

fixed unresolved symbols in wxSizer docs in 2.8

2008-03-18 14:04 VZ, revision 52612

added wxSpinCtrlDouble (slightly modified patch 1835864)

2008-03-18 13:27 VZ, revision 52611

provide stubs for Get/SetStippled() to fix the build

2008-03-18 12:52 FM, revision 52610

remove deprecation for wxBU_AUTODRAW; it needs some more work, too

2008-03-18 04:06 PC, revision 52605

remove duplicate wxTaskBarIconAreaBase::DoPopupMenu, extracting the one-line difference into a new virtual

2008-03-18 03:32 PC, revision 52604

move wxWindowGTK::DoPopupMenu back to window.cpp

2008-03-18 03:01 PC, revision 52603

simplify wxEVT_MENU_OPEN/CLOSE generation

2008-03-18 01:39 BP, revision 52602

Added explicit information about which functions and macros are declared in what headers from last commit.

2008-03-18 01:34 BP, revision 52601

Finished review of Application Initialization and Termination category of functions and macros.

2008-03-17 22:10 BP, revision 52598

Fixed GENERATE_TAGFILE setting after realizing that the setting turns it on, and sets the output file at the same time.

2008-03-17 22:05 BIW, revision 52597

vista tree crash fix

2008-03-17 21:22 BIW, revision 52596

vista tree crash fix

2008-03-17 21:14 BP, revision 52595

One last navigation tab font adjustment, and made search input only generate for HTML (what's used for daily online docs). All formats default to off, and need to be explicitly turned on in alternate configuration files (settings can be overridden).

2008-03-17 21:09 VZ, revision 52594

use static functions instead of static variables for critical sections to avoid crashing if a log function using a CS is called during static objects initialization

2008-03-17 21:00 RD, revision 52590

Make some wxDataViewCustomRenderer virtuals consistent across platforms. Add missing WXDLLIMPEXP_ADV. Add missing impl for wxDataViewEvent::GetPosition

2008-03-17 20:57 VZ, revision 52589

don't provide unnecessary (as default) arguments to wxPen ctor, this incidentally fixes deprecation warnings

2008-03-17 20:46 VZ, revision 52588

don't provide unnecessary (as default) arguments to wxPen ctor, this incidentally fixes deprecation warnings

2008-03-17 18:40 BP, revision 52587

Bumped up the size of fonts used in the top tabs and in member tables to something a little more reasonable (if I'm annoyed by the font size, it's definitely too small).

2008-03-17 18:26 PC, revision 52586

fix a huge number of build errors

2008-03-17 17:33 FM, revision 52585

restore previous encoding, changed for error to UTF8

2008-03-17 16:14 VS, revision 52584

added back docs for wxWindow::WindowToClientSize, added some missing @since tags

2008-03-17 13:48 MW, revision 52583

Show compiler version at the top of the logs.

2008-03-17 13:46 VZ, revision 52582

implement wxSpinCtrl::Reparent() to properly reparent both the spin button and the text control part [backport of r52543 from trunk]

2008-03-17 08:58 SC, revision 52581

fix default values after types were changed

2008-03-17 04:25 PC, revision 52579

reorganize deferred show logic a bit, to reset m_deferShow properly and avoid realizing unnecessarily

2008-03-17 00:47 FM, revision 52578

revised b* headers; moved wxPenList and wxBrushList to the correct places; partially revised wxPen docs

2008-03-17 00:46 FM, revision 52577

some more build fix for wxPen/wxBrush style changes

2008-03-16 22:42 FM, revision 52576

build fix (looking at buildbot)

2008-03-16 21:50 FM, revision 52575

pen.h depends from brush.h in compat mode

2008-03-16 21:36 FM, revision 52574

fix typos and update MSW code to use new wxPENSTYLE_* enum values

2008-03-16 21:11 FM, revision 52573

fix also wxPen to use wxPenStyle,wxPenJoin,wxPenCap enums instead of plain int; remove from wxBrushStyle the styles wxPen-specific; add backward-compatible ctor to wxPen; don't include brush.h and pen.h from gdicmn.h, rather move wxPenList,wxBrushList,wxFontList in the relative headers

2008-03-16 20:14 CE, revision 52572

remove daily build of docs

2008-03-16 17:23 FM, revision 52571

sort the errors so it's easy to see if already processed headers still give out warnings

2008-03-16 17:00 FM, revision 52570

fix wxMSW build after wxBrush changes: return wxBRUSHSTYLE_MAX instead of zero; fix include loop in MSW headers

2008-03-16 16:47 FM, revision 52569

introduce wxBrushStyle enum and replace 'int style' occurrences in wxBrush code with 'wxBrushStyle style'; the change is backward compatible and documented in changes.txt

2008-03-16 14:43 FM, revision 52568

enable the search engine so that the manual which gets built on http://wx.ibaku.net/manual become 'searchable'

2008-03-16 13:50 JS, revision 52567

Don't accept picker text events from any old text control

2008-03-16 13:50 JS, revision 52566

Don't accept picker text events from any old text control

2008-03-16 11:10 VS, revision 52565

ShowWithEffect must call wxWindowBase::Show

2008-03-16 02:22 VZ, revision 52564

don't use generic process callback for wxGTK/Motif/MGL which have their own versions of it

2008-03-16 00:37 VS, revision 52562

Fixed generic art provider to scale bitmaps down to client-specific best size if needed.

2008-03-16 00:36 VS, revision 52561

Fixed generic art provider to scale bitmaps down to client-specific best size if needed.

2008-03-16 00:35 VS, revision 52560

if we can't detect tooltip color, yellow as used by Tiger is still better than white, which isn't used anywhere

2008-03-16 00:35 VS, revision 52559

if we can't detect tooltip color, yellow as used by Tiger is still better than white, which isn't used anywhere

2008-03-16 00:09 VZ, revision 52558

ignore WinCE projects and build directories

2008-03-16 00:08 VZ, revision 52557

ignore WinCE build directories

2008-03-16 00:04 VZ, revision 52556

added test of focusing/selecting another item

2008-03-16 00:02 BP, revision 52555

Removed layout constaints related docs as discussed on wx-dev.

2008-03-15 23:44 VZ, revision 52554

correct typo in wxDIR_STOP

2008-03-15 18:15 FM, revision 52553

revised base64.h;bitmap.h

2008-03-15 18:11 PC, revision 52552

use a different method to prevent an early size_allocate, removing child has undesirable size effects, such as unsetting the default widget

2008-03-15 16:53 VZ, revision 52551

rename fobr95.{cpp,h} files to foobar.{cpp,h}

2008-03-15 16:46 VZ, revision 52550

add support for asynchronous execution in wxBase (patch 1906889)

2008-03-15 13:58 FM, revision 52549

turn GENERATE_HTML on otherwise CHM generation does not work correctly

2008-03-15 13:36 FM, revision 52548

put the CHM in the out folder instead of out/html; be quiet during output generation

2008-03-15 12:33 VS, revision 52547

wxMSW: generate wxClipboardTextEvent from wxTextCtrl with wxTE_RICH style too

2008-03-15 12:28 VS, revision 52546

wxMSW: generate wxClipboardTextEvent from wxTextCtrl with wxTE_RICH style too

2008-03-15 12:26 FM, revision 52545

update generation info and mention that you need doxygen >= 1.5.4 to correctly regen wx docs

2008-03-15 12:25 VS, revision 52544

restored missing parts of wxClipboardTextEvent docs lost in the conversion

2008-03-15 04:10 VZ, revision 52543

implement wxSpinCtrl::Reparent() to properly reparent both the spin button and the text control part (slightly modified patch 1914190)

2008-03-15 03:45 VZ, revision 52542

use quotes around SRCROOT to handle the case when it contains spaces (patch 1912354)

2008-03-15 03:42 VZ, revision 52541

protect access to ms_aTraceMasks with a critical section (replaces patch 1911172)

2008-03-15 03:36 VZ, revision 52540

call OnNativeDestroyed() if the native window is destroyed independently from us

2008-03-15 03:28 VZ, revision 52539

fix crash in DoGetBestSize() if default widths are used (corrects patch 1386199 applied in r45202)

2008-03-15 03:14 BP, revision 52538

Categorized all functions and macros in the Debugging and Version categories.

2008-03-15 03:12 VZ, revision 52537

don't assign the returned value in wxMDIParentFrame::OnCreateClient() to any member variables, this is the job of the caller (according to documentation and wxMSW code) (modified patch 1910602)

2008-03-15 03:05 VZ, revision 52536

use less expensive GetLastPosition() instead of GetValue() to implement IsEmpty()

2008-03-15 03:04 VZ, revision 52535

don't call GetLastPosition() unnecessarily in SelectAll(), all platforms should support SetSelection(-1, -1) according to the docs (but wxGTK didn't, so fix it to do)

2008-03-15 02:58 VZ, revision 52534

refactored code reused in several different places in wxTextEntry::RemoveSelection() (patch 1910166)

2008-03-15 02:52 VZ, revision 52533

no real changes, just use more readable helper wxTextEntry methods (patch 1910165 )

2008-03-15 02:47 VZ, revision 52532

no real changes, just use more readable helper wxTextEntry methods (patch 1910160)

2008-03-15 02:38 VZ, revision 52531

initialize m_nCurLine in wxTextBuffer ctor (part of patch 1908134)

2008-03-15 02:33 VZ, revision 52530

added support for double arguments to wxCmdLineParser (patch 1907289)

2008-03-15 02:24 VZ, revision 52529

use wxTE_PROCESS_{ENTER,TAB} with the wxGridCellChoiceEditor combobox (slightly modified patch 1906581)

2008-03-15 02:12 VZ, revision 52528

don't generate duplicate resume events for PBT_APMRESUMEAUTOMATIC

2008-03-15 02:12 VZ, revision 52527

call OnNativeDestroyed() if the native window is destroyed independently from us

2008-03-15 02:10 VZ, revision 52526

initialize m_initial{Recv,Send}BufferSize in wxSocketClient ctor (patch 1905981)

2008-03-15 02:08 VZ, revision 52525

remove/replace redundant SetAutoLayout() and Fit() calls, leave just SetSizer[AndFit]() ones (patch 1905759)

2008-03-14 23:59 FM, revision 52524

replace @seealso with @see; as Vaclav pointed out we shouldn't use custom aliases only for styling purposes, CSS is designed for that; besides @seealso was already removed from all interface headers and from Doxygen_inc

2008-03-14 23:57 VZ, revision 52523

don't delete the context in ~wxGLCanvas(), the base class will do it (patch 1912776)

2008-03-14 23:49 VZ, revision 52522

changed eol-style to native for all .h files

2008-03-14 21:40 FM, revision 52511

mention wxMenuItem::* deprecations

2008-03-14 21:28 FM, revision 52510

remove wine path from doxygen_chm: instead add some comments with urls about where to get hhc.exe.

2008-03-14 21:26 FM, revision 52509

make the script a bit more intelligent using MS broken batch scripting (it took me 40 min to sort out the right syntax!)

2008-03-14 21:26 FM, revision 52508

remove wine path from doxygen_chm: instead add some comments with urls about where to get hhc.exe.

2008-03-14 21:16 BP, revision 52507

Updated doxygen launcher scripts to reflect new Doxyfile locations.

2008-03-14 20:54 VZ, revision 52506

rename Doxyfile.* to Doxyfile_* to avoid inappropriate extensions

2008-03-14 17:14 VZ, revision 52505

make wxCmdLineParser:Usage() const

2008-03-14 17:11 VZ, revision 52504

no changes, just fix a few typos and wrap long lines

2008-03-14 16:51 PC, revision 52503

minimize searching for tlw parent, remove useless code

2008-03-14 16:12 FM, revision 52502

revised wxAUI headers; added @todo in various places where docs are missing

2008-03-14 15:55 PC, revision 52501

fix for infinite sizing loop (partial patch 1907189)

2008-03-14 15:51 FM, revision 52500

extracted from wxArrayString docs the docs for wxSortedArrayString, which is declared as deriving from wxArrayString (not sure about the STL case); marked with @todo the two classes for STL clarifications

2008-03-14 15:35 FM, revision 52499

revised a* interface headers; categorized many functions; moved some functions to their correct header

2008-03-14 14:42 FM, revision 52498

remove @ingroup; use @category instead

2008-03-14 14:24 JS, revision 52497

Corrected typecasts (Sebastian Gottschalk)

2008-03-14 14:24 JS, revision 52496

Added typecasts (Sebastian Gottschalk)

2008-03-14 14:18 JS, revision 52495

Fixed bug in wxDialUpManagerMSW::GetISPNames - uses realloc() without checking for NULL, leading to a memory leak (Sebastian Gottschalk)

2008-03-14 14:18 JS, revision 52494

Fixed bug in wxDialUpManagerMSW::GetISPNames - uses realloc() without checking for NULL, leading to a memory leak (Sebastian Gottschalk)

2008-03-14 14:17 JS, revision 52493

Fixed bug for chars with ASCII value > 127, explicitly casting to an unsigned char (Sebastian Gottschalk)

2008-03-14 14:17 JS, revision 52492

Fixed bug for chars with ASCII value > 127, explicitly casting to an unsigned char (Sebastian Gottschalk)

2008-03-14 14:16 JS, revision 52491

Fixed bug for chars with ASCII value > 127, explicitly casting to an unsigned char (Sebastian Gottschalk)

2008-03-14 14:16 JS, revision 52490

Fixed bug for chars with ASCII value > 127, explicitly casting to an unsigned char (Sebastian Gottschalk)

2008-03-14 14:14 JS, revision 52489

Fixed buffer overflow (Sebastian Gottschalk)

2008-03-14 14:13 JS, revision 52488

Fixed bug in XTI constructor macro (Sebastian Gottschalk)

2008-03-14 10:34 SC, revision 52484

use the same font matching fallbacks for all layout operations

2008-03-14 10:33 SC, revision 52483

use the same font matching fallbacks for all layout operations

2008-03-14 08:05 BP, revision 52482

Fixed some function/define paramter names to match old docs.

2008-03-14 07:44 BP, revision 52479

Catagorized all functions and macros belonging to the RTTI and Versioning groups.

2008-03-14 06:06 PC, revision 52478

fix for size 1x1 wxChoice when SetSelection() is called before realization, bug 1913657

2008-03-14 05:47 BP, revision 52477

Added the function and macro group pages for Doxygen.

2008-03-14 01:14 VS, revision 52476

make sure FindFocus returns newly focused window immediately after SetFocus on 2.8 branch too

2008-03-14 01:10 VS, revision 52473

simplified and cleaned up wxGTK's focus handling

2008-03-13 23:58 VS, revision 52472

reverted Julian's r44600, it broke help window behavior so that it prevented apps from closing

2008-03-13 23:42 VS, revision 52471

fixed crash in wxHtmlHelpController if the help window is still open

2008-03-13 23:29 VS, revision 52470

fixed crash in wxHtmlHelpController if the help window is still open

2008-03-13 16:30 FM, revision 52468

revised archive header; changed overview_arc to overview_archive which reads better; modified the @category alias to point to the group pages and to spit out the @ingroup command

2008-03-13 14:21 VS, revision 52467

fixed unreadable formatting

2008-03-13 04:37 PC, revision 52465

fix for idle processing stopping without processing all pending events, replaces patch 1912157

2008-03-13 02:56 BP, revision 52464

Added the class group pages for Doxygen.

2008-03-12 22:18 FM, revision 52463

revised other headers

2008-03-12 21:28 VS, revision 52458

include 'Version' in version string, it's what Apple apps do

2008-03-12 21:28 VS, revision 52457

include 'Version' in version string, it's what Apple apps do

2008-03-12 20:47 VS, revision 52456

indent app name + version from the rest in about dialog; use i18n-friendly way of creating strings

2008-03-12 19:24 VZ, revision 52455

removed non-existent SockAddrLen()

2008-03-12 19:08 BP, revision 52454

Added class groups example to Doxygen and added parent "Functions and Macros", and "Classes by Category" groups. Also added CSS to add "Categories / " to the "Modules" tab label, and turned on DETAILS_AT_TOP setting.

2008-03-12 13:45 JS, revision 52453

Better fix

2008-03-12 13:45 JS, revision 52452

Better fix

2008-03-12 13:36 JS, revision 52451

Sizing/scrollbar corrections for Mac

2008-03-12 13:36 JS, revision 52450

Sizing/scrollbar corrections for Mac

2008-03-12 08:50 BP, revision 52448

Replaced /*! with /** in remaining Doxygen headers, and removed intentation of overviews [a-c].

2008-03-12 05:46 PC, revision 52447

don't defer showing if _NET_FRAME_EXTENTS handler is not connected

2008-03-11 18:20 MW, revision 52446

Add configuration for push builds.

2008-03-11 18:14 BP, revision 52445

Removed printer functions from doxygen docs (they were deprecated at least since 2.6, and don't actually exist in current source). Updated function and macro pages to use simply "()" and not "::" or "#".

2008-03-11 14:06 VZ, revision 52444

VC6 compilation fix: remove redundant end variable declaration in Destroy()

2008-03-11 11:31 JS, revision 52443

Typo correction

2008-03-11 09:35 VS, revision 52442

RPM spec files should use Unix line endings

2008-03-11 07:57 BP, revision 52438

Looking for comments on new functions and macros organization of Doxygen docs shown with this commit, see wx-dev.

2008-03-11 00:03 VZ, revision 52437

delete wxNativeContainerWindow when the native window is destroyed, even if this means leaking memory in GTK case -- still better than getting X errors and crashing

2008-03-10 19:40 VZ, revision 52430

fix handling of native toolkit command line options broken by wxCmdLineArgsArray change

2008-03-10 16:23 FM, revision 52429

interface headers reviewed

2008-03-10 15:54 VZ, revision 52428

compilation fix after last commit

2008-03-10 15:50 VZ, revision 52427

added wxNativeContainerWindow and implemented it for wxMSW and wxGTK

2008-03-10 15:36 FM, revision 52426

update the technote with the conventions recently defined

2008-03-10 15:24 FM, revision 52425

regenerated headers to remove @seealso in favour of @see; fixed links to global functions/macros; converted \since latex macros into @wxsince commands; changed headers purpose from 'documentation for' to 'interface of'

2008-03-10 15:19 FM, revision 52424

fixed links to global variables; fixed categories; use @see instead of @seealso

2008-03-10 15:11 FM, revision 52423

use CSS spans instead of \sections so that we uniform the look to the Doxygen HTML for @see tag; remove @seealso and rather use the std @see tag

2008-03-10 13:55 VZ, revision 52422

fix WXDLLIMPEXP_FWD declaration of wxCollapsiblePane

2008-03-10 02:55 VZ, revision 52420

further simplifiy USE_NATIVE_HEADER_WINDOW checks

2008-03-09 18:13 FM, revision 52419

remove spurious \b

2008-03-09 17:46 MW, revision 52418

Add interface/* to fileNotImportant.

2008-03-09 17:42 FM, revision 52417

revised the first two interface headers

2008-03-09 17:42 FM, revision 52416

use wxAcceleratorEntryFlags as wxACCEL_* enum name so it's easier to refer to it in wxDocs

2008-03-09 17:09 FM, revision 52415

fixed category

2008-03-09 16:24 FM, revision 52414

add const qualifiers

2008-03-09 13:14 VZ, revision 52412

remove wxTextAttr::CreateFont(); return wxNullFont from GetFont() if we have no font attributes

2008-03-09 12:59 VZ, revision 52411

use extra parentheses to fix Borland problems with operator?:

2008-03-09 12:57 VZ, revision 52410

don't use native headers in wxUniv build (this doesn't even link under MSW)

2008-03-09 12:55 VZ, revision 52409

suppress (harmless) warnings about unused variables

2008-03-09 12:47 VZ, revision 52408

document "wrap" attribute for wxStaticText

2008-03-09 12:33 FM, revision 52407

removed @NULL,@true,@false tags from the function prototypes; fixed * and & displacing in the prototypes; changed @param as discussed on wx-dev; use @see instead of @sa; better indentation for @returns,@remarks,@see paragraphs; other misc fixes

2008-03-09 12:31 FM, revision 52406

don't style using Doxygen tags; use <span> tags and CSS instead

2008-03-09 11:58 FM, revision 52405

fix missing end brace

2008-03-09 11:08 FM, revision 52404

adjust comments for latex Doxyfile; no real change; add Id keyword

2008-03-09 03:27 RD, revision 52399

Enable XRC to call wxStaticText::Wrap

2008-03-09 03:27 RD, revision 52398

Enable XRC to call wxStaticText::Wrap

2008-03-09 03:24 RD, revision 52397

Don't need to use wxHAVE_RAW_BITMAP any more.

2008-03-09 03:21 RD, revision 52396

Don't need to use wxHAVE_RAW_BITMAP any more.

2008-03-08 23:04 VZ, revision 52395

wxUniv compilation fix for gs_windowHandles assignment

2008-03-08 23:04 VS, revision 52394

fixed 'Select All' context menu in wxTextCtrl with wxTE_RICH style

2008-03-08 21:52 SC, revision 52393

latex include is not making things worse, so we use it all the same

2008-03-08 21:34 SC, revision 52392

latex include not properly working for links and titlepage

2008-03-08 21:32 SC, revision 52391

fixes

2008-03-08 21:18 SC, revision 52390

pdflatex support

2008-03-08 21:15 SC, revision 52389

adding files for pdflatex support

2008-03-08 17:32 FM, revision 52388

use SPAN.literal CSS style for @true, @false, @ifdef_ and similars

2008-03-08 17:30 FM, revision 52387

specify we don't use # character; other minor details

2008-03-08 16:08 MW, revision 52386

Typo in filesNotImportant.

2008-03-08 15:46 SC, revision 52385

cleaning up common OSX code

2008-03-08 15:30 FM, revision 52384

more comments

2008-03-08 14:43 FM, revision 52383

adjusted indentation with astyle; added Id keyword

2008-03-08 14:39 FM, revision 52382

make it callable from any path

2008-03-08 13:52 FM, revision 52381

added interface headers with latest discussed changes

2008-03-07 19:38 SC, revision 52378

cleaning up common OSX code

2008-03-07 16:56 SC, revision 52377

cleaning up common OSX code

2008-03-07 16:54 SC, revision 52376

cleaning up common OSX code

2008-03-07 16:53 SC, revision 52375

cleaning up common OSX code

2008-03-07 16:51 SC, revision 52374

cleaning up common OSX code

2008-03-07 16:50 SC, revision 52373

cleaning up common OSX code

2008-03-07 16:50 SC, revision 52372

cleaning up common OSX code

2008-03-07 16:44 SC, revision 52371

xcode_config moved

2008-03-07 16:41 SC, revision 52370

adding Aspen (iPhone)

2008-03-07 16:31 SC, revision 52369
  • D /wxWidgets/trunk/include/wx/mac/carbon/config_xcode.h

moving out of 'carbon' dir

2008-03-07 16:30 SC, revision 52368

moving out of 'carbon' dir

2008-03-07 16:29 SC, revision 52367

adding DLOPEN

2008-03-07 12:59 VS, revision 52366

fixed syntax error

2008-03-07 08:55 JS, revision 52365

Only use fonts in wxTextAttr::Combine if they are really present in the attributes.

2008-03-06 22:23 VS, revision 52364

fixed minsize setting after wxCollapsiblePane is expanded - should set client, not window, minsize

2008-03-06 19:28 VS, revision 52363

deprecated wxWindow::SetHelpTextForId()

2008-03-06 18:02 SC, revision 52362

fix for 1742682

2008-03-06 17:11 VZ, revision 52361

use %p for printing out a pointer

2008-03-06 14:41 VZ, revision 52360

use \newsince instead of incorrect \since

2008-03-06 13:48 VS, revision 52359

Unicode compilation fix

2008-03-06 12:24 SC, revision 52358

64/32 bit fixes

2008-03-06 12:20 SC, revision 52357

64/32 bit fixes

2008-03-06 10:12 VS, revision 52356

use 6px as the default wxSizer border in wxGTK to be a little bit closer to GNOME HIG

2008-03-06 09:44 SC, revision 52355

include fixed for non-precomp

2008-03-06 06:46 JJ, revision 52349

Update OpenVMS compile configuration

2008-03-05 23:12 VZ, revision 52348

remove wxFindFocusedChild() declaration too as g++ gets upset if an extern function is redefined as static

2008-03-05 21:27 SC, revision 52347

graphics context additions (work in progress for cocoa integration) and merging graphics bitmap additions from Kevin O.

2008-03-05 21:19 SC, revision 52346

graphics context additions (work in progress for cocoa integration) and merging graphics bitmap additions from Kevin O.

2008-03-05 21:16 SC, revision 52345

shaped can be minimized

2008-03-05 21:14 SC, revision 52344

graphics context additions and merging graphics bitmap additions from Kevin O.

2008-03-05 21:13 SC, revision 52343

graphics context additions and merging graphics bitmap additions from Kevin O.

2008-03-05 21:11 SC, revision 52342

graphics context additions and merging graphics bitmap additions from Kevin O.

2008-03-05 21:10 SC, revision 52341

merging graphics bitmap additions from Kevin O.

2008-03-05 19:13 FM, revision 52340

fix links to overviews

2008-03-05 19:08 FM, revision 52339

fixed all doxygen warnings fixable

2008-03-05 15:31 VS, revision 52338

made wxFindFocusedChild static, the comment wasn't telling truth anymore

2008-03-05 15:22 VZ, revision 52337

ignore more build files

2008-03-05 15:18 VZ, revision 52336

check that parent is non-NULL in CreateWindowFromHWND() instead of just crashing if it is; don't call SetEventHandler() unnecessarily; inherit the id from HWND in AdoptAttributesFromHWND()

2008-03-05 15:16 VZ, revision 52335

call SetHWND(hWnd) from SubclassWin(), this is consistent with calling SetHWND(0) from UnsubclassWin()

2008-03-05 15:14 VS, revision 52334

added wxRESERVE_SPACE_EVEN_IF_HIDDEN support to XRC

2008-03-05 15:14 VS, revision 52333

added wxRESERVE_SPACE_EVEN_IF_HIDDEN support to XRC

2008-03-05 15:09 VS, revision 52332

backported wxSizer::SetSizeHints() fix to make it work correctly when the best size decreases

2008-03-05 15:02 VS, revision 52331

backported wxSizer::ComputeFittingClientSize() and ComputeFittingWindowSize() to 2.8

2008-03-05 14:19 VS, revision 52330

backported ClientToWindowSize(), WindowToClientSize() to 2.8

2008-03-05 13:20 VZ, revision 52329

really use the position passed to ShowHelpAtPoint() when using CHM help controller [backport of r52203 from trunk]

2008-03-05 12:39 VZ, revision 52328

disable wxHAS_TEXT_WINDOW_STREAM for the old MSVC iostream.h library; don't disable it for DLL builds (why?)

2008-03-05 12:27 VZ, revision 52327

include wx/artprov.h to define wxArtID used in this header

2008-03-04 22:18 VS, revision 52320

format strings with no real text don't need translating

2008-03-04 17:46 VS, revision 52319

backported wxRESERVE_SPACE_EVEN_IF_HIDDEN to 2.8

2008-03-04 12:16 VZ, revision 52314

set wxUSE_IOSTREAMH to 0 by default, we're in 2008, not 1988

2008-03-04 12:14 VZ, revision 52313

remove leading dots from .ini/.conf in AddConfFileExtIfNeeded() as this results in double dots in the resulting file name

2008-03-04 12:06 VZ, revision 52312

remove duplicate end iterator declaration from Destroy()

2008-03-04 12:06 VZ, revision 52311

VC6 doesn't have wostream when using old iostream.h

2008-03-04 12:03 VS, revision 52310

added macros for checking for conflicts between flags values; use it in wxSizer code

2008-03-04 12:01 VS, revision 52309

added wxRESERVE_SPACE_EVEN_IF_HIDDEN sizer flag that prevents the sizer from changing size if a window is hidden

2008-03-04 10:06 VS, revision 52308

fixed wxGenericTreeCtrl::DoThaw to call base class' method

2008-03-04 10:05 VS, revision 52307

removed IsFrozen() from paint handler, no need for it there

2008-03-04 10:04 VS, revision 52306

test Freeze/Thaw completely, including clearing and setting insertion point

2008-03-04 10:03 VS, revision 52305

implemented Freeze/Thaw in wxGTK

2008-03-04 04:20 BP, revision 52297

Converted bitmaps to PNG (saving 600KB+), flattened any transparent PNGs in case of incompatible browsers/printing, and renamed a number of images to indicate what page it's used on.

2008-03-04 00:21 BP, revision 52296

Fixed non-precomp headers build.

2008-03-03 23:35 FM, revision 52295

add some explanation text for the new sections

2008-03-03 23:33 VZ, revision 52294

use the selection background colour set using SetSelectionBackground() in GetSelectedTextBgColour() by default

2008-03-03 23:27 FM, revision 52293

added the @appearance tag with a first test screenshot

2008-03-03 22:58 FM, revision 52292

added the logos for our main ports

2008-03-03 22:57 FM, revision 52291

use page_port as prefix since it's shorter and more suited to the new aliases added to Doxygen.inc

2008-03-03 22:56 FM, revision 52290

typo fix

2008-03-03 20:38 MW, revision 52289

Add stylesheet.

2008-03-03 12:23 FM, revision 52285

use rtti as shortcut for runtime type information

2008-03-03 12:22 FM, revision 52284

use rtti as shortcut for runtime type information

2008-03-03 11:30 VS, revision 52283

made Freeze/Thaw recursively (un)freeze child windows too

2008-03-03 10:15 BP, revision 52282

Updated library dependancy graph to use Graphviz (through Doxygen) while removing wxODBC library.

2008-03-03 03:05 BP, revision 52273

Removed wxImageList overview, and other @ref fixes.

2008-03-03 02:01 VZ, revision 52272

position help windows shown when Shift-F1 is pressed near the window and not at the mouse position unless the mouse is over the window [backport of r52271 from trunk]

2008-03-03 01:58 VZ, revision 52271

position help windows shown when Shift-F1 is pressed near the window and not at the mouse position unless the mouse is over the window (this avoids showing the tooltip in the opposite corner of the screen)

2008-03-02 23:50 BP, revision 52270

Fixed WX_2_8_7 tag from revision 50130.

2008-03-02 23:49 BP, revision 52269
  • D /wxWidgets/tags/WX_2_8_7

Removed faulty tag with two copies of wxWidgets to make room for fixed tag in next commit.

2008-03-02 23:28 VZ, revision 52268

always draw toolbar background ourselves under XP as it isn't drawn correctly with some themes (e.g. Zune one) otherwise (replaces patch 1783181)

2008-03-02 23:27 VZ, revision 52267

add test for setting toolbar background colour

2008-03-02 23:21 VZ, revision 52266

reverted the last 2 changes to this file, the border stuff has nothing to do with toolbar sample and is really confusing

2008-03-02 23:19 VS, revision 52265

there's no such thing as LANG_VALENCIAN

2008-03-02 23:05 VZ, revision 52264

use custom selection colours in wxHtmlListBox again (restores functionality broken by patch 1650804 in r44640)

2008-03-02 20:40 VS, revision 52263

fixed rendering of wxTextCtrl's border with wxTE_RICH(2) styles and XP's Classic theme

2008-03-02 20:24 FM, revision 52262

keep the list of event classes in a single place

2008-03-02 17:29 FM, revision 52261

fix include file syntax

2008-03-02 17:22 FM, revision 52260

added category pages for macros and functions

2008-03-02 17:21 FM, revision 52259

fix topic overview name

2008-03-02 15:35 FM, revision 52258

typofix

2008-03-02 15:33 FM, revision 52257

ensure all topic overviews have an horizontal rule with the list of the sections above

2008-03-02 15:18 FM, revision 52256

fixed @code sections

2008-03-02 15:03 FM, revision 52255

fix the @section tag

2008-03-02 14:55 VZ, revision 52254

decouple item index from string value (patch 1905702)

2008-03-02 14:45 VZ, revision 52253

don't post WM_NULL if there is already a WM_NULL in the queue to avoid overflowing it (patch 1904771)

2008-03-02 14:33 VZ, revision 52252

add support for custom controls in file dialog in wxGTK and generic versions; also allow using generic dialogs in the sample with wxGTK2 (patch 1846837)

2008-03-02 14:29 VZ, revision 52251

don't clear value index in SetStringValue() if the value is invalid (patch 1905695)

2008-03-02 14:03 VZ, revision 52250

fix WPARAM typo

2008-03-02 11:00 VS, revision 52248

header files are not executable

2008-03-02 10:59 VS, revision 52247

wxMac: Fixed wxListCtrl to respect items' non-default fonts.

2008-03-02 10:52 VS, revision 52246

don't set m_font upfront in wxMac, let the GetDefaultAttributes mechanism used by other ports pick the right font if m_font is wxNullFont

2008-03-02 10:50 VS, revision 52245

added Get(Class)DefaultAttributes implementation for all controls using DataBrowser native control; fixed wxListBox's to return correct font

2008-03-02 10:48 BP, revision 52244

More doxygen topic overview cleanup.

2008-03-02 10:43 VS, revision 52243

wxMac: Fixed wxListCtrl to respect items' non-default fonts.

2008-03-02 04:32 BP, revision 52237

More doxygen topic overview cleanup.

2008-03-02 01:20 VZ, revision 52234

use generic dialogs under Palm (generic.diff part of patch 1894861)

2008-03-02 01:16 VZ, revision 52233

workarounds for Palm compiler errors (pacc-error.diff part of patch 1894861)

2008-03-02 01:14 VZ, revision 52232

define wxConfig where the header implementing it is defined; also define it for wxPalm and wxOS2 (confmove.diff part of patch 1894861)

2008-03-02 01:08 VZ, revision 52231

predefine wxUSE_LIBMSPACK as 0 for Palm (chkconf.diff part of patch 1894861)

2008-03-02 01:02 VZ, revision 52230

add platform info for Palm (add-wxpalm-info.diff part of patch 1894861)

2008-03-02 00:58 VZ, revision 52229

update the makefiles to take care of new files and improve dependencies support (makefile*.diff parts of patch 1894861)

2008-03-02 00:55 VZ, revision 52228

declare file-related APIs missing under Palm (pflib-missing.diff part of patch 1894861)

2008-03-02 00:53 VZ, revision 52227

compilation fixes for PalmOS and implementations of missing standard functions (pflib.diff part of patch 1894861)

2008-03-02 00:43 VZ, revision 52226

PalmOS compilation fixes (wx-trunk-out.diff part of patch 1894861)

2008-03-02 00:35 VZ, revision 52225

ignore VC7 projects created by importing VC6 ones

2008-03-02 00:32 VZ, revision 52224

mention that SetNativeFontInfo() resets the font in 2.8 but doesn't in the next versions

2008-03-02 00:12 VZ, revision 52223

add menu item to jump to DST start date

2008-03-01 17:26 RR, revision 52220

Mention wxURLDataObject some more

2008-03-01 17:22 RR, revision 52219

Implemented wxURLDataObject for wxGTK using text/x-moz-url

2008-03-01 17:20 RR, revision 52218

typo char_t -> char

2008-03-01 16:45 SC, revision 52217

guard against an m_peer being NULL which is the case for a wxMenuBar, and here tools with introspection from python crash on OS X because they display all attributes in inheritance ...

2008-03-01 13:44 FM, revision 52216

to be valid HTML4 alt attribute is needed

2008-03-01 13:41 FM, revision 52215

typo fix

2008-03-01 12:23 VZ, revision 52214

no real changes, just refactor/simplify the code to remove duplication and unnecessary casts

2008-03-01 11:23 JS, revision 52213

Image size fix

2008-03-01 10:25 RR, revision 52212

Patch for context menu event for generic/Windows code

2008-03-01 09:49 BP, revision 52211

More doxygen topic overview cleanup.

2008-03-01 02:05 BP, revision 52206

More doxygen topic overview cleanup.

2008-02-29 23:54 VZ, revision 52203

really use the position passed to ShowHelpAtPoint() when using CHM help controller (we always used the mouse position instead)

2008-02-29 21:11 VS, revision 52200

fixed ~wxWindowBase to remove associated context help from wxHelpProvider -- otherwise wrong help text could be reused by other controls later

2008-02-29 21:11 VS, revision 52199

fixed ~wxWindowBase to remove associated context help from wxHelpProvider -- otherwise wrong help text could be reused by other controls later

2008-02-29 20:47 SC, revision 52198

adjusting to changed ownership (font is only created in the GetFont call of wxTextAttr)

2008-02-29 20:02 VS, revision 52197

misc. fixes to wxHelpProvider docs

2008-02-29 19:51 VZ, revision 52196

fix asserts when the root is hidden [backport of r45135 from trunk]

2008-02-29 15:12 VS, revision 52195

fixed addition of wxLANGUAGE_VALENCIAN to be binary compatible

2008-02-29 09:19 BP, revision 52191

More doxygen topic overview cleanup.

2008-02-28 22:50 VS, revision 52186

clear statusbar 'Connecting...' message on failure

2008-02-28 22:50 VS, revision 52185

clear statusbar 'Connecting...' message on failure

2008-02-28 22:40 FM, revision 52184

fix little problem previously introduced: GENERATE_TAGFILE must be left empty

2008-02-28 21:58 FM, revision 52183

remove svn:executable property

2008-02-28 21:50 FM, revision 52182

splitted the Doxyfile in more files; now it's easy to generate only a single format or all of them without editing the cfg files

2008-02-28 21:33 FM, revision 52181

prepare for Doxygen renaming into Doxygen.inc

2008-02-28 21:29 FM, revision 52180

move cpp constants just before the wxUSE list

2008-02-28 18:44 JS, revision 52179

Open and Close clipboard properly

2008-02-28 18:44 JS, revision 52178

Open and Close clipboard properly

2008-02-28 08:13 FM, revision 52176

added missing std sections

2008-02-28 08:13 FM, revision 52175

added library missing section

2008-02-28 08:12 FM, revision 52174

adding missing quotes

2008-02-28 08:11 FM, revision 52173

fix the include files

2008-02-28 08:06 FM, revision 52172

removed samples topic overview; the samples are part of mainpages/utilities.h now

2008-02-28 06:34 PC, revision 52171

revert updating GTK size hints when window decorations change, it messes up min size set by a sizer

2008-02-28 06:34 PC, revision 52170

forward Show() to base, not wxWindow

2008-02-28 03:22 BP, revision 52169

Removed some remaining '#' references.

2008-02-28 03:13 BP, revision 52168

Last doxygen topic overview cleanup assigned to myself.

2008-02-28 02:52 VZ, revision 52167

correct WinCE compilation after last change: can't use global scope with GlobalLock/Unlock() there

2008-02-28 02:48 VZ, revision 52166

added DFCS_CHECKED to DrawCheckMark() (part of patch 1890974)

2008-02-28 02:22 VZ, revision 52165

more /Wp64 warning fixes: mostly use UINT_PTR instead of UINT and define our WX[WL]PARAM with __w64 if available to avoid hundreds of warnings when casting LPARAMs to pointers/handles

2008-02-28 00:41 VZ, revision 52164

use GlobalPtrLock (modified to allow not initializing it if the ptr is NULL) in wxGetPrinterDC() to avoid /Wp64 warnings and also make code safer

2008-02-28 00:22 VZ, revision 52163

compilation fix after last change

2008-02-27 18:37 BP, revision 52157

More doxygen topic overview cleanup.

2008-02-27 18:16 JS, revision 52156

Logged some changes.

2008-02-27 18:12 VZ, revision 52155

fix wxWeakRef<> for Borland C++ (slightly modified patch 1902415)

2008-02-27 18:07 JS, revision 52154

Take into account explorer associations and CurVer when finding the command to execute.

2008-02-27 18:07 JS, revision 52153

Take into account explorer associations and CurVer when finding the command to execute.

2008-02-27 18:03 VZ, revision 52152

don't attempt to create 0*0 bitmaps in GetBuffer() (patch 1899643)

2008-02-27 18:00 VZ, revision 52151

clip the text in report mode to prevent it from overflowing into the next column (patch 1898914)

2008-02-27 17:54 VZ, revision 52150

don't track handlers connected to this object itself (patch 1899730)

2008-02-27 17:46 VZ, revision 52149

add SetNativeTheme() (slightly modified patch 1884553)

2008-02-27 17:45 VZ, revision 52148

translate "Copy URL" string in the popup menu (feature request 1803958) (should have been part of r52131 but somehow wasn't committed)

2008-02-27 17:35 VZ, revision 52147

fixes for __WINCE_NET__ build (slightly modified patch 1892654)

2008-02-27 17:29 VZ, revision 52146

only define wxAuiFloatingFrameBaseClass as wxMiniFrame if wxUSE_MINIFRAME==1 (and do it under all platforms, why not?) (replaces part of patch 1892654)

2008-02-27 17:19 VZ, revision 52145

override SetDropTarget() in wxGrid to associate it with wxGridWindow as this is what things tend to be dropped on (patch 1903103)

2008-02-27 15:32 VS, revision 52144

forgot to add OnFocusChange to version-script.in in r52007

2008-02-27 15:08 VZ, revision 52143

forward WM_HELP from the buddy control to the main one in order to make context sensitive help work when the text part of wxSpinCtrl is clicked with "?" cursor

2008-02-27 14:49 VZ, revision 52142

don't hide the TLW being deleted unless there any other *visible* TLWs remaining (bug 1902632)

2008-02-27 08:58 JS, revision 52138

Added new symbols

2008-02-27 08:54 JS, revision 52137

Made wxRichTextCtrl cursors accessible

2008-02-27 08:54 JS, revision 52136

Made wxRichTextCtrl cursors accessible

2008-02-27 08:11 SC, revision 52135

applying patch 1873285

2008-02-27 07:55 SC, revision 52134

applying patch 1873285

2008-02-27 06:48 BP, revision 52133

More doxygen topic overview cleanup.

2008-02-27 04:40 BP, revision 52132

More doxygen topic overview cleanup.

2008-02-27 02:18 VZ, revision 52131

translate "Copy URL" string in the popup menu (feature request 1803958)

2008-02-27 02:01 VZ, revision 52130

no changes, just a couple of typo fixes in comments

2008-02-26 20:09 RR, revision 52129

restore wxComboBox's behaviour of reacting to <ENTER>

2008-02-26 18:37 BP, revision 52128

More doxygen overview cleanup.

2008-02-26 17:59 JS, revision 52127

Don't take the previous paragraph style when deleting paragraph marker

2008-02-26 17:59 JS, revision 52126

Don't take the previous paragraph style when deleting paragraph marker

2008-02-26 17:55 VZ, revision 52125

/Wp64 warnings fixes (mostly simply use wxUIntToPtr/wxPtrToUInt() instead of C casts)

2008-02-26 17:55 JS, revision 52124

Corrected GetFontAttributes

2008-02-26 17:42 VZ, revision 52123

fixes for MSVC compilation with /Wp64 (used by new _vc7 project files): define wxUIntPtr as size_t, not ulong; suppress warning about size_t to int conversion as there are simply too many of them to be fixed now

2008-02-26 17:17 VZ, revision 52122

check whether the grid is fully created in Refresh() (fixes a crash under Mac); refactored members initialization into a new InitVars() method to avoid duplication and ensure that they're always initialized (slightly modified patch 1901366)

2008-02-26 17:14 PC, revision 52121

initialize m_miniTitle, fix button press detection on caption area, remove support for obsolete wxTINY_CAPTION styles

2008-02-26 15:27 JS, revision 52120

Fixed [ 1775674 ] Invalid color in picker dialog

2008-02-26 15:27 JS, revision 52119

Fixed [ 1775674 ] Invalid color in picker dialog

2008-02-26 15:05 JS, revision 52118

Fixed [ 1720130 ] A minor 'bug' or 'annoyance' with header file.

2008-02-26 15:04 JS, revision 52117

Fixed [ 1720130 ] A minor 'bug' or 'annoyance' with header file.

2008-02-26 14:55 JS, revision 52116

Fixed bug [ 1714813 ] ApplyXXXToSelection remove style

2008-02-26 14:55 JS, revision 52115

Fixed bug [ 1714813 ] ApplyXXXToSelection remove style

2008-02-26 14:27 JS, revision 52114

Removed redundant Init call (bug 1724495)