]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/private/stattext.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/private/stattext.h
3 // Purpose: Internal declarations for dlgcmn.cpp and stattextcmn.cpp
4 // Author: Francesco Montorsi
5 // Created: 2007-01-07 (extracted from dlgcmn.cpp)
7 // Copyright: (c) 1999 Vadim Zeitlin
8 // (c) 2007 wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PRIVATE_STATTEXT_H_
13 #define _WX_PRIVATE_STATTEXT_H_
27 wxMARKUP_ELEMENT_NAME
,
28 wxMARKUP_ELEMENT_VALUE
,
32 // these are the only entities treated in a special way by wxStaticText::SetLabel()
33 // when the wxST_MARKUP style is used; use as:
35 // wxMarkupEntities[wxMARKUP_ELEMENT_NAME][wxMARKUP_ENTITY_GT] == ">"
36 // wxMarkupEntities[wxMARKUP_ELEMENT_VALUE][wxMARKUP_ENTITY_GT] == ">"
38 extern const wxChar
*const wxMarkupEntities
[wxMARKUP_ELEMENT_MAX
][wxMARKUP_ENTITY_MAX
];
40 #endif // _WX_PRIVATE_STATTEXT_H_