2012-02-16 07:19:56 +00:00
|
|
|
|
|
|
|
FontChooser = {
|
2012-02-26 02:42:04 +00:00
|
|
|
-- font name for menu contents
|
2012-02-23 16:16:20 +00:00
|
|
|
cfont = "sans",
|
|
|
|
-- font name for title
|
|
|
|
tfont = "Helvetica-BoldOblique",
|
|
|
|
-- font name for footer
|
|
|
|
ffont = "sans",
|
2012-02-16 07:19:56 +00:00
|
|
|
|
|
|
|
-- state buffer
|
|
|
|
fonts = {"sans", "cjk", "mono",
|
|
|
|
"Courier", "Courier-Bold", "Courier-Oblique", "Courier-BoldOblique",
|
|
|
|
"Helvetica", "Helvetica-Oblique", "Helvetica-BoldOblique",
|
|
|
|
"Times-Roman", "Times-Bold", "Times-Italic", "Times-BoldItalic",},
|
|
|
|
}
|
|
|
|
|
|
|
|
function FontChooser:init()
|
2012-02-19 07:29:51 +00:00
|
|
|
clearglyphcache()
|
2012-02-16 07:19:56 +00:00
|
|
|
end
|
|
|
|
|