+
+/**
+ These are the header and footer page identifiers, passed to functions such
+ as wxRichTextHeaderFooterData::SetFooterText to specify the odd or even page
+ for the text.
+*/
+enum wxRichTextOddEvenPage {
+ wxRICHTEXT_PAGE_ODD,
+ wxRICHTEXT_PAGE_EVEN,
+ wxRICHTEXT_PAGE_ALL,
+};
+
+
+/**
+ These are the location identifiers for passing to functions such as
+ wxRichTextHeaderFooterData::SetFooterText(), to specify whether the text
+ is on the left, centre or right of the page.
+*/
+enum wxRichTextPageLocation {
+ wxRICHTEXT_PAGE_LEFT,
+ wxRICHTEXT_PAGE_CENTRE,
+ wxRICHTEXT_PAGE_RIGHT
+};
+
+