]>
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_
15 #include "wx/window.h"
29 wxMARKUP_ELEMENT_NAME
,
30 wxMARKUP_ELEMENT_VALUE
,
34 // these are the only entities treated in a special way by wxStaticText::SetLabel()
35 // when the wxST_MARKUP style is used; use as:
37 // wxMarkupEntities[wxMARKUP_ELEMENT_NAME][wxMARKUP_ENTITY_GT] == ">"
38 // wxMarkupEntities[wxMARKUP_ELEMENT_VALUE][wxMARKUP_ENTITY_GT] == ">"
40 extern const wxChar
*wxMarkupEntities
[wxMARKUP_ELEMENT_MAX
][wxMARKUP_ENTITY_MAX
];
42 #endif // _WX_PRIVATE_STATTEXT_H_