]> git.saurik.com Git - wxWidgets.git/blob - include/wx/private/stattext.h
remove unneeded #includes
[wxWidgets.git] / 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)
6 // RCS-ID: $Id$
7 // Copyright: (c) 1999 Vadim Zeitlin
8 // (c) 2007 wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_PRIVATE_STATTEXT_H_
13 #define _WX_PRIVATE_STATTEXT_H_
14
15 enum
16 {
17 wxMARKUP_ENTITY_AMP,
18 wxMARKUP_ENTITY_LT,
19 wxMARKUP_ENTITY_GT,
20 wxMARKUP_ENTITY_APOS,
21 wxMARKUP_ENTITY_QUOT,
22 wxMARKUP_ENTITY_MAX
23 };
24
25 enum
26 {
27 wxMARKUP_ELEMENT_NAME,
28 wxMARKUP_ELEMENT_VALUE,
29 wxMARKUP_ELEMENT_MAX
30 };
31
32 // these are the only entities treated in a special way by wxStaticText::SetLabel()
33 // when the wxST_MARKUP style is used; use as:
34 //
35 // wxMarkupEntities[wxMARKUP_ELEMENT_NAME][wxMARKUP_ENTITY_GT] == ">"
36 // wxMarkupEntities[wxMARKUP_ELEMENT_VALUE][wxMARKUP_ENTITY_GT] == ">"
37 //
38 extern const wxChar *const wxMarkupEntities[wxMARKUP_ELEMENT_MAX][wxMARKUP_ENTITY_MAX];
39
40 #endif // _WX_PRIVATE_STATTEXT_H_