2008-12-30 |
Vadim Zeitlin | extract AddColumnsItems() from ShowColumnsMenu() to... |
tree | commitdiff |
2008-12-30 |
Vadim Zeitlin | handle exceptions thrown from overridden wxView::OnCrea... |
tree | commitdiff |
2008-12-30 |
Vadim Zeitlin | handle loss of connection explicitly in Read/Write... |
tree | commitdiff |
2008-12-30 |
Vadim Zeitlin | try reading/writing to/from the socket before blocking... |
tree | commitdiff |
2008-12-30 |
Vadim Zeitlin | fix handling of errors due to the other end of the... |
tree | commitdiff |
2008-12-30 |
Vadim Zeitlin | don't assert if MsgWaitForMultipleObjects() returns... |
tree | commitdiff |
2008-12-30 |
Vadim Zeitlin | don't assert if the socket has been closed since the... |
tree | commitdiff |
2008-12-30 |
Vadim Zeitlin | fix MSVC warning about possibly uninitialized variable... |
tree | commitdiff |
2008-12-30 |
Vadim Zeitlin | added wxSocket::ShutdownOutput() (closes #9229) |
tree | commitdiff |
2008-12-30 |
Vadim Zeitlin | remove wxSOCKET_MAX_EVENT, it is not really necessary... |
tree | commitdiff |
2008-12-30 |
Vadim Zeitlin | removed not doing anything and not compiling code from... |
tree | commitdiff |
2008-12-29 |
Francesco Montorsi | no real change; just reordered some implementations... |
tree | commitdiff |
2008-12-29 |
Jaakko Salli | Update editor control font centrally, in wxPropertyGrid... |
tree | commitdiff |
2008-12-29 |
Francesco Montorsi | add the HTML string of the selected item to wxSimpleHtm... |
tree | commitdiff |
2008-12-29 |
Vadim Zeitlin | add errno.h to fix Mac compilation |
tree | commitdiff |
2008-12-29 |
Francesco Montorsi | fix memory leak while testing for correct Clone() imple... |
tree | commitdiff |
2008-12-29 |
Francesco Montorsi | use a common m_isInsideYield flag instead of static... |
tree | commitdiff |
2008-12-29 |
Vadim Zeitlin | build fixes for wxUSE_IPV6==1 under Windows |
tree | commitdiff |
2008-12-29 |
Vadim Zeitlin | replaced unweildy GAddress functions with wxSockAddress... |
tree | commitdiff |
2008-12-29 |
Francesco Montorsi | PCH-less build fix |
tree | commitdiff |
2008-12-29 |
Francesco Montorsi | call SetLabel() in Create() in order to run markup... |
tree | commitdiff |
2008-12-29 |
Francesco Montorsi | use correct wxELLIPSIZE_* constants after r57625 |
tree | commitdiff |
2008-12-28 |
Francesco Montorsi | move Ellipsize() to wxControl so it can be easily used... |
tree | commitdiff |
2008-12-28 |
Francesco Montorsi | no real change: rename wxPendingEvents to wxHandlersWit... |
tree | commitdiff |
2008-12-28 |
Francesco Montorsi | refactor wxStaticText::Ellipsize so it's a static publi... |
tree | commitdiff |
2008-12-28 |
Vadim Zeitlin | implement DispatchTimeout() for wxOSX/Cocoa |
tree | commitdiff |
2008-12-28 |
Vadim Zeitlin | implement DispatchTimeout() for wxCocoa |
tree | commitdiff |
2008-12-28 |
Francesco Montorsi | no change, just add comment about wxTheColourDatabase... |
tree | commitdiff |
2008-12-28 |
Francesco Montorsi | restore tabg.h and tabg.cpp for wxMotif |
tree | commitdiff |
2008-12-28 |
Francesco Montorsi | restore tabg.cpp for wxMotif's wxNotebook implementation |
tree | commitdiff |
2008-12-28 |
Francesco Montorsi | fix wxPowerEvent, wxRichTextEvent and wxWizardEvent... |
tree | commitdiff |
2008-12-27 |
Vadim Zeitlin | move Read/Write() to common code, there was almost... |
tree | commitdiff |
2008-12-27 |
Vadim Zeitlin | wxSocketImpl::Shutdown() doesn't need to be virtual... |
tree | commitdiff |
2008-12-27 |
Vadim Zeitlin | don't remove/add back the socket to the list of inputs... |
tree | commitdiff |
2008-12-27 |
Vadim Zeitlin | remove the now unused Connect_Timeout() |
tree | commitdiff |
2008-12-27 |
Vadim Zeitlin | remove the badle defined and apparently unnecessary... |
tree | commitdiff |
2008-12-27 |
Vadim Zeitlin | compilation fix: use IsServer() instead of m_server... |
tree | commitdiff |
2008-12-27 |
Francesco Montorsi | (blind) fix for unneeded inclusions of headers |
tree | commitdiff |
2008-12-27 |
Francesco Montorsi | blind fix for wxMac (notebook headers shouldn't be... |
tree | commitdiff |
2008-12-27 |
Vadim Zeitlin | map EAGAIN to wxSOCKET_WOULDBLOCK too as tit has this... |
tree | commitdiff |
2008-12-27 |
Vadim Zeitlin | got rid of wxSocketBase::m_error which could get out... |
tree | commitdiff |
2008-12-27 |
Paul Cornett | don't assert (and then crash) in wxEvent::Clone() check... |
tree | commitdiff |
2008-12-27 |
Vadim Zeitlin | our sockets are always non-blocking anyhow so throw... |
tree | commitdiff |
2008-12-27 |
Francesco Montorsi | remove the long deprecated wxTabCtrl class |
tree | commitdiff |
2008-12-27 |
Francesco Montorsi | fix Purpose comment |
tree | commitdiff |
2008-12-27 |
Francesco Montorsi | fix wxTimerEvent and wxTreeCtrl to use IMPLEMENT_DYNAMI... |
tree | commitdiff |
2008-12-27 |
Francesco Montorsi | implement a runtime check to test if wxEvent::Clone... |
tree | commitdiff |
2008-12-27 |
Vadim Zeitlin | set m_closed to true when we get connection lost notifi... |
tree | commitdiff |
2008-12-27 |
Vadim Zeitlin | implement wxEventLoop::DispatchTimeout() for wxGTK... |
tree | commitdiff |
2008-12-27 |
Francesco Montorsi | use HasFlag(wxXX) instead of GetWindowStyle() & wxXX... |
tree | commitdiff |
2008-12-27 |
Vadim Zeitlin | also initialize option value length before calling... |
tree | commitdiff |
2008-12-27 |
Vadim Zeitlin | initialize name length before calling getsockname() |
tree | commitdiff |
2008-12-27 |
Vadim Zeitlin | move generic DispatchTimeout() implementation in the... |
tree | commitdiff |
2008-12-26 |
Vadim Zeitlin | PCH-less compilation fix |
tree | commitdiff |
2008-12-26 |
Vadim Zeitlin | use DispatchTimeout() and/or select() with timeout... |
tree | commitdiff |
2008-12-26 |
Vadim Zeitlin | added wxEventLoop::DispatchTimeout() |
tree | commitdiff |
2008-12-26 |
Vadim Zeitlin | return true if we did anything in NotifyExpired() |
tree | commitdiff |
2008-12-26 |
Vadim Zeitlin | remove m_use_events from Unix wxSocket implementation... |
tree | commitdiff |
2008-12-26 |
Jaakko Salli | Have wxPGTextCtrlEditor::UpdateControl() update wxTextC... |
tree | commitdiff |
2008-12-26 |
Vadim Zeitlin | we don't need to use select() in DoWait() if we're... |
tree | commitdiff |
2008-12-26 |
Vadim Zeitlin | remember the events we were notified about in OnRequest... |
tree | commitdiff |
2008-12-26 |
Vadim Zeitlin | correct typo in one of the last changes |
tree | commitdiff |
2008-12-25 |
Robert Roebling | Only test for centre flag of minor direction and ignore... |
tree | commitdiff |
2008-12-25 |
Robert Roebling | Avoid redraw artifacts from the border after resizing |
tree | commitdiff |
2008-12-25 |
Vadim Zeitlin | use INVALID_SOCKET instead of -1 to avoid signed/unsign... |
tree | commitdiff |
2008-12-25 |
Vadim Zeitlin | refactor Input/Output_Timeout: don't duplicate the... |
tree | commitdiff |
2008-12-25 |
Vadim Zeitlin | remove the ugly INSTANCE macro |
tree | commitdiff |
2008-12-25 |
Vadim Zeitlin | more wxSocket code wx-ification: use wxDynamicLibrary... |
tree | commitdiff |
2008-12-25 |
Vadim Zeitlin | remove USE_SYS_TYPES_FD_SET definition which is already... |
tree | commitdiff |
2008-12-25 |
Vadim Zeitlin | use wxCriticalSection instead of CRITICAL_SECTION and... |
tree | commitdiff |
2008-12-25 |
Vadim Zeitlin | merge msw/gsocket.cpp into msw/sockmsw.cpp |
tree | commitdiff |
2008-12-25 |
Vadim Zeitlin | rename gsockmsw files to sockmsw |
tree | commitdiff |
2008-12-25 |
Vadim Zeitlin | use void pointers, not char ones, in socket IO functions |
tree | commitdiff |
2008-12-25 |
Vadim Zeitlin | fix wxURL::GetInputStream() for URLs with special chara... |
tree | commitdiff |
2008-12-25 |
Vadim Zeitlin | don't use the client data for storing wxOwnerDrawn... |
tree | commitdiff |
2008-12-25 |
Vadim Zeitlin | make colours used by list and tree controls more consis... |
tree | commitdiff |
2008-12-25 |
Vadim Zeitlin | unhide the second wxTextAreaBase::HitTest() overload... |
tree | commitdiff |
2008-12-25 |
Vadim Zeitlin | fix/suppress warning about hiding base class Load(wxURI... |
tree | commitdiff |
2008-12-25 |
Vadim Zeitlin | don't use deprecated OnScroll() |
tree | commitdiff |
2008-12-24 |
Vadim Zeitlin | handle correctly never/always shown scrollbars in GetCl... |
tree | commitdiff |
2008-12-24 |
Vadim Zeitlin | allow passing -1 range to SetScrollbar() to indicate... |
tree | commitdiff |
2008-12-24 |
Vadim Zeitlin | further untangle generic and native GTK implementations... |
tree | commitdiff |
2008-12-24 |
Vadim Zeitlin | provide generic implementation for ShowScrollbars(... |
tree | commitdiff |
2008-12-24 |
Vadim Zeitlin | add wxScrollHelper::ShowScrollbars() (implemented for... |
tree | commitdiff |
2008-12-24 |
Robert Roebling | Mark alpha a static data (not to be freed), too |
tree | commitdiff |
2008-12-24 |
Vadim Zeitlin | add convenient GetViewStart() and Scroll() overloads... |
tree | commitdiff |
2008-12-24 |
Paul Cornett | fix saving/restoring size when WM supports _NET_FRAME_E... |
tree | commitdiff |
2008-12-24 |
Vadim Zeitlin | correct the direction of the comparison between the... |
tree | commitdiff |
2008-12-24 |
Vadim Zeitlin | also call AddGrowableRow/Col() for wxGridBagSizer |
tree | commitdiff |
2008-12-23 |
Vadim Zeitlin | call wxFlexGridSizer::AddGrowableRow/Col() only after... |
tree | commitdiff |
2008-12-23 |
Robert Roebling | Don't allow concurrent requests, check return message... |
tree | commitdiff |
2008-12-23 |
Jaakko Salli | Fixed crash when expanding/collapsing categories too... |
tree | commitdiff |
2008-12-23 |
Jaakko Salli | Fixed a VC6 warning (hopefully) |
tree | commitdiff |
2008-12-23 |
Vadim Zeitlin | don't use \u escapes, VC6 doesn't understand them |
tree | commitdiff |
2008-12-23 |
Vadim Zeitlin | set correct properties for the new files |
tree | commitdiff |
2008-12-23 |
Robert Roebling | Add wxDataViewCtrl::ExpandAncestors() and call it from... |
tree | commitdiff |
2008-12-23 |
Robert Roebling | Added pseudo-asynchronous clipboard implemenation to... |
tree | commitdiff |
2008-12-23 |
Vadim Zeitlin | verify that we don't have more items than our number... |
tree | commitdiff |
2008-12-22 |
Vadim Zeitlin | split wxEVT_GRID_CELL_CHANGE into wxEVT_GRID_CELL_CHANG... |
tree | commitdiff |
2008-12-22 |
Vadim Zeitlin | use CanSetValueAs() instead of CanGetValueAs() in wxGri... |
tree | commitdiff |
next |