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

2014-08-23 03:08 VZ, revision 77440

Revert generic text dialog due wxQT merge changes * This solves the issues of the previos commit about the extern defaults wxGetTextFromUserPromptStr / wxGetTextFromUserPromptStr * Removed the now superflous textdlg.cpp that was used to define that defaults

2014-08-23 03:08 VZ, revision 77439

Remove wxQT textdlg (use generic) Note that textdlg.cpp was missing from the build (it only defines a couple of default text messages, needed for example by wxPython to avoid undefined symbol)

2014-08-23 03:08 VZ, revision 77438

Fix interface for grid renderers best height/width

2014-08-23 03:08 VZ, revision 77437

Fixed ctor and missing methods of task bar icon for wxQT (wxPython)

2014-08-23 03:08 VZ, revision 77436

Add window getter/setter for wxQT tooltip (wxPython)

2014-08-23 03:08 VZ, revision 77435

Unprotect CreateTool in wxQT toolbar (wxPython)

2014-08-23 03:08 VZ, revision 77434

Avoid ambiguity with wxControl::GetDefaultBorder in wxQT radiobox (wxPython)

2014-08-23 03:08 VZ, revision 77433

Add missing IsTDI method to MDI in wxQT (wxPython)

2014-08-23 03:08 VZ, revision 77432

Add mask to bitmap conversion for wxQT (wxPython)

2014-08-23 03:08 VZ, revision 77431

Add missing virtual stub to wxQT listctrl (for wxPython)

2014-08-23 03:08 VZ, revision 77430

Add generic drag image to wxQT (for wxPython)

2014-08-23 03:07 VZ, revision 77429

Add missing setter/getters to wxQT data format (for wxPython)

2014-08-23 03:07 VZ, revision 77428

Remove duplicate methods in wxRichTextImage interface (for wxPython)

2014-08-23 03:07 VZ, revision 77427

Add missing cursor constructors to wxQT (for wxPython)

2014-08-23 03:07 VZ, revision 77426

Add missing get pixel stub to wxQT colour (for wxPython)

2014-08-23 03:07 VZ, revision 77425

Add missing has alpha method to wxQT bitmap (for wxPython)

2014-08-23 03:07 VZ, revision 77424

Add missing ok method to wxQT accel table (for wxPython)

2014-08-23 03:07 VZ, revision 77423

Fix event loop compilation issues wxQT Android * Proper guard GetEventLoopSourcesManager * Implement wxAppTraits::GetEventLoopSourcesManager (not only wxGUIAppTraits) if console event loop is disabled * Remove unused apptbase.h in wxQT (it is using the unix version) * Minor fix to headings in android setup.h (BTW, is that file used at all?)

2014-08-23 03:07 VZ, revision 77422

Fix string conversion from Qt to use UTF8

2014-08-23 03:07 VZ, revision 77421

Fix checkbox deletion problem in wxQT WXValidateStyle was failing (assertion) so the constructor wasn't calling QtCreateControl properly to initialize internal m_qtWindow pointer. Then the checkbox Qt widget wasn't cleanly deleted. Also, removed the guard in the exec test that was causing a crash due the deletion problem, now all tests run without crashing.

2014-08-23 03:07 VZ, revision 77420

Merge master trunk into GSOC 2014 QT branch

2014-08-23 03:06 VZ, revision 77419

Guard fixed default configuration for Android with wxQT

2014-08-23 03:06 VZ, revision 77418

Provisional guard of wxLocale::GetInfo in wxQT (android) Android's lconv seems dummy (TODO: should investigate Java api)

2014-08-23 03:06 VZ, revision 77417

Use internal wx functions for mbstowcs & wcstrombs in wxQT (Android) Android ones seems to be buggy and not completely implemented (TODO: investigate Qt or Java string conversion functions)

2014-08-23 03:06 VZ, revision 77416

Add missing decl's for wscdup, wcslen, et al in wxQT (Android)

2014-08-23 03:06 VZ, revision 77415

Add missing guard for console app trait loop in wxQT

