wxWidgets/src/msw
2008-11-15 11:10:34 +00:00
..
ole replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
wince Fixed [ 1764805 ] wxSeek with negative offset fails on WinCE 2008-02-26 14:15:35 +00:00
aboutdlg.cpp indent app name + version from the rest in about dialog; use i18n-friendly way of creating strings 2008-03-12 20:47:52 +00:00
accel.cpp no changes, just removed commented out code accidentally checked in as part of r37393 2008-10-03 12:13:21 +00:00
app.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
artmsw.cpp wxArtProvider cleanup: added artmsw.cpp accidentally missing from r56372 2008-10-16 19:10:55 +00:00
basemsw.cpp include wx/crt.h needed for wxFprintf() (closes #9509) 2008-05-29 16:58:59 +00:00
bitmap.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
bmpbuttn.cpp clean up wxBitmapButton::Create(); override MSWGetStyle() (#4804) 2008-07-16 01:08:52 +00:00
bmpcbox.cpp native wxBitmapComboBox implementation for MSW (patch 1941399) 2008-05-17 22:43:00 +00:00
brush.cpp 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:08:51 +00:00
button.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
calctrl.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
caret.cpp Nuke #pragma implementation/interface's 2005-09-23 12:56:45 +00:00
checkbox.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
checklst.cpp added more includes of wx/msw/dc.h needed since r52054 for wxMSW compilation 2008-02-25 02:13:36 +00:00
choice.cpp restore the original selection when the dropdown is cancelled even if it was -1; this fixes the problem of #9995 and the existing code didn't deal correctly with the problem of losing current text in the combobox when the dropdown was cancelled anyhow 2008-09-24 13:33:06 +00:00
clipbrd.cpp 1. Moved m_usePrimary to wxClipboardBase as it's now also used by wxMSW/wxMac 2007-03-31 02:57:55 +00:00
colordlg.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
colour.cpp added wxColourBase::Init() and use DEFINE_STD_WXCOLOUR_CONSTRUCTORS() in all ports now (patch 1851600) 2007-12-22 15:03:58 +00:00
combo.cpp further wxPenStyle/wxBrushStyle fixes for builds with compat off (partially by Marcin Wojdyr) 2008-03-19 18:28:04 +00:00
combobox.cpp don't save the initial selection if it's invalid in CBN_DROPDOWN (refixes #8474 without breaking #9995) 2008-10-27 18:47:07 +00:00
control.cpp compilation fix for ASCII STL build (#9661) 2008-06-29 21:46:29 +00:00
crashrpt.cpp 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 13:28:05 +00:00
cursor.cpp provide backward-compat wxCursor(int) ctor; remove empty stubs of XBM ctor from all ports except gtk,motif; make all ports emit wxLogError on invalid bitmap types; implement wxCursor(const wxString&, ...) ctor on GTK (not tested yet) 2008-09-25 17:56:07 +00:00
data.cpp Nuke #pragma implementation/interface's 2005-09-23 12:56:45 +00:00
datecontrols.cpp include more headers for PCH-less compilation 2008-04-05 20:46:09 +00:00
datectrl.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
dc.cpp added wxDC::GetHDC() for backwards compatibility with the existing wxMSW code 2008-10-08 16:09:09 +00:00
dcclient.cpp initialize wx{Client,Paint,Window}DC with fonts/colours of its window 2008-06-21 17:17:00 +00:00
dcmemory.cpp Added new wxGraphicsContext:Create( wxPrinterDC ) instead of wxDC:CreateGraphicsContext 2008-04-28 20:39:57 +00:00
dcprint.cpp make GetPaperRect() and GetResolution() const functions 2008-11-15 11:10:34 +00:00
dcscreen.cpp DC reorganization 2007-11-30 13:48:22 +00:00
dde.cpp pass correct data size to DdeClientTransaction() in Unicode build 2008-02-10 23:27:00 +00:00
debughlp.cpp 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 12:55:26 +00:00
dialog.cpp fix spurious assert failure in DestroyGripper() which happened if the dialog hadn't been shown at all (#9824) 2008-08-16 10:53:02 +00:00
dialup.cpp Fixed bug in wxDialUpManagerMSW::GetISPNames - uses realloc() without checking for NULL, leading to a memory leak (Sebastian Gottschalk) 2008-03-14 14:18:15 +00:00
dib.cpp avoid unnecessary heap allocation of BITMAPINFO struct 2008-08-30 16:31:31 +00:00
dir.cpp [wx-dev] [ wxwindows-Bugs-1566309 ] wxDir::IsOpened() and wxDir::Open() always true 2008-05-14 09:27:48 +00:00
dirdlg.cpp first phase of transition to unified Unicode build: 2007-03-17 10:26:10 +00:00
display.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
dlmsw.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
dragimag.cpp further wxPenStyle/wxBrushStyle fixes for builds with compat off (partially by Marcin Wojdyr) 2008-03-19 18:28:04 +00:00
enhmeta.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
evtloop.cpp more socket cleanup to allow using wxSocket from both wxBase and wxCore (replaces patch 1756260) 2007-12-19 16:45:08 +00:00
fdrepdlg.cpp more changes to make wx compile without implicit wxString->char* conversion (for STL build) 2007-06-20 07:44:45 +00:00
filedlg.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
font.cpp build fixes 2008-11-03 18:24:05 +00:00
fontdlg.cpp Include wx/msw/wrap*.h according to pch support (with other minor cleaning). 2006-09-07 19:01:45 +00:00
fontenum.cpp 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 02:22:52 +00:00
fontutil.cpp PCH-less compilation fixes 2007-04-27 21:32:40 +00:00
frame.cpp a couple of more left over Borland unused variable/code warnings fixes 2008-10-20 10:52:17 +00:00
gauge.cpp rename fobr95.{cpp,h} files to foobar.{cpp,h} 2008-03-15 16:53:06 +00:00
gdiimage.cpp no need to iterate over all special icon names after a match was found, there won't be another one 2008-10-15 18:49:47 +00:00
gdiobj.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
gdiplus.cpp added wrapper functions allowing to postpone loading of GDI+ DLL until it's really needed 2007-03-15 03:43:33 +00:00
glcanvas.cpp recreate the window if FSAA is requested (changeset_r54022_Fix.patch from #9145) 2008-06-14 01:44:13 +00:00
graphics.cpp fix warnings about hiding virtual wxGraphicsContext::DrawText() overloads by using different names for the implementation functions 2008-11-13 12:16:39 +00:00
gsocket.cpp Fixed bug for chars with ASCII value > 127, explicitly casting to an unsigned char (Sebastian Gottschalk) 2008-03-14 14:17:28 +00:00
gsockmsw.cpp ensure that gsockmsw.obj is linked in, it was optimized away by MSVC linker resulting in socket manager not being initialized 2007-12-31 10:32:21 +00:00
helpbest.cpp allow specifying the style for wxHtmlHelpController used as fallback by wxBestHelpController (patch 1485669) 2006-05-28 23:07:02 +00:00
helpchm.cpp correct CallHtmlHelp() overload being called in Quit() 2008-04-12 02:24:18 +00:00
helpwin.cpp 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 02:22:52 +00:00
icon.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
imaglist.cpp DC reorganization 2007-11-30 13:48:22 +00:00
iniconf.cpp added wxUSE_INICONF (disabled by default) 2007-07-27 14:57:31 +00:00
joystick.cpp multiple fixes to wxJoystick under Unix and new index-based API for accessing joystick buttons and axes (patch 1678497) 2007-03-16 00:51:43 +00:00
listbox.cpp Defer SetHorizontalExtent to idle, also fixes (wxListBox::Delete ignores Freeze/Thaw and is verrrrry slow) 2008-05-25 20:54:30 +00:00
listctrl.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
main.cpp remove wxSETranslator() entirely from wxUSE_ON_FATAL_EXCEPTION==0 build (part of #9803) 2008-08-01 14:22:42 +00:00
mdi.cpp Review/simplify/cleanup MDI classes for all platforms and introduce base 2008-11-04 02:46:19 +00:00
mediactrl_am.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
mediactrl_qt.cpp fix more Borland release build warnings about unused variable/code without effect 2008-10-20 10:30:49 +00:00
mediactrl_wmp10.cpp use safer RemoveEventHandler() instead of PopEventHandler() (patch 1678016) 2007-03-16 00:43:32 +00:00
mediactrl.cpp Unicode compilation fix 2007-09-10 10:51:12 +00:00
menu.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
menuitem.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
metafile.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
microwin.c no changes, just removed TABs/trailing spaces 2007-03-07 22:56:34 +00:00
mimetype.cpp Take into account explorer associations and CurVer when finding the command to execute. 2008-02-27 18:07:30 +00:00
minifram.cpp add wxUSE_MINIFRAME wrapper 2007-10-21 18:07:29 +00:00
msgdlg.cpp STL build fix 2008-09-12 15:47:06 +00:00
mslu.cpp 1. made CRT wrappers definitions indepenent of wxUSE_UNICODE: both ANSI and Unicode variants are now defined 2007-06-10 17:14:14 +00:00
nativdlg.cpp 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:18:59 +00:00
nativewin.cpp call OnNativeDestroyed() if the native window is destroyed independently from us 2008-03-15 02:12:20 +00:00
notebook.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
notifmsg.cpp suppress unused parameter warning in release build 2008-04-21 01:44:45 +00:00
ownerdrw.cpp extract wrapper for SystemParametersInfo(SPI_GETNONCLIENTMETRICS) in a header so that it could be reused from elsewhere 2008-09-05 13:26:45 +00:00
palette.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
pen.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
penwin.cpp Include order is wxprec.h=>defs.h=>platform.h=>setup.h so remove explicit setup.h inclusion not touched by chckconf.h. 2006-01-26 16:50:23 +00:00
popupwin.cpp wx/wxprec.h already includes wx/defs.h (with other minor cleaning). 2006-04-18 09:56:17 +00:00
power.cpp Standard SDK fixes 2007-09-02 20:26:43 +00:00
printdlg.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
printwin.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
radiobox.cpp ensure that one of wxRA_SPECIFY_{COLS,ROWS} is set in the radiobox style, otherwise layout code doesn't work correctly and this can easily happen if the radiobox is created from an XRC file not specifying its style at all 2008-08-02 15:59:13 +00:00
radiobut.cpp don't use BS_AUTORADIOBUTTON at all, BS_RADIOBUTTON works just as well and doesn't hang the application in some circumstances (see #9786) 2008-07-29 23:19:34 +00:00
regconf.cpp added wxUSE_REGKEY checks 2007-08-22 14:49:41 +00:00
region.cpp Fix Ok/IsOk() mess in wxGDIObject-derived classes; also added 2007-12-15 17:54:20 +00:00
registry.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
renderer.cpp add wxRenderer::GetCheckBoxSize(); refactor wxGTK code to avoid duplication (#9642) 2008-08-02 21:51:22 +00:00
scrolbar.cpp 1. added wxEvtHandler::SafelyProcessEvent() and wxWindow::HandleWindowEvent() to correctly handle exceptions in even handlers in wxGTK 2007-11-29 17:00:58 +00:00
settings.cpp restore checks for SM_SWAPBUTTON, it is not defined in WinCE SDK 2008-02-24 22:59:07 +00:00
slider.cpp rename fobr95.{cpp,h} files to foobar.{cpp,h} 2008-03-15 16:53:06 +00:00
snglinst.cpp Use t_str() instead of c_str() 2008-07-04 14:05:16 +00:00
sound.cpp Nuke #pragma implementation/interface's 2005-09-23 12:56:45 +00:00
spinbutt.cpp 1. added wxEvtHandler::SafelyProcessEvent() and wxWindow::HandleWindowEvent() to correctly handle exceptions in even handlers in wxGTK 2007-11-29 17:00:58 +00:00
spinctrl.cpp really, really fix handling Enter in spin controls: only request it for the control if wxTE_PROCESS_ENTER is used to avoid breaking the use of Enter for the default item activation if it isn't; also document wxTE_PROCESS_ENTER style for wxSpinCtrl and add it to the sample 2008-09-14 19:50:30 +00:00
stackwalk.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
statbmp.cpp disable workaround for lack of alpha support in native static bitmap control for WinCE, apparently it breaks the display (#10093) 2008-10-27 18:15:19 +00:00
statbox.cpp don't blit too much when copying static box border in OnPaint() 2008-03-27 13:03:02 +00:00
statline.cpp Include wx/msw/wrap*.h according to pch support (with other minor cleaning). 2006-09-07 19:01:45 +00:00
stattext.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
statusbar.cpp add PostSizeEvent() and use it in wxMSW status bar code (#9795) 2008-07-29 23:07:24 +00:00
stdpaths.cpp allow to optionally use vendor name component in standard paths (slightly modified patch 1831308) 2007-11-17 14:59:13 +00:00
tabctrl.cpp compilation fix after wxWindowIDRef changes 2008-01-08 13:50:09 +00:00
taskbar.cpp add wxUSE_TASKBARICON_BALLOONS to make it possible to turn off their usage if our SDK is too old (mainly for VC6 with its original ancient SDK) 2007-12-08 20:51:21 +00:00
textctrl.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
textentry.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
tglbtn.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
thread.cpp Test for reentrance into non-recursive wxMutex. If it happens, yield dead lock error, don't hang 2008-09-08 08:00:03 +00:00
timer.cpp preparation for allowing to use wxTimer in wxBase (heavily modified patch 1113088): 2007-04-20 01:29:16 +00:00
toolbar.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
tooltip.cpp 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 02:22:52 +00:00
toplevel.cpp wxTLW: don't assert when setting null icons initially (#10138) 2008-10-31 10:06:19 +00:00
treectrl.cpp Next part of tree state icon patches 2008-06-24 12:48:01 +00:00
urlmsw.cpp implement wxWinINetInputStream::GetSize() (#9600) 2008-06-21 15:42:20 +00:00
utils.cpp replace wx_{const,static,reinterpret}_cast with their standard C++ equivalents 2008-11-02 02:39:52 +00:00
utilsexc.cpp 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 22:22:16 +00:00
utilsgui.cpp return int from wxGetWindowId(), not WORD, to ensure comparing it with wxWindowID elsewhere works correctly even for negative ids 2007-11-23 02:03:15 +00:00
uxtheme.cpp Include wx/module.h according to precompiled headers of wx/wx.h (with other minor cleaning). 2006-08-31 19:31:43 +00:00
version.rc updated copyright year to 2007 2007-10-07 19:49:09 +00:00
volume.cpp PCH-less compilation fix after last commit 2007-11-17 20:26:41 +00:00
window.cpp fix more Borland release build warnings about unused variable/code without effect 2008-10-20 10:30:49 +00:00
winestub.c Source cleaning: -1/wxID_ANY/wxDefaultCoord, ::, !!/!IsEmpty(), TRUE/true. FALSE/false, tabs, whitespaces. 2004-09-07 11:11:05 +00:00