wxWidgets/include/wx
Vadim Zeitlin b960795ea8 Add wxFontInfo class to allow using named parameters for wxFont creation.
This helper class allows to create wxFonts using shorter and more readable
code, e.g.

	wxFont font(12, wxFONTFLAG_DEFAULT,
		    wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL, true,
		    "DejaVu Sans");

can now be written simply as

	wxFont font(wxFontInfo(12).FaceName("DejaVu Sans").Underlined());

Remove the ctor from font flags added in r70445 as it's not needed any longer
now that we have this one and adding it resulted in compilation errors in the
existing code which compiled with 2.8 because of ambiguities between that ctor
and wxFont(int size, int family, int style, int weight. bool underlined, ...)
one, e.g.

	wxFont(12, wxFONTFAMILY_SWISS, wxNORMAL, wxNORMAL)

didn't compile any more but it does compile again now.

See #9907.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73885 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2013-04-30 10:27:38 +00:00
..
android Remove support for MetroWerks CodeWarrior compiler. 2012-04-05 18:40:11 +00:00
aui Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
cocoa Add wxFontInfo class to allow using named parameters for wxFont creation. 2013-04-30 10:27:38 +00:00
dfb Add wxFontInfo class to allow using named parameters for wxFont creation. 2013-04-30 10:27:38 +00:00
generic Really fix the problem with caret in wxGrid text editor under MSW. 2013-04-28 18:25:42 +00:00
gtk Add wxFontInfo class to allow using named parameters for wxFont creation. 2013-04-30 10:27:38 +00:00
gtk1 Add wxFontInfo class to allow using named parameters for wxFont creation. 2013-04-30 10:27:38 +00:00
html Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
meta Disable wxEvtHandler::CallAfter() for VC6, it's too broken for it. 2012-10-24 00:17:15 +00:00
motif Add wxFontInfo class to allow using named parameters for wxFont creation. 2013-04-30 10:27:38 +00:00
msdos
msw Add wxFontInfo class to allow using named parameters for wxFont creation. 2013-04-30 10:27:38 +00:00
os2 Add wxFontInfo class to allow using named parameters for wxFont creation. 2013-04-30 10:27:38 +00:00
osx Add wxFontInfo class to allow using named parameters for wxFont creation. 2013-04-30 10:27:38 +00:00
persist Fix return value of wxPersistentSplitter::RestoreValue(). 2011-10-30 10:08:14 +00:00
private Add wxSocketBase::GetSocket(). 2013-04-22 10:45:30 +00:00
propgrid Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
protocol Add SetPostBuffer(wxMemoryBuffer) and SetPostText() to wxHTTP. 2012-01-20 12:22:25 +00:00
ribbon Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
richtext Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
stc Also account for EOL chars correctly in wxStyledTextCtrl::GetLineLength(). 2012-12-08 13:27:55 +00:00
univ Revert all wxNOEXCEPT-related changes. 2012-11-20 12:49:03 +00:00
unix Don't call setlocale("") on startup by default any longer. 2012-11-14 13:46:50 +00:00
x11 Add wxFontInfo class to allow using named parameters for wxFont creation. 2013-04-30 10:27:38 +00:00
xml Add support for elements preceding the document node in wxXML. 2011-03-30 14:16:19 +00:00
xrc Add accessors for some of the data members in wxXmlResourceHandler 2012-12-19 19:27:29 +00:00
aboutdlg.h Replaced Ok() occurrences with IsOk() throughout trunk. 2011-05-03 16:29:04 +00:00
accel.h Added wxAcceleratorEntry::ToRawString(). 2012-04-16 12:12:19 +00:00
access.h
affinematrix2d.h Several fixes for wxAffineMatrix2D transformations. 2012-05-25 09:48:09 +00:00
affinematrix2dbase.h no code changes, fixed some typos 2012-01-09 14:04:25 +00:00
afterstd.h Use wx/msw/winundef.h for wxGTK under Windows too. 2012-06-20 17:54:53 +00:00
anidecod.h Added GIF and animated GIF saving support. 2011-01-19 12:28:31 +00:00
animate.h
animdecod.h
any.h Add wxGCC_WARNING_{SUPPRESS,RESTORE} macros and use them for -Wfloat-equal. 2012-12-28 00:44:01 +00:00
anybutton.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
anystr.h
app.h Don't call setlocale("") on startup by default any longer. 2012-11-14 13:46:50 +00:00
apptrait.h Don't call setlocale("") on startup by default any longer. 2012-11-14 13:46:50 +00:00
archive.h supporting clang 2.0 under xcode, see #12332 2011-01-27 11:00:26 +00:00
arrimpl.cpp silence warnings about shadowed variables with GCC -Wshadow 2012-10-04 15:55:06 +00:00
arrstr.h No real changes, just spelling fixes to comments. Closes #15030. 2013-02-27 12:05:17 +00:00
artprov.h Move "static" keyword out from wxDEPRECATED() macros to placate icc. 2011-02-19 12:32:59 +00:00
atomic.h Use __WINDOWS__ for OS checks and __WXMSW__ for GUI checks (round 2). 2012-03-04 20:31:42 +00:00
bannerwindow.h Extend wxBannerWindow background bitmap if necessary. 2011-11-28 18:58:52 +00:00
base64.h
beforestd.h Fix file paths in the header comments. 2010-07-13 13:29:58 +00:00
bitmap.h Add wxBITMAP_PNG() macro similar to wxBITMAP() but for PNG images. 2012-09-13 17:15:25 +00:00
bmpbuttn.h Extract "Close" button creation from wxInfoBarGeneric into new function. 2012-09-13 17:14:14 +00:00
bmpcbox.h
bookctrl.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
brush.h Added internal wxHatchStyle enum. 2012-06-30 23:41:15 +00:00
buffer.h No changes, just silence some MSVC 11 static analyzer warnings. 2012-09-15 23:20:23 +00:00
build.h Add wxUSE_STD_CONTAINERS and turn it on by default. 2011-03-30 14:16:04 +00:00
busyinfo.h
button.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
calctrl.h Replaced Ok() occurrences with IsOk() throughout trunk. 2011-05-03 16:29:04 +00:00
caret.h Fixed various typos. 2011-03-22 14:17:38 +00:00
chartype.h Remove support for MetroWerks CodeWarrior compiler. 2012-04-05 18:40:11 +00:00
checkbox.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
checkeddelete.h Avoid using "do { ... } while ( wxFalse )" pseudo-loop. 2012-12-02 23:48:36 +00:00
checklst.h Add wxCheckListBox::GetCheckedItems() helper. 2013-01-21 11:18:55 +00:00
chkconf.h Allow building wxGTK under Windows with MSVC. 2012-12-28 16:03:03 +00:00
choicdlg.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
choice.h Refactor and simplify wxChoice::DoGetBestSize(). 2012-11-01 17:15:28 +00:00
choicebk.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
clipbrd.h Remove wxMGL port. 2012-01-15 14:46:41 +00:00
clntdata.h
clrpicker.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
cmdargs.h
cmdline.h Added convenient wxCmdLineParser::AddLong{Option,Switch}() wrappers. 2011-11-22 13:18:58 +00:00
cmdproc.h Don't compare invalid iterators in wxCommandProcessor::IsDirty(). 2012-01-25 00:05:09 +00:00
cmndata.h Use wxPageSetupDialogData instead of old wxPageSetupData everywhere. 2012-02-20 21:55:55 +00:00
collpane.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
colordlg.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
colour.h Add a more convenient wxColour::MakeDisabled() overload. 2012-10-04 23:23:18 +00:00
colourdata.h Move wxColourData and wxFontData into separate files. 2011-01-07 05:26:57 +00:00
combo.h Implement wxComboCtrl::GetSizeFromTextSize(). 2012-11-14 13:48:23 +00:00
combobox.h Include <wx/textctrl.h> from <wx/combobox.h> for compatibility. 2012-03-25 17:55:42 +00:00
commandlinkbutton.h Don't use native MSW wxCommandLinkButton in wxUniversal. 2010-08-18 22:48:48 +00:00
compositewin.h Allow using wxCompositeWindow<T> as wxDataViewCtrl inline editor. 2011-10-19 16:20:01 +00:00
confbase.h No changes, just fix some typos in comments. 2012-07-20 11:55:18 +00:00
config.h Use __WINDOWS__ for OS checks and __WXMSW__ for GUI checks (round 2). 2012-03-04 20:31:42 +00:00
containr.h Set wxTAB_TRAVERSAL for wxNavigationEnabled<> windows with focusable children. 2012-10-13 22:52:12 +00:00
control.h Add wxControl::GetSizeFromTextSize() to size the control to its text. 2012-11-09 21:11:37 +00:00
convauto.h Add wxConvAuto::GetBOMChars() helper. 2011-11-05 11:23:41 +00:00
cpp.h Avoid using "do { ... } while ( wxFalse )" pseudo-loop. 2012-12-02 23:48:36 +00:00
cppunit.h updates for OpenVMS 2011-09-30 14:00:52 +00:00
crt.h
cshelp.h
ctrlsub.h Add wxControlWithItems::SendSelectionChangedEvent() helper. 2012-12-02 23:48:59 +00:00
cursor.h Use bitmaps from resources by default in wxGTK under Windows. 2012-06-30 16:33:23 +00:00
custombgwin.h Add virtual dtor to wxCustomBackgroundWindowBase. 2011-12-04 23:57:36 +00:00
dataobj.h A patch adding wxHTMLDataObject which can be used for handling the standard platform formats for transfering HTML formatted text. 2012-05-30 19:21:42 +00:00
dataview.h Fix wxEVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK event type name. 2013-04-25 11:56:55 +00:00
datectrl.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
dateevt.h Add wxTimePickerCtrl class. 2011-09-29 13:43:15 +00:00
datetime.h Make wxDateTime invalid after Set((time_t)-1) call. 2012-10-24 14:02:30 +00:00
datetimectrl.h Provide native implementation of wx{Date,Time}PickerCtrl for wxOSX/Cocoa. 2011-12-20 21:27:14 +00:00
datstrm.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
dc.h use const arrays for wxDC array parameters, closes #10712 2013-01-18 17:27:51 +00:00
dcbuffer.h Keep track of the area intended to be buffered, and use that in UnMask instead of defaulting to the buffer size. Only clip to the DC size if wxBUFFER_VIRTUAL_AREA is not set. This fixes the issue where buffering the full virtual area in a wxScrolledWindow would only draw an area the physical size of the window. Fixes #11612. 2012-06-08 19:26:19 +00:00
dcclient.h
dcgraph.h use const arrays for wxDC array parameters, closes #10712 2013-01-18 17:27:51 +00:00
dcmemory.h
dcmirror.h use const arrays for wxDC array parameters, closes #10712 2013-01-18 17:27:51 +00:00
dcprint.h
dcps.h
dcscreen.h
dcsvg.h use const arrays for wxDC array parameters, closes #10712 2013-01-18 17:27:51 +00:00
dde.h Use __WINDOWS__ for OS checks and __WXMSW__ for GUI checks (round 2). 2012-03-04 20:31:42 +00:00
debug.h Remove extra "#" operator in wxFAIL_COND_MSG macro. 2012-12-28 16:01:59 +00:00
debugrpt.h
defs.h Add support for wxICON_AUTH_NEEDED to wxMessageDialog. 2013-04-29 12:54:08 +00:00
dialog.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
dialup.h No code changes, fixed various typos. 2011-04-03 20:31:32 +00:00
dir.h Add wxDIR_NO_FOLLOW flag for wxDir iteration. 2012-10-23 23:57:32 +00:00
dirctrl.h
dirdlg.h Remove wxMGL port. 2012-01-15 14:46:41 +00:00
display_impl.h
display.h
dlimpexp.h Define WXDLLIMPEXP_FWD_RIBBON for consistency with all the other libraries. 2012-10-23 13:51:06 +00:00
dlist.h Add wxUSE_STD_CONTAINERS and turn it on by default. 2011-03-30 14:16:04 +00:00
dnd.h No real changes, just spelling fixes to comments. Closes #15030. 2013-02-27 12:05:17 +00:00
docmdi.h
docview.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
dragimag.h
dvrenderers.h Add possibility to set item background in generic wxDataViewCtrl. 2011-12-19 12:54:38 +00:00
dynarray.h Fix wxArray::Index() with bFromEnd=true in STL build. 2011-11-05 15:20:32 +00:00
dynlib.h Support Unicode module names in wxDynamicLibrary::MSWGetModuleHandle(). 2013-04-08 14:15:31 +00:00
dynload.h Fix bug with unloading wxPluginLibrary objects in "wrong" order. 2012-05-26 12:29:54 +00:00
editlbox.h Keep item data in sync with their position in wxEditableListBox. 2012-11-06 23:56:44 +00:00
effects.h
encconv.h More s/loose/lose/ in wxEncodingConverter comments. 2012-09-18 22:45:38 +00:00
encinfo.h Remove wxMGL port. 2012-01-15 14:46:41 +00:00
event.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
eventfilter.h no code changes, fixed some typos 2012-01-09 14:04:25 +00:00
evtloop.h Extract OS X non-GUI event loop in a separate header. 2012-07-24 20:45:43 +00:00
evtloopsrc.h Use __DARWIN__ instead of __WXOSX__ in non-GUI code. 2012-07-23 15:03:42 +00:00
except.h Don't redefine wxNO_EXCEPTIONS in wx/except.h if it's already defined. 2010-07-17 11:55:10 +00:00
fdrepdlg.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
features.h Allow using wxEvtHandler::Bind() with IBM xlC compiler v7+. 2011-12-08 15:58:45 +00:00
ffile.h
file.h Added wxFile::ReadAll() for consistency with wxFFile::ReadAll(). 2012-09-30 22:28:08 +00:00
fileconf.h
filectrl.h
filedlg.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
filefn.h Remove support for MetroWerks CodeWarrior compiler. 2012-04-05 18:40:11 +00:00
filehistory.h Fix speed regression in wxFileHistory::AddFileToHistory(). 2012-02-03 17:27:13 +00:00
filename.h No real changes, just use wxString::clear() instead of assignment. 2013-03-09 15:08:40 +00:00
filepicker.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
filesys.h Add wxFSInputStream providing stream interface to wxFileSystem. 2012-04-16 13:53:49 +00:00
flags.h merging back XTI branch part 2 2011-01-04 08:31:53 +00:00
fmappriv.h
font.h Add wxFontInfo class to allow using named parameters for wxFont creation. 2013-04-30 10:27:38 +00:00
fontdata.h Move wxColourData and wxFontData into separate files. 2011-01-07 05:26:57 +00:00
fontdlg.h Remove empty and unnecessary wxFontDialogBase destructor. 2012-03-20 23:31:25 +00:00
fontenc.h Add support for CP1258 (Vietnamese) and CP1361 (Korean Johab) encodings. 2012-06-01 11:01:46 +00:00
fontenum.h
fontmap.h
fontpicker.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
fontutil.h Handle underlined and strikethrough attributes in wxGTK native font info. 2012-09-15 23:17:12 +00:00
frame.h Use idle time menu updating when using global menu bar in wxGTK. 2012-11-25 00:15:49 +00:00
fs_arc.h
fs_filter.h
fs_inet.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
fs_mem.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
fs_zip.h
fswatcher.h No real changes, just spelling fixes to comments. Closes #15030. 2013-02-27 12:05:17 +00:00
gauge.h Fixed various typos. 2011-03-22 14:17:38 +00:00
gbsizer.h Fix assert when constructing invalid wxGBSpan inside wxWidgets itself. 2013-03-27 23:10:25 +00:00
gdicmn.h Add wxBITMAP_PNG() macro similar to wxBITMAP() but for PNG images. 2012-09-13 17:15:25 +00:00
gdiobj.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
geometry.h Make wxRect2D::Get{Position,Size}() const. 2012-08-03 12:50:03 +00:00
gifdecod.h
glcanvas.h Do not put semicolons after the definition of an inline function. 2011-12-29 14:42:13 +00:00
graphics.h Make wxGraphicsContext::GetSize() const. 2012-08-03 13:05:11 +00:00
grid.h
hash.h Add wxUSE_STD_CONTAINERS and turn it on by default. 2011-03-30 14:16:04 +00:00
hashmap.h Use float instead of double division in wxHashMap code. 2012-06-01 11:01:34 +00:00
hashset.h A better fix for wxHash{Map,Set} with g++ 4.7. 2012-08-06 11:06:45 +00:00
headercol.h Remove wxHeaderColumn::SetAsSortKey() and only use SetSortOrder(). 2011-09-21 15:07:46 +00:00
headerctrl.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
help.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
helpbase.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
helphtml.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
helpwin.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
htmllbox.h Get rid of ugly wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST macro. 2011-07-30 11:30:08 +00:00
hyperlink.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
icon.h Use bitmaps from resources by default in wxGTK under Windows. 2012-06-30 16:33:23 +00:00
iconbndl.h Fix setting frame icon when using non-standard icon sizes in wxMSW. 2012-01-24 22:17:47 +00:00
iconloc.h Use __WINDOWS__ for OS checks and __WXMSW__ for GUI checks (round 2). 2012-03-04 20:31:42 +00:00
imagbmp.h
image.h Replace wxT() with wxS() in image options definitions. 2011-11-14 13:35:52 +00:00
imaggif.h Changed the procedure for writing a comment to a GIF image. 2011-01-28 07:27:34 +00:00
imagiff.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
imagjpeg.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
imaglist.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
imagpcx.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
imagpng.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
imagpnm.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
imagtga.h
imagtiff.h Added option to TIFF handler for specifying the photometric interpretation. 2011-08-19 03:47:40 +00:00
imagxpm.h
infobar.h
init.h Define wxEntry() with WinMain-compatible signature for all Windows ports. 2012-06-30 16:33:28 +00:00
intl.h Use __WINDOWS__ for OS kind checks and reserve __WXMSW__ for GUI toolkit. 2012-03-04 00:29:31 +00:00
iosfwrap.h Use __WINDOWS__ for OS kind checks and reserve __WXMSW__ for GUI toolkit. 2012-03-04 00:29:31 +00:00
ioswrap.h Use __WINDOWS__ for OS kind checks and reserve __WXMSW__ for GUI toolkit. 2012-03-04 00:29:31 +00:00
ipc.h Use __WINDOWS__ for OS kind checks and reserve __WXMSW__ for GUI toolkit. 2012-03-04 00:29:31 +00:00
ipcbase.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
itemid.h Add new wxTreeListCtrl class. 2011-08-27 14:11:03 +00:00
joystick.h Use __WINDOWS__ for OS checks and __WXMSW__ for GUI checks (round 2). 2012-03-04 20:31:42 +00:00
kbdstate.h Revert HasModifiers() change in behaviour, add HasAnyModifiers(). 2012-07-29 22:08:09 +00:00
language.h
layout.h
laywin.h
link.h
list.h Add wxList::AsVector<>() helper. 2012-11-24 17:36:44 +00:00
listbase.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
listbook.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
listbox.h Don't send SELECTED events for an already selected item in wxGTK wxListBox. 2010-10-27 23:21:55 +00:00
listctrl.h Use __WINDOWS__ for OS checks and __WXMSW__ for GUI checks (round 2). 2012-03-04 20:31:42 +00:00
listimpl.cpp Fix link errors with VC 11 in DLL STL build. 2012-11-10 00:53:42 +00:00
log.h Fix wxVLogStatus definition. 2012-09-01 22:38:40 +00:00
longlong.h Silence Clang warning about numeric_limits<> specialization. 2011-07-31 13:25:33 +00:00
math.h Add wxGCC_WARNING_{SUPPRESS,RESTORE} macros and use them for -Wfloat-equal. 2012-12-28 00:44:01 +00:00
matrix.h
mdi.h Fix showing MDI child from wxDocManager::ActivateDocument(). 2012-03-04 00:29:03 +00:00
mediactrl.h No real changes, just spelling fixes to comments. Closes #15030. 2013-02-27 12:05:17 +00:00
memconf.h
memory.h Remove support for MetroWerks CodeWarrior compiler. 2012-04-05 18:40:11 +00:00
memtext.h
menu.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
menuitem.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
metafile.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
mimetype.h No code changes, fixed various typos. 2011-04-03 20:31:32 +00:00
minifram.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
module.h
mousemanager.h
mousestate.h fix tests for WXWIN_COMPATIBILITY_2_8, closes #13800 2011-12-23 05:59:59 +00:00
msgdlg.h Add support for wxICON_AUTH_NEEDED to wxMessageDialog. 2013-04-29 12:54:08 +00:00
msgout.h
msgqueue.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
mstream.h
nativewin.h Fix wxNativeContainerWindowId definition for wxGTK/Windows port. 2012-07-10 23:52:14 +00:00
nonownedwnd.h Override InheritAttributes() to do nothing in wxNonOwnedWindow. 2012-03-05 13:00:57 +00:00
notebook.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
notifmsg.h Implement wxNotificationMessage using libnotify in wxGTK. 2012-07-27 15:36:54 +00:00
numdlg.h
numformatter.h Add support for long long to wxNumberFormatter. 2011-01-19 10:47:57 +00:00
object.h Remove support for MetroWerks CodeWarrior compiler. 2012-04-05 18:40:11 +00:00
odcombo.h Implement wxComboCtrl::GetSizeFromTextSize(). 2012-11-14 13:48:23 +00:00
overlay.h
ownerdrw.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
palette.h Remove wxMGL port. 2012-01-15 14:46:41 +00:00
panel.h Move SetBackgroundBitmap() from wxPanel to new wxCustomBackgroundWindow. 2011-10-11 17:07:43 +00:00
paper.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
pen.h Added internal wxHatchStyle enum. 2012-06-30 23:41:15 +00:00
persist.h Allow customization of the locations where persistent settings are stored. 2011-10-30 10:08:18 +00:00
pickerbase.h Add missing interface items for Phoenix 2012-04-12 05:33:29 +00:00
platform.h Allow building wxGTK under Windows with MSVC. 2012-12-28 16:03:03 +00:00
platinfo.h Remove wxMGL port. 2012-01-15 14:46:41 +00:00
popupwin.h Remove wxMGL port. 2012-01-15 14:46:41 +00:00
position.h Fix file paths in the header comments. 2010-07-13 13:29:58 +00:00
power.h Use __WINDOWS__ for OS kind checks and reserve __WXMSW__ for GUI toolkit. 2012-03-04 00:29:31 +00:00
preferences.h Compilation fix for wxPreferencesPage. 2013-02-28 16:53:41 +00:00
print.h
printdlg.h
prntbase.h Show progress of printing in wxMSW. 2012-08-09 15:52:15 +00:00
process.h Add wxProcess::SetPriority() to allow setting the priority of child processes. 2013-01-20 02:10:12 +00:00
progdlg.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
propdlg.h
ptr_scpd.h
ptr_shrd.h
quantize.h
radiobox.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
radiobut.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
range.h adding range type 2011-01-07 17:42:39 +00:00
rawbmp.h Do not put semicolons after the definition of an inline function. 2011-12-29 14:42:13 +00:00
rearrangectrl.h
recguard.h
regex.h
region.h Remove wxMGL port. 2012-01-15 14:46:41 +00:00
renderer.h Add wxRenderer::GetHeaderButtonMargin(). 2010-10-30 15:57:32 +00:00
richmsgdlg.h Do not put semicolons after the definition of an inline function. 2011-12-29 14:42:13 +00:00
richtooltip.h Make wxRect parameter of wxRichToolTip::ShowFor() const. 2013-03-02 12:11:32 +00:00
rtti.h Make wxDECLARE_CLASS synonym of wxDECLARE_ABSTRACT_CLASS. 2011-06-07 13:06:17 +00:00
sashwin.h
sckaddr.h
sckipc.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
sckstrm.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
scopedarray.h Fix fatal bug with deleting the old contents in wxScopedArray::reset(). 2011-12-24 15:43:14 +00:00
scopedptr.h
scopeguard.h Don't rely on RVO in wxON_BLOCK_EXIT_SET(). 2011-04-24 13:14:47 +00:00
scrolbar.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
scrolwin.h Account for scrolling when setting the background brush origin in wxMSW. 2013-02-10 16:14:03 +00:00
selstore.h
settings.h Added wxSYS_COLOUR_LISTBOXHIGHLIGHTTEXT to fix tree and list control selection rendering. 2011-02-25 09:38:35 +00:00
setup_inc.h Add wxUSE_COMPILER_TLS to allow disabling compiler TLS support. 2012-06-17 21:34:47 +00:00
setup_redirect.h
sharedptr.h Set svn properties on various files throughout the repository (skipped docs/ ). 2011-03-18 15:10:15 +00:00
simplebook.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
sizer.h Fix display of empty wxStaticBoxSizers. 2013-03-27 23:10:15 +00:00
slider.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
snglinst.h
socket.h Add wxSocketBase::GetSocket(). 2013-04-22 10:45:30 +00:00
sound.h Use __WINDOWS__ for OS kind checks and reserve __WXMSW__ for GUI toolkit. 2012-03-04 00:29:31 +00:00
spinbutt.h adding range type 2011-01-07 17:42:39 +00:00
spinctrl.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
splash.h
splitter.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
srchctrl.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
sstream.h Fix wxStringOutputStream in wxUSE_UNICODE_UTF8 build. 2011-06-16 16:22:15 +00:00
stack.h Add wxUSE_STD_CONTAINERS and turn it on by default. 2011-03-30 14:16:04 +00:00
stackwalk.h Use __WINDOWS__ for OS kind checks and reserve __WXMSW__ for GUI toolkit. 2012-03-04 00:29:31 +00:00
statbmp.h Fixed various typos. 2011-03-22 14:17:38 +00:00
statbox.h Allow using windows that can't be focused with wxNavigationEnabled<>. 2012-10-13 22:51:50 +00:00
statline.h Fixed various typos. 2011-03-22 14:17:38 +00:00
stattext.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
statusbr.h Use flat generic status bar by default and add wxSB_SUNKEN. 2013-03-21 22:36:52 +00:00
stdpaths.h Use __WINDOWS__ for OS kind checks and reserve __WXMSW__ for GUI toolkit. 2012-03-04 00:29:31 +00:00
stdstream.h Revert all wxNOEXCEPT-related changes. 2012-11-20 12:49:03 +00:00
stockitem.h No real changes, just spelling fixes to comments. Closes #15030. 2013-02-27 12:05:17 +00:00
stopwatch.h No changes, just move time functions from wx/stopwatch.h to wx/time.h. 2011-11-27 19:50:27 +00:00
strconv.h Remove Palm OS port. 2012-01-15 01:05:28 +00:00
stream.h Added wxWrapperInputStream class. 2012-04-16 13:53:45 +00:00
string.h Remove support for MetroWerks CodeWarrior compiler. 2012-04-05 18:40:11 +00:00
stringimpl.h Add wxUSE_STD_CONTAINERS and turn it on by default. 2011-03-30 14:16:04 +00:00
stringops.h
strvararg.h Avoid using "do { ... } while ( wxFalse )" pseudo-loop. 2012-12-02 23:48:36 +00:00
sysopt.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
tarstrm.h
taskbar.h silence warning about wxOSX_USE_COCOA not being defined 2012-04-20 15:34:24 +00:00
tbarbase.h Make wxToolBar styles consistent and add wxTB_DEFAULT_STYLE. 2013-03-31 01:12:27 +00:00
testing.h Bracket vararg macro definition with wxHAS_VARIADIC_MACROS. 2012-11-26 15:50:37 +00:00
textbuf.h No changes, just fix some typos in the comments in the headers. 2012-09-17 11:07:30 +00:00
textcompleter.h Refactor: extract wxTextCompleterFixed from wxMSW to a header. 2011-04-17 23:14:11 +00:00
textctrl.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
textdlg.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
textentry.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
textfile.h
textwrapper.h Create wxStaticText with correct label directly in wxTextSizerWrapper. 2012-01-22 00:58:05 +00:00
tglbtn.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
thread.h Rename WXTHREAD_XXX_PRIORITY yo wxPRIORITY_XXX. 2013-01-20 02:10:07 +00:00
thrimpl.cpp Use __WINDOWS__ for OS kind checks and reserve __WXMSW__ for GUI toolkit. 2012-03-04 00:29:31 +00:00
time.h No changes, just moved wxLocaltime_r() and wxGmtime_r() to wx/time.h. 2011-11-27 20:28:43 +00:00
timectrl.h Added wxTimePickerCtrl::GetTime() and SetTime(). 2012-03-25 23:17:01 +00:00
timer.h
tipdlg.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
tipwin.h
tls.h Add wxUSE_COMPILER_TLS to allow disabling compiler TLS support. 2012-06-17 21:34:47 +00:00
tokenzr.h
toolbar.h Make wxToolBar styles consistent and add wxTB_DEFAULT_STYLE. 2013-03-31 01:12:27 +00:00
toolbook.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
tooltip.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
toplevel.h Move menu messages handling from wxFrame to wxTLW in wxMSW. 2013-02-24 13:48:13 +00:00
tracker.h
translation.h Add wxTranslations::GetBestTranslation(). 2012-09-08 08:58:38 +00:00
treebase.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
treebook.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
treectrl.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
treelist.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
txtstrm.h Add wxText{Input,Output}Stream::Get{Input,Output}Stream() methods. 2011-03-22 17:15:45 +00:00
typeinfo.h To work around harmless memory leaks reported by Visual C++ static runtime libs, assume that C++ typeid operator works well with VC++ 9.0 and later (fixes #12023) 2011-01-23 10:13:49 +00:00
types.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
uiaction.h Add support for digits and +/- sign to wxUIActionSimulator::Text(). 2011-11-15 15:56:55 +00:00
unichar.h Fix comparisons of char and wchar_t with wxUniChar[Ref]. 2012-07-31 16:49:36 +00:00
uri.h
url.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
ustring.h fix GCC warning about not explicitly initializing base class 2011-01-08 17:33:51 +00:00
utils.h Fix link errors with VC 11 in DLL STL build. 2012-11-10 00:53:42 +00:00
valgen.h Support float, double and file name values in wxGenericValidator. 2011-07-09 23:37:28 +00:00
validate.h silence GCC warning "base class ‘class wxEvtHandler’ should be explicitly initialized in the copy constructor" 2013-01-20 03:24:21 +00:00
valnum.h calling explicit base class constructor from copy constructor 2011-03-16 10:55:30 +00:00
valtext.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
variant.h Use (newly) added wxStaticCastVariantData() to fix wxNO_RTTI build. 2012-07-30 19:16:30 +00:00
variantbase.h set eol-style and keywords properties on new files 2011-01-05 06:56:36 +00:00
vector.h declare wxQsort in vector.h as well as utils.h to work around circular header dependency mess 2012-11-29 07:53:21 +00:00
version.h Increase version to 2.9.5. 2012-07-10 23:51:44 +00:00
versioninfo.h Fix various missing or broken stuff needed for Project Phoenix 2010-12-27 20:47:12 +00:00
vidmode.h
vlbox.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
vms_x_fix.h
volume.h
vscroll.h Avoid a problem in Phoenix by making UpdateMacScrollWindow not be pure virtual. 2011-12-22 01:26:11 +00:00
weakref.h fixes #14318 2012-05-19 06:33:28 +00:00
webview.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
webviewarchivehandler.h Rename all WEB_VIEW* style identifiers to WEBVIEW*. 2013-02-01 09:38:53 +00:00
webviewfshandler.h Rename all WEB_VIEW* style identifiers to WEBVIEW*. 2013-02-01 09:38:53 +00:00
wfstream.h Add GetFile() accessor to wxFileStream classes. 2013-03-09 15:08:44 +00:00
window.h Remove wxTextCtrl::OnEnabled() hack from wxGTK. 2013-03-31 01:12:21 +00:00
windowid.h
withimages.h Add missing wx/icon.h header to fix wxGTK compilation. 2011-08-21 14:52:16 +00:00
wizard.h Added chainable wxWizardPageSimple::Chain() overload. 2013-04-10 12:12:57 +00:00
wrapsizer.h
wupdlock.h
wx.h Move wxColourData and wxFontData into separate files. 2011-01-07 05:26:57 +00:00
wxchar.h
wxcrt.h Fix compilation with g++ 4.7 (prerelease). 2011-08-08 08:33:19 +00:00
wxcrtbase.h Fix compilation with MinGW -std=c++11 option. 2013-03-09 15:08:17 +00:00
wxcrtvararg.h Remove support for MetroWerks CodeWarrior compiler. 2012-04-05 18:40:11 +00:00
wxhtml.h No changes, synchronised source names that appear commented at the top of files with the actual path to the files. 2011-03-20 00:14:35 +00:00
wxprec.h Allow building wxGTK under Windows with MSVC. 2012-12-28 16:03:03 +00:00
xlocale.h
xpmdecod.h
xpmhand.h
xti2.h fixing c++11 build 2012-05-18 11:09:07 +00:00
xti.h gcc 4.3 issues warning if type attributes are given again - even if they are identical - therefore comment them out 2012-01-19 09:00:29 +00:00
xtictor.h xti changes 2011-01-07 17:43:12 +00:00
xtihandler.h Use wxCLASSINFO() instead of deprecated CLASSINFO(). 2012-06-01 11:01:24 +00:00
xtiprop.h Use wxCLASSINFO() instead of deprecated CLASSINFO(). 2012-06-01 11:01:24 +00:00
xtistrm.h gcc 4.3 issues warning if type attributes are given again - even if they are identical - therefore comment them out 2012-01-19 09:00:29 +00:00
xtitypes.h fixing c++11 build 2012-05-18 10:35:08 +00:00
xtixml.h gcc 4.3 issues warning if type attributes are given again - even if they are identical - therefore comment them out 2012-01-19 09:45:49 +00:00
zipstrm.h
zstream.h Add wxVersionInfo and functions returning it for 3rd party libraries. 2010-11-25 00:53:44 +00:00