2014-08-23 03:06 VZ, revision 77414

Rename wxQtSpinCtrlBase to wxSpinCtrlQt for concistency (not a wxQt helper)

2014-08-23 03:06 VZ, revision 77413

Rename wxTopLevelWindowNative to wxTopLevelWindowQt for concistency with other ports

2014-08-23 03:06 VZ, revision 77412

Rename wxWindow to wxWindowQt for concistency with other ports

2014-08-23 03:06 VZ, revision 77411

Avoid assertion in Qt if key code cannot be converted

2014-08-23 03:06 VZ, revision 77410

Provisional patch to support nested event loops in wxQT Without the patch, the wxExecute (wxAppTraits::RunLoopUntilChildExit) loop.Run() don't process synchonics events (not entering the new loop), so it cannot process exit code and streams (causing a SIGSEGV crash). The problem is that QCoreApplication::exec() seems to not start a new loop, maybe it should create a real new loop with QEventLoop but then the inner loop don't seems to process events/signals for the outer one (app). Provisionaly, to get wxExecute working, it calls processEvents() on the main app loop until wxGUIEventLoop::ScheduleExit() is called, terminating the inner loop. This seems to work for the exec sample, but exec tests keep crashing, will investigate further.

2014-08-23 03:06 VZ, revision 77409

Clean up socket notifiers in wxQT even loop source

2014-08-23 03:06 VZ, revision 77408

Fix bitmap deselection in wxQT * Remove redundant pixmap pointer that can become stale * Handle correctly the selected bitmap and check if it's ok (not deleted) The solution is similar to wxGTK, but note that the intermediate QImage prevents to write to the bitmap (QPixmap) directly, so if the current bitmap is not deselected prior it is deleted, probably there will be drawing issues (that code don't follow the docs anyway, as Select(wxNullBitmap) is mandatory after doing anything with the bitmap data for wxMemoryDC).

2014-08-23 03:06 VZ, revision 77407

Guard Exec tests in wxQT by now to avoid crashes

2014-08-23 03:06 VZ, revision 77406

Implement Qt FDIO manager This fixes the test ImageTestCase::LoadFromSocketStream that was timing out and failing --HG-- rename : src/gtk/sockgtk.cpp => src/qt/sockqt.cpp

2014-08-23 03:06 VZ, revision 77405

Fix SIGSEGV in tests about display size utils wxQT

2014-08-23 03:06 VZ, revision 77404

Better fix for invalid reutilization of menubar in Qt

2014-08-23 03:06 VZ, revision 77403

Implement MDI support (QMdiArea et al) in wxQT

2014-08-23 03:06 VZ, revision 77402

Use the base class in QScrollArea methods (in preparation for MDI) wxQT

2014-08-23 03:06 VZ, revision 77401

Remove redundant m_qtMainWindow pointer for frames in wxQT

2014-08-23 03:06 VZ, revision 77400

Fix SIGSEGV due menubar replacement in wxQT

2014-08-23 03:05 VZ, revision 77399

correct implementation of previous reverted revert to allow the original intention

2014-08-23 03:05 VZ, revision 77398

Revert "Revert "Add Qt destruction signal debugging helper"" This reverts commit 1116da62653b44935b77098dd46be688c895dafa.

2014-08-23 03:05 VZ, revision 77397

free idle timer

2014-08-23 03:05 VZ, revision 77396

remove default case from switch statement

2014-08-23 03:05 VZ, revision 77395

Merge branch 'SOC2014_QT' of https://github.com/reingart/wxWidgets into SOC2014_QT Conflicts: src/qt/frame.cpp

2014-08-23 03:05 VZ, revision 77394

Fix menubar crash on removal (tentative) and minor scrollbar adjust

2014-08-23 03:05 VZ, revision 77393

Fix toolbar parenting properly to avoid crashes * Removed logic to search the parent by @seandepagnier, and implemented wxFrame::SetToolBar (including removal to NULL) * Added missing AddChild that was causing SIGSEGV due toolbar not being deleted when the parent was destroyed * Adapted the code to follow current wxQT coding patterns (unifying QtToolBar -> GetHandle) and minor styling issues (space after if)

