wxWidgets/include/wx/motif
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
..
private
accel.h Put storage class outside WXDLLIMPEXP_DATA_CORE() macros. 2011-02-22 13:25:51 +00:00
app.h
bmpbuttn.h
bmpmotif.h
button.h
checkbox.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
checklst.h
chkconf.h
choice.h
clipbrd.h
colour.h Do not put semicolons after the definition of an inline function. 2011-12-29 14:42:13 +00:00
combobox.h Do not put semicolons after the definition of an inline function. 2011-12-29 14:42:13 +00:00
control.h
ctrlsub.h
cursor.h
dataform.h
dataobj2.h
dataobj.h
dc.h
dcclient.h use const arrays for wxDC array parameters, closes #10712 2013-01-18 17:27:51 +00:00
dcmemory.h
dcprint.h
dcscreen.h
dialog.h
dnd.h Do not put semicolons after the definition of an inline function. 2011-12-29 14:42:13 +00:00
filedlg.h
font.h Add wxFontInfo class to allow using named parameters for wxFont creation. 2013-04-30 10:27:38 +00:00
frame.h
gauge.h
icon.h
listbox.h
menu.h
menuitem.h
minifram.h Replace wxTINY_CAPTION_{HORIZ,VERT} with a single wxTINY_CAPTION. 2010-05-10 21:09:57 +00:00
msgdlg.h
popupwin.h
print.h
private.h
radiobox.h
radiobut.h
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
setup0.h Add wxUSE_COMPILER_TLS to allow disabling compiler TLS support. 2012-06-17 21:34:47 +00:00
slider.h
spinbutt.h Do not put semicolons after the definition of an inline function. 2011-12-29 14:42:13 +00:00
statbmp.h
statbox.h
stattext.h
textctrl.h
textentry.h
tglbtn.h Provide shorter synonyms for wxEVT_XXX constants. 2013-04-25 10:11:03 +00:00
toolbar.h Make wxToolBar styles consistent and add wxTB_DEFAULT_STYLE. 2013-03-31 01:12:27 +00:00
toplevel.h
window.h move default OnInternalIdle processing to wxWindowBase 2011-01-07 18:15:21 +00:00