1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
-- vim:sw=4:sts=4
-- This file specifies the menu structure of the generated, static
-- documentation pages.
--
-- Format of an entry: { "basename", "Title", { subentry1, ... } }
--
menu = {
{ "index", "Home" },
{ "examples", "Examples", {
{ "ex_request", "HTTP Request" },
{ "ex_pixmap", "Pixmap" },
{ "ex_iconview", "Iconview" },
{ "ex_weather", "Weather Update" },
{ "ex_raedic", "Dictionary Lookup" },
} },
{ "installation", "Installation" },
{ "reference", "Reference", {
{ "gnome", "Gnome functions" },
{ "call", "Function calls" },
{ "closure", "Closures" },
{ "objects", "Objects" },
{ "vararg", "Variable Argument List" },
{ "boxed", "Boxed Values" },
{ "voidptr", "Void Pointer Handling" },
{ "debug", "Debugging Tools" },
{ "migration", "Migration Guide to 1.0" },
{ "architecture", "Internal Architecture", {
{ "modularization", "Modularization" },
{ "hashtables", "Hash Tables" },
{ "datatypes", "Data Types" },
{ "constants", "Constants" },
{ "variables", "Variables in Gnome" },
} },
{ "pitfalls", "Pitfalls" },
{ "messages", "Message List", {
{ "messages-gnome", "Gnome" },
} },
} },
{ "docgen", "About this document", {
{ "docmenu", "Menu Definition" },
{ "docinput", "Input Files" },
} },
}
|