2014-08-23 03:05 VZ, revision 77392

Fix toolbar tool deletion incorrect return value in wxQT This was causing an infinite loop in the related unit test

2014-08-23 03:05 VZ, revision 77391

Fix stale bitmap deselection in memmory DC causing SIGSEGV (wxQT) Seems that Qt can draw directly on a QPixmap but doesn't have get pixel / blit so it is using a QImage, that doesn't update the pixmap directly. To reproduce and analyze, see the wxSearchCtrl::RenderCancelBitmap, that is not destroying the DC after using the generated bitmap, and crashing then as the bitmap (hence QPixmap) may be destroyed first. If this is a common use case, it could be causing drawing issues everywhere, and the solution will not be simple as some logic will need to be moved to wxBitmap or DC, using temporary conversions to QImage back and forth for bits methods.

2014-08-23 03:05 VZ, revision 77390

Fix TLW parenting so children are deleted in proper order (wxQT) If not parented, top level window childrens (dialogs or other frames) left open will deleted sequentially, raising a segmentation fault due parent becoming stale a pointer (DeletePendingObjects CleanUp). Now, calling AddChild (because TLW is not calling wxWindow::Create) works. wxGTK also does this.

2014-08-23 03:05 VZ, revision 77389

move borderless style setup to wxFrame to allow wxSplashScreen to work

2014-08-23 03:05 VZ, revision 77388

correct rtti macros

2014-08-23 03:05 VZ, revision 77387

fix possible crash of generic widgets with set extra style

2014-08-23 03:05 VZ, revision 77386

implement several unimplemented routines

2014-08-23 03:05 VZ, revision 77385

Revert "Add Qt destruction signal debugging helper" This reverts commit b7ee2e855255cc3d39b7ee1b5e6246a1c164098a.

2014-08-23 03:05 VZ, revision 77384

remove WXUNUSED for now used parameters, fix compiler warning

2014-08-23 03:05 VZ, revision 77383

Add Qt destruction signal debugging helper

2014-08-23 03:05 VZ, revision 77382

Fix TLW destruction after user closes it (not done by Qt) Note that Qt don't destroy the main window on close by default (except Qt::WA_DeleteOnClose is set). So, if Dialogs could remain alive (hidden) if user closes the window and the program don't call explicitelly to Destroy() / delete. This was causing a segmentation fault as when the apps finishes, the Top Level Windows where destroyed in order (and then a child dialog was being destroyed after its parent). The issue was reproducible easily with the combo sample, if the "Compare Dialog" was open using the menu, as the code was not calling Destroy nor deleting it explicitelly/implicitelly.

2014-08-23 03:04 VZ, revision 77381

Fix wrong condition (copy pasting error) in text ctrl sel

2014-08-23 03:04 VZ, revision 77380

Implement cairo image surface for memory DC in wxQT As for wxWindowDC, it uses an image surface internally until cairo qt surface is implemented. This was causing a SIGSEGV in unit tests.

2014-08-23 03:04 VZ, revision 77379

Fix selection derived from text entry (text / combo) This was causing valgrind to report the uninitialized variables as the methods were not implemented (and they are not diferent for single, multiline and combobox in qt).

2014-08-23 03:04 VZ, revision 77378

Adapted OpenGL canvas to current wxQT coding patterns

2014-08-23 03:04 VZ, revision 77377

implement cursor support

2014-08-23 03:04 VZ, revision 77376

Revert marking unused parameters in wxQT used in wxGTK

2014-08-23 03:04 VZ, revision 77375

Merge master trunk into wxQT GSOC 2014 branch (third milestone)

2014-08-23 03:04 VZ, revision 77374

Avoid default in switches over enums (wxQT)

2014-08-23 03:04 VZ, revision 77373

Fixed warnings due no return value of non-void functions wxQT

2014-08-23 03:04 VZ, revision 77372

Avoid unused variables compiler warning in wxQT

2014-08-23 03:04 VZ, revision 77371

Removed *m_qtDialog no longer used (crashing date picker)

2014-08-23 03:04 VZ, revision 77370

Implemented system settings get metric for wxQT

2014-08-23 03:04 VZ, revision 77369

Move internal utilities to private & credits update --HG-- rename : include/wx/qt/converter.h => include/wx/qt/private/converter.h rename : include/wx/qt/utils.h => include/wx/qt/private/utils.h

2014-08-23 03:03 VZ, revision 77368

fully implement 3 state checkbox

2014-08-23 03:03 VZ, revision 77367

implement missing routines from wxBitmap Why do we need to reference count our QPixmaps when Qt is already?

2014-08-23 03:03 VZ, revision 77366

implement copy from icon

2014-08-23 03:03 VZ, revision 77365

logic corrections to prevent certain dialogs from crashing

2014-08-23 03:03 VZ, revision 77364

add FD monitoring support

2014-08-23 03:03 VZ, revision 77363

Correct dialog logic and dirdialog setup

2014-08-23 03:03 VZ, revision 77362

allow handler to work from constructors of classes like filedialog we should do this for all the classes

2014-08-23 03:03 VZ, revision 77361

More Dialogs (file, dir, color, font), adapted from work by @seandepagnier Merged manually from commits done by Sean, adapted to conform current wxQT conventions (GetHandle)

2014-08-23 03:03 VZ, revision 77360

Fix SIGSEGV in test due font picker expecting native info (wxWQT)

2014-08-23 03:03 VZ, revision 77359

Fix fault due division by zero in wxQT listctrl

2014-08-23 03:03 VZ, revision 77358

Fix issue converting lowecase key codes to Qt (uiactionsim)

2014-08-23 03:03 VZ, revision 77357

Implemented Wx -> Qt key conversion mapping (for uiactionsim)

2014-08-23 03:03 VZ, revision 77356

Moved qt keyboard function helpers to converter

2014-08-23 03:03 VZ, revision 77355

More sane item insertion in listctrl & reuse SetItem (wxQT)

2014-08-23 03:03 VZ, revision 77354

Implement image list for wxQT listctrl

2014-08-23 03:03 VZ, revision 77353

Avoid a lot of paining debug messages (will remove soon)

2014-08-23 03:03 VZ, revision 77352

Merge branch 'SOC2014_QT' of https://github.com/reingart/wxWidgets into test

2014-08-23 03:03 VZ, revision 77351

Fix background color assertion (remove dup code)

2014-08-23 03:03 VZ, revision 77350

Minor fix to opengl iosurf sample in wxQT

2014-08-23 03:02 VZ, revision 77349

Initial opengl support for wxQT by @seandepagnier

2014-08-23 03:02 VZ, revision 77348

Stub support for wxQT glcanvas by @seandepagnier

2014-08-23 03:02 VZ, revision 77347

Fix crash due invalid bitmap in QLabel

2014-08-23 03:02 VZ, revision 77346

Fix toolbar parent search logic (adapted from @seandepagnier)

2014-08-23 03:02 VZ, revision 77345

Enable on mouse enter event on toolbar button (also remove warning)

2014-08-23 03:02 VZ, revision 77344

Fix toolbar painting issues adding the wxQT helper

2014-08-23 03:02 VZ, revision 77343

Fix crash reverting some changes by @seandepagnier * Remove explicit deletion (that is done by the base destructor) * Remove unneeded dependency of QToolBar on QObject (no signal required)

2014-08-23 03:02 VZ, revision 77342

Implemented list item find (by string and data) in wxQT

2014-08-23 03:02 VZ, revision 77341

Implemented several minor auxiliar list ctrl methods * get selected item count * count per page (aproximate) * visible rect (aproximate) * item position * ensure visible (using scroll) * edit label (some glitches, maybe it should use editItem) * scroll dx / dy (aproximate) * hit test (only item and nowhere)