diff options
Diffstat (limited to 'gbdk/docs/config/github-markdown-theme')
| -rw-r--r-- | gbdk/docs/config/github-markdown-theme/LICENSE | 21 | ||||
| -rw-r--r-- | gbdk/docs/config/github-markdown-theme/README.md | 11 | ||||
| -rw-r--r-- | gbdk/docs/config/github-markdown-theme/doxygen_extra.css | 472 | ||||
| -rw-r--r-- | gbdk/docs/config/github-markdown-theme/doxygen_footer.html | 10 | ||||
| -rw-r--r-- | gbdk/docs/config/github-markdown-theme/doxygen_header.html | 58 | ||||
| -rw-r--r-- | gbdk/docs/config/github-markdown-theme/doxygen_layout.xml | 194 | ||||
| -rw-r--r-- | gbdk/docs/config/github-markdown-theme/tip.png | bin | 0 -> 1045 bytes | |||
| -rw-r--r-- | gbdk/docs/config/github-markdown-theme/tip.svg | 149 | ||||
| -rw-r--r-- | gbdk/docs/config/github-markdown-theme/warn.png | bin | 0 -> 773 bytes | |||
| -rw-r--r-- | gbdk/docs/config/github-markdown-theme/warn.svg | 105 |
10 files changed, 1020 insertions, 0 deletions
diff --git a/gbdk/docs/config/github-markdown-theme/LICENSE b/gbdk/docs/config/github-markdown-theme/LICENSE new file mode 100644 index 00000000..ff5d5a4b --- /dev/null +++ b/gbdk/docs/config/github-markdown-theme/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Pieter Conradie <https://piconomix.com> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/gbdk/docs/config/github-markdown-theme/README.md b/gbdk/docs/config/github-markdown-theme/README.md new file mode 100644 index 00000000..0d70ad60 --- /dev/null +++ b/gbdk/docs/config/github-markdown-theme/README.md @@ -0,0 +1,11 @@ +Doxygen theme to style HTML output similar to Github Markdown +============================================================= + +This is a quick and dirty hack so that the Doxygen HTML output resembles Github +Markdown pages with a tree view navigator on the left. I am an HTML and CSS +novice and any fixes or improvements are most welcome! + +Click [HERE](https://piconomix.com/fwlib/index.html) to view an example using +this Doxygen CSS theme. + +Enjoy! diff --git a/gbdk/docs/config/github-markdown-theme/doxygen_extra.css b/gbdk/docs/config/github-markdown-theme/doxygen_extra.css new file mode 100644 index 00000000..08d9369e --- /dev/null +++ b/gbdk/docs/config/github-markdown-theme/doxygen_extra.css @@ -0,0 +1,472 @@ +/*
+ * GitHub Markdown style CSS for doxygen 1.8.14
+ * Source: https://github.com/sindresorhus/github-markdown-css
+ * License: MIT © Sindre Sorhus
+ * + bbbbbr
+ */
+
+* {
+ box-sizing: border-box;
+}
+
+body, table, div, p, dl {
+ -ms-text-size-adjust: 100%;
+ -webkit-text-size-adjust: 100%;
+ line-height: 1.5;
+ color: #24292e;
+ font-family: Arial, Helvetica, sans-serif;
+ /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; */
+ font-size: 16px;
+ line-height: 1.5;
+ word-wrap: break-word;
+}
+
+b {
+ font-weight: 600;
+}
+
+/* @group Heading Levels */
+
+h1, h2, h3, h4, h5, h6 {
+ font-weight: 600;
+ line-height: 1.25;
+ margin-top: 24px;
+ margin-bottom: 16px;
+}
+
+h1 {
+ font-size: 2em;
+ padding-bottom: 0.3em;
+ border-bottom: 1px solid #eaecef;
+}
+
+h2 {
+ padding-bottom: 0.3em;
+ font-size: 1.5em;
+ border-bottom: 1px solid #eaecef;
+}
+
+h3 {
+ font-size: 1.25em;
+}
+
+h4 {
+ font-size: 1em;
+}
+
+h5 {
+ font-size: 0.875em;
+}
+
+h6 {
+ font-size: 0.85em;
+ color: #6a737d;
+}
+
+a {
+ background-color: transparent;
+ color: #0366d6;
+ text-decoration: none;
+ font-weight: normal;
+}
+
+.contents a:visited {
+ color: #0366d6;
+}
+
+a:active, a:hover {
+ outline-width: 0;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+a:not([href]) {
+ color: inherit;
+ text-decoration: none;
+}
+
+a.el {
+ font-weight: normal;
+}
+
+.image {
+ text-align: left;
+}
+
+.tip {
+ background-image: url(tip.png);
+ background-position: left center;
+ background-repeat: no-repeat;
+ padding-left: 30px;
+ margin-top: 1em;
+ margin-bottom: 1em;
+ min-height: 31px;
+ display: block;
+ font-style:italic;
+}
+
+.warn {
+ background-image: url(warn.png);
+ background-position: left center;
+ background-repeat: no-repeat;
+ padding-left: 48px;
+ margin-top: 1em;
+ margin-bottom: 1em;
+ min-height: 31px;
+ display: block;
+ font-style:italic;
+}
+
+#projectname
+{
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
+ font-size: 2em;
+ font-weight: bold;
+}
+
+#projectbrief
+{
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
+ font-size: 0.8em;
+}
+
+#projectnumber
+{
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
+ font-size: 1em;
+}
+
+div.contents {
+ /* width: 980px; */ /* Don't hardwire width, make it friendly to all devices)
+ /* padding: 40px; */
+ padding: 30px;
+ margin-top: -1px;
+ margin-left: auto;
+ margin-right: auto;
+ margin-bottom: 10px;
+ border: 1px solid #d1d5da;
+ border-radius: 2px;
+}
+
+div.toc {
+ border: 0px none;
+ border-radius: 7px 7px 7px 7px;
+}
+
+div.header
+{
+ width: 980px;
+ padding: 10px;
+ margin-top: 10px;
+ margin-left: auto;
+ margin-right: auto;
+ background-image: none;
+ background-repeat: none;
+ background-color: #f6f8fa;
+ border: 1px solid #d1d5da;
+}
+
+div.headertitle
+{
+ padding: 0px;
+}
+
+.title ol {
+ margin: 0px;
+}
+
+.title ol li {
+ list-style-type: none;
+}
+
+.ui-resizable .ui-resizable-handle {
+}
+
+.ui-resizable-e {
+ background: none;
+ background-color: #E6E6E6;
+}
+
+.ui-resizable-handle {
+}
+
+div.fragment {
+ padding: 16px;
+ background-color: #f3f3f3;
+ border: 0px solid;
+}
+
+div.line {
+ font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
+ font-size: 85%;
+ line-height: 1.45;
+ -webkit-transition-duration: 0;
+ -moz-transition-duration: 0;
+ -ms-transition-duration: 0;
+ -o-transition-duration: 0;
+ transition-duration: 0;
+}
+
+div.line.glow {
+ background-color: auto;
+ box-shadow: none;
+}
+
+pre.fragment {
+ border: 0px solid #C4CFE5;
+ padding: 16px;
+ background-color: #f3f3f3;
+ font-size: 85%;
+ line-height: 1.45;
+ font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
+ font-size: 85%;
+}
+
+/* @group Code Colorization */
+span.keyword {
+ color: #808000
+}
+
+span.keywordtype {
+ color: #808000
+}
+
+span.keywordflow {
+ color: #808000
+}
+
+span.comment {
+ color: #008000
+}
+
+span.preprocessor {
+ color: #800000
+}
+
+span.stringliteral {
+ color: #000080
+}
+
+span.charliteral {
+ color: #000080
+}
+
+blockquote {
+ background-color: #EEEEEE;
+ border-left: 2px solid #606060;
+ margin: 0 24px 0 4px;
+ padding: 0 12px 0 16px;
+}
+
+/* @end */
+
+.arrow {
+ box-sizing: content-box;
+}
+
+img {
+ max-width: 100%;
+ max-height: 100%;
+}
+
+#nav-tree {
+ background-image: none;
+}
+
+#nav-tree .label {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
+ font-size: 14px;
+}
+
+#side-nav {
+ width: 25%;
+ max-width: 50%;
+}
+
+.memtitle {
+ background-image: none;
+}
+
+.memproto {
+ text-shadow: none;
+ /* opera specific markup */
+ box-shadow: none;
+ /* firefox specific markup */
+ -moz-box-shadow: none;
+ -moz-border-radius-topright: 4px;
+ /* webkit specific markup */
+ -webkit-box-shadow: none;
+ -webkit-border-top-right-radius: 4px;
+}
+
+.memdoc {
+ background-image:none;
+ background-repeat:repeat-x;
+ background-color: #FFFFFF;
+ /* opera specific markup */
+ box-shadow: none;
+ /* firefox specific markup */
+ -moz-box-shadow: none;
+ /* webkit specific markup */
+ -webkit-box-shadow: none;
+}
+
+
+/* *** GBDK 2020 Docs modifications *** */
+
+/* A bunch of overrides from the main and other style sheets */
+
+
+/* Top Title Area */
+#titlearea {
+ background-color: rgb(36, 41, 46) !important;
+ border-bottom:none !important;
+}
+
+/* Top Menu */
+#projectalign > div {
+ color: rgb(255, 255, 255) !important;
+ font-weight:normal !important;
+ font-family: Arial, Helvetica, sans-serif !important;
+}
+
+.sm-dox {
+ background-image: none !important;
+ background-color: #fafbfc !important;
+ border-bottom:1px rgb(209, 213, 218) solid !important;
+}
+
+
+.sm-dox a {
+ background-image: none !important;
+ background-color: #fafbfc !important;
+ color: rgb(36, 41, 46) !important;
+ font-size: 14px !important;
+ font-weight:normal !important;
+ font-family: Arial, Helvetica, sans-serif !important;
+ text-shadow:none !important;
+}
+
+
+/* Member Info boxes */
+.memtitle {
+ background-color: #f1f8ff !important;
+ border-color:#c8e1ff !important;
+}
+
+.memproto {
+ background-color: #f1f8ff !important;
+ border-color:#c8e1ff !important;
+}
+
+.memdoc {
+ border:1px rgb(209, 213, 218) solid !important;
+ background-color: #fafbfc !important;
+}
+
+/* Navigation Tree */
+#nav-tree-contents .selected {
+ background: rgb(217, 232, 242) !important;
+ text-shadow:none !important;
+}
+
+#nav-tree-contents a {
+ color: rgb(58, 64, 70) !important;
+ font-size: 14px !important;
+ font-weight:normal !important;
+ font-family: Arial, Helvetica, sans-serif !important;
+}
+
+/* Member note label */
+.mlabel {
+ border:1px rgb(209, 213, 218) solid !important;
+ background-color: #fafbfc !important;
+ color: green !important;
+ font-size: 14px !important;
+}
+
+
+/* Search Results IFrame */
+/* Contents of IFrame need to be styled using a different CSS file */
+#MSearchResultsWindow {
+ padding: 2px;
+ border: 1px rgb(123, 126, 130) solid !important;
+ background-color: #fafbfc !important;
+ box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
+ top:44px !important;
+}
+
+
+/* Move Search box up */
+#MSearchBox {
+ width: 250px !important;
+ height: 30px !important;
+ margin-top: 0px !important;
+ font-size:14px !important;
+ position: absolute;
+ top: -42px;
+ /* background-color: rgba(255, 255, 255, 0.125); */
+ background-color: #404448 !important;
+ border-radius: 6px;
+ margin-right:20px !important;
+}
+
+/* Hide search icon */
+#MSearchSelect {
+ opacity:0.0 !important;
+ filter: grayscale(1.0);
+ background-image:unset !important;
+ border:2px red solid !important;
+ background:red !important;
+}
+/* And override it with a hamburger menu character */
+#MSearchBox span.left::after {
+ font-weight:bold !important;
+ color:rgb(255,255,255,0.75) !important;
+ font-size:15px !important;
+ content:"\2630";
+}
+
+/* Center it's text */
+#MSearchBox span.left {
+ margin-top:4px;
+ background:unset !important;
+}
+
+/* Increase font size */
+#MSearchField {
+ font-size:16px !important;
+ background:unset !important;
+ height:unset !important;
+ width:unset !important;
+}
+/* Change text color when it's being typed in */
+.MSearchBoxActive #MSearchField {
+ color:rgb(255,255,255,0.75) !important;
+}
+
+/* Hide right-column border image */
+/* And replace X image with a Cross character */
+#MSearchBox span.right {
+ top:5px !important;
+ background:unset !important;
+}
+#MSearchClose {
+ opacity:0.0;
+}
+#MSearchBox span.right::after {
+ font-weight:bold !important;
+ color:rgb(255,255,255,0.30) !important;
+ font-size:15px !important;
+ content:"\2715";
+}
+
+/* Add styling for the <code> tag so it stands out better */
+code {
+ background-color: #def4fd;
+ border-radius: 4px;
+ padding-left: 3px;
+ padding-right: 3px;
+}
diff --git a/gbdk/docs/config/github-markdown-theme/doxygen_footer.html b/gbdk/docs/config/github-markdown-theme/doxygen_footer.html new file mode 100644 index 00000000..a2d3127c --- /dev/null +++ b/gbdk/docs/config/github-markdown-theme/doxygen_footer.html @@ -0,0 +1,10 @@ +<!-- HTML footer for doxygen 1.8.14-->
+<!-- start footer part -->
+<!--BEGIN GENERATE_TREEVIEW-->
+<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
+</div>
+<!--END GENERATE_TREEVIEW-->
+<!--BEGIN !GENERATE_TREEVIEW-->
+<!--END !GENERATE_TREEVIEW-->
+</body>
+</html>
diff --git a/gbdk/docs/config/github-markdown-theme/doxygen_header.html b/gbdk/docs/config/github-markdown-theme/doxygen_header.html new file mode 100644 index 00000000..12cbe282 --- /dev/null +++ b/gbdk/docs/config/github-markdown-theme/doxygen_header.html @@ -0,0 +1,58 @@ +<!-- HTML header for doxygen 1.8.14-->
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="cache-control" content="max-age=86400"/>
+<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
+<meta http-equiv="X-UA-Compatible" content="IE=9"/>
+<meta name="generator" content="Doxygen $doxygenversion"/>
+<meta name="viewport" content="width=device-width, initial-scale=1"/>
+<!--BEGIN PROJECT_NAME--><title>$projectname: $title</title><!--END PROJECT_NAME-->
+<!--BEGIN !PROJECT_NAME--><title>$title</title><!--END !PROJECT_NAME-->
+<link href="$relpath^tabs.css" rel="stylesheet" type="text/css"/>
+<script type="text/javascript" src="$relpath^jquery.js"></script>
+<script type="text/javascript" src="$relpath^dynsections.js"></script>
+$treeview
+$search
+$mathjax
+<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" />
+$extrastylesheet
+</head>
+<body>
+<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
+
+<!--BEGIN TITLEAREA-->
+<div id="titlearea">
+<table cellspacing="0" cellpadding="0">
+ <tbody>
+ <tr style="height: 56px;">
+ <!--BEGIN PROJECT_LOGO-->
+ <td id="projectlogo"><img alt="Logo" src="$relpath^$projectlogo"/></td>
+ <!--END PROJECT_LOGO-->
+ <!--BEGIN PROJECT_NAME-->
+ <td id="projectalign" style="padding-left: 0.5em;">
+ <div id="projectname">$projectname
+ <!--BEGIN PROJECT_NUMBER--> <span id="projectnumber">$projectnumber</span><!--END PROJECT_NUMBER-->
+ </div>
+ <!--BEGIN PROJECT_BRIEF--><div id="projectbrief">$projectbrief</div><!--END PROJECT_BRIEF-->
+ </td>
+ <!--END PROJECT_NAME-->
+ <!--BEGIN !PROJECT_NAME-->
+ <!--BEGIN PROJECT_BRIEF-->
+ <td style="padding-left: 0.5em;">
+ <div id="projectbrief">$projectbrief</div>
+ </td>
+ <!--END PROJECT_BRIEF-->
+ <!--END !PROJECT_NAME-->
+ <!--BEGIN DISABLE_INDEX-->
+ <!--BEGIN SEARCHENGINE-->
+ <td>$searchbox</td>
+ <!--END SEARCHENGINE-->
+ <!--END DISABLE_INDEX-->
+ </tr>
+ </tbody>
+</table>
+</div>
+<!--END TITLEAREA-->
+<!-- end header part -->
+
diff --git a/gbdk/docs/config/github-markdown-theme/doxygen_layout.xml b/gbdk/docs/config/github-markdown-theme/doxygen_layout.xml new file mode 100644 index 00000000..ed5f904d --- /dev/null +++ b/gbdk/docs/config/github-markdown-theme/doxygen_layout.xml @@ -0,0 +1,194 @@ +<doxygenlayout version="1.0">
+ <!-- Generated by doxygen 1.8.14 -->
+ <!-- Navigation index tabs for HTML output -->
+ <navindex>
+ <tab type="mainpage" visible="yes" title=""/>
+ <tab type="pages" visible="yes" title="" intro=""/>
+ <tab type="modules" visible="yes" title="C modules" intro=""/>
+ <tab type="namespaces" visible="yes" title="">
+ <tab type="namespacelist" visible="yes" title="" intro=""/>
+ <tab type="namespacemembers" visible="yes" title="" intro=""/>
+ </tab>
+ <tab type="classes" visible="yes" title="">
+ <tab type="classlist" visible="yes" title="" intro=""/>
+ <tab type="classindex" visible="$ALPHABETICAL_INDEX" title=""/>
+ <tab type="hierarchy" visible="yes" title="" intro=""/>
+ <tab type="classmembers" visible="yes" title="" intro=""/>
+ </tab>
+ <tab type="files" visible="yes" title="">
+ <tab type="filelist" visible="yes" title="" intro=""/>
+ <tab type="globals" visible="yes" title="" intro=""/>
+ </tab>
+ <tab type="examples" visible="yes" title="" intro=""/>
+ </navindex>
+
+ <!-- Layout definition for a class page -->
+ <class>
+ <briefdescription visible="yes"/>
+ <includes visible="$SHOW_INCLUDE_FILES"/>
+ <inheritancegraph visible="$CLASS_GRAPH"/>
+ <collaborationgraph visible="$COLLABORATION_GRAPH"/>
+ <memberdecl>
+ <nestedclasses visible="yes" title=""/>
+ <publictypes title=""/>
+ <services title=""/>
+ <interfaces title=""/>
+ <publicslots title=""/>
+ <signals title=""/>
+ <publicmethods title=""/>
+ <publicstaticmethods title=""/>
+ <publicattributes title=""/>
+ <publicstaticattributes title=""/>
+ <protectedtypes title=""/>
+ <protectedslots title=""/>
+ <protectedmethods title=""/>
+ <protectedstaticmethods title=""/>
+ <protectedattributes title=""/>
+ <protectedstaticattributes title=""/>
+ <packagetypes title=""/>
+ <packagemethods title=""/>
+ <packagestaticmethods title=""/>
+ <packageattributes title=""/>
+ <packagestaticattributes title=""/>
+ <properties title=""/>
+ <events title=""/>
+ <privatetypes title=""/>
+ <privateslots title=""/>
+ <privatemethods title=""/>
+ <privatestaticmethods title=""/>
+ <privateattributes title=""/>
+ <privatestaticattributes title=""/>
+ <friends title=""/>
+ <related title="" subtitle=""/>
+ <membergroups visible="yes"/>
+ </memberdecl>
+ <detaileddescription title=""/>
+ <memberdef>
+ <inlineclasses title=""/>
+ <typedefs title=""/>
+ <enums title=""/>
+ <services title=""/>
+ <interfaces title=""/>
+ <constructors title=""/>
+ <functions title=""/>
+ <related title=""/>
+ <variables title=""/>
+ <properties title=""/>
+ <events title=""/>
+ </memberdef>
+ <allmemberslink visible="yes"/>
+ <usedfiles visible="$SHOW_USED_FILES"/>
+ <authorsection visible="yes"/>
+ </class>
+
+ <!-- Layout definition for a namespace page -->
+ <namespace>
+ <briefdescription visible="yes"/>
+ <memberdecl>
+ <nestednamespaces visible="yes" title=""/>
+ <constantgroups visible="yes" title=""/>
+ <classes visible="yes" title=""/>
+ <typedefs title=""/>
+ <enums title=""/>
+ <functions title=""/>
+ <variables title=""/>
+ <membergroups visible="yes"/>
+ </memberdecl>
+ <detaileddescription title=""/>
+ <memberdef>
+ <inlineclasses title=""/>
+ <typedefs title=""/>
+ <enums title=""/>
+ <functions title=""/>
+ <variables title=""/>
+ </memberdef>
+ <authorsection visible="yes"/>
+ </namespace>
+
+ <!-- Layout definition for a file page -->
+ <file>
+ <briefdescription visible="yes"/>
+ <includes visible="$SHOW_INCLUDE_FILES"/>
+ <includegraph visible="$INCLUDE_GRAPH"/>
+ <includedbygraph visible="$INCLUDED_BY_GRAPH"/>
+ <sourcelink visible="yes"/>
+ <memberdecl>
+ <classes visible="yes" title=""/>
+ <namespaces visible="yes" title=""/>
+ <constantgroups visible="yes" title=""/>
+ <defines title=""/>
+ <typedefs title=""/>
+ <enums title=""/>
+ <functions title=""/>
+ <variables title=""/>
+ <membergroups visible="yes"/>
+ </memberdecl>
+ <detaileddescription title=""/>
+ <memberdef>
+ <inlineclasses title=""/>
+ <defines title=""/>
+ <typedefs title=""/>
+ <enums title=""/>
+ <functions title=""/>
+ <variables title=""/>
+ </memberdef>
+ <authorsection/>
+ </file>
+
+ <!-- Layout definition for a group page -->
+ <group>
+ <briefdescription visible="no"/>
+ <detaileddescription title="Description"/>
+ <groupgraph visible="$GROUP_GRAPHS"/>
+ <memberdecl>
+ <nestedgroups visible="yes" title=""/>
+ <dirs visible="yes" title=""/>
+ <files visible="yes" title=""/>
+ <namespaces visible="yes" title=""/>
+ <classes visible="yes" title=""/>
+ <defines title=""/>
+ <typedefs title=""/>
+ <enums title=""/>
+ <enumvalues title=""/>
+ <functions title=""/>
+ <variables title=""/>
+ <signals title=""/>
+ <publicslots title=""/>
+ <protectedslots title=""/>
+ <privateslots title=""/>
+ <events title=""/>
+ <properties title=""/>
+ <friends title=""/>
+ <membergroups visible="yes"/>
+ </memberdecl>
+ <memberdef>
+ <pagedocs/>
+ <inlineclasses title=""/>
+ <defines title=""/>
+ <typedefs title=""/>
+ <enums title=""/>
+ <enumvalues title=""/>
+ <functions title=""/>
+ <variables title=""/>
+ <signals title=""/>
+ <publicslots title=""/>
+ <protectedslots title=""/>
+ <privateslots title=""/>
+ <events title=""/>
+ <properties title=""/>
+ <friends title=""/>
+ </memberdef>
+ <authorsection visible="yes"/>
+ </group>
+
+ <!-- Layout definition for a directory page -->
+ <directory>
+ <briefdescription visible="yes"/>
+ <directorygraph visible="yes"/>
+ <memberdecl>
+ <dirs visible="yes"/>
+ <files visible="yes"/>
+ </memberdecl>
+ <detaileddescription title=""/>
+ </directory>
+</doxygenlayout>
diff --git a/gbdk/docs/config/github-markdown-theme/tip.png b/gbdk/docs/config/github-markdown-theme/tip.png Binary files differnew file mode 100644 index 00000000..023d5b2d --- /dev/null +++ b/gbdk/docs/config/github-markdown-theme/tip.png diff --git a/gbdk/docs/config/github-markdown-theme/tip.svg b/gbdk/docs/config/github-markdown-theme/tip.svg new file mode 100644 index 00000000..12853f34 --- /dev/null +++ b/gbdk/docs/config/github-markdown-theme/tip.svg @@ -0,0 +1,149 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="18" + height="31" + id="svg3033" + version="1.1" + inkscape:version="0.48.5 r10040" + sodipodi:docname="tip.svg" + inkscape:export-filename="P:\libraries\piconomic_fwlib\trunk\doc\images\tip.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3035" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#000000" + borderopacity="1" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="12.183607" + inkscape:cy="2.9453688" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:grid-bbox="true" + inkscape:document-units="px" + borderlayer="true" + inkscape:window-width="1920" + inkscape:window-height="1018" + inkscape:window-x="-8" + inkscape:window-y="-8" + inkscape:window-maximized="1"> + <inkscape:grid + type="xygrid" + id="grid3041" + empspacing="2" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" + spacingx="0.5px" + spacingy="0.5px" /> + <inkscape:grid + type="xygrid" + id="grid3043" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" + spacingx="4px" + spacingy="4px" + color="#ff0000" + opacity="0.25098039" + empcolor="#000000" + empopacity="0.50196078" /> + </sodipodi:namedview> + <metadata + id="metadata3038"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer" + transform="translate(0,-1)"> + <path + style="fill:#202020;fill-opacity:1;stroke:#101010;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 12,29.5 -2,2 -1,0 -1,0 -2,-2 0,-5.5 6,0 z" + id="path3879" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccc" /> + <path + id="path3835-1" + style="fill:#ffff00;fill-opacity:1;stroke:#c0c000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="M 15.5879,14.539971 C 16.478455,13.25015 17,11.685982 17,10 17,5.581722 13.418278,2 9,2 4.581722,2 1,5.581722 1,10 1,11.694854 1.5270482,13.266609 2.4261894,14.56031 3.36794,15.942902 4.198139,17.348708 4.5,19 c 0,0.5 0,1.5 0,2 0,0.5 0,1.5 1,1.5 l 7,0 c 1,0 1,-1 1,-1.5 0,-0.5 0,-1.5 0,-2 0.351777,-1.914951 1.154366,-2.935586 2.0879,-4.460029 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csssccsccscc" /> + <path + style="fill:none;stroke:#404040;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 13,24.5 -8,1" + id="path3857" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#404040;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 13,27.5 -8,1" + id="path3857-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 7.5,21.5 0,-2.5 c 0,0 0,-1 0.5,-1.5 C 8.5,17 8.5,17 9,17" + id="path3881" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 10.5,21.5 0,-2.5 c 0,0 0,-1 -0.5,-1.5 C 9.5,17 9.5,17 9,17" + id="path3881-4" + inkscape:connector-curvature="0" /> + <path + id="path3901-0" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 10,17.5 C 10.5,16.5 11.5,15 9.5,15 l -1,0 c -2,0 -1,1.5 -0.5,2.5" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="M 7.5,15 C 7.5,12.5 5,8 5,8" + id="path3933" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="M 10.5,15 C 10.5,12.5 13,8 13,8" + id="path3933-9" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 5,8 c 1,2 2.5,1 2.5,0" + id="path3955" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 13,8 c -1,2 -2.5,1 -2.5,0" + id="path3955-4" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 7.5,8 c 0,2 3,2 3,0" + id="path3975" + inkscape:connector-curvature="0" /> + </g> +</svg> diff --git a/gbdk/docs/config/github-markdown-theme/warn.png b/gbdk/docs/config/github-markdown-theme/warn.png Binary files differnew file mode 100644 index 00000000..6ab9b7d9 --- /dev/null +++ b/gbdk/docs/config/github-markdown-theme/warn.png diff --git a/gbdk/docs/config/github-markdown-theme/warn.svg b/gbdk/docs/config/github-markdown-theme/warn.svg new file mode 100644 index 00000000..96ea8e3f --- /dev/null +++ b/gbdk/docs/config/github-markdown-theme/warn.svg @@ -0,0 +1,105 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="36" + height="31" + id="svg3033" + version="1.1" + inkscape:version="0.48.5 r10040" + sodipodi:docname="warn.svg" + inkscape:export-filename="P:\libraries\piconomic_fwlib\trunk\doc\images\warn.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <defs + id="defs3035" /> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#000000" + borderopacity="1" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="8.4480425" + inkscape:cy="2.1765689" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:grid-bbox="true" + inkscape:document-units="px" + borderlayer="true" + inkscape:window-width="1920" + inkscape:window-height="1018" + inkscape:window-x="-8" + inkscape:window-y="-8" + inkscape:window-maximized="1"> + <inkscape:grid + type="xygrid" + id="grid3041" + empspacing="2" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" + spacingx="0.5px" + spacingy="0.5px" /> + <inkscape:grid + type="xygrid" + id="grid3043" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" + spacingx="4px" + spacingy="4px" + color="#ff0000" + opacity="0.25098039" + empcolor="#000000" + empopacity="0.50196078" /> + </sodipodi:namedview> + <metadata + id="metadata3038"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:label="Layer 1" + inkscape:groupmode="layer" + transform="translate(0,-1)"> + <path + id="path3007-1" + style="fill:none;stroke:#ff0000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="M 18,3 2,30 34,30 18,3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:type="arc" + style="fill:#000000;fill-opacity:1;stroke:none" + id="path3796" + sodipodi:cx="18" + sodipodi:cy="25" + sodipodi:rx="2" + sodipodi:ry="2" + d="m 20,25 a 2,2 0 1 1 -4,0 2,2 0 1 1 4,0 z" + transform="matrix(0.875,0,0,0.875,2.25,2.875)" /> + <path + id="path3802-7" + style="fill:#000000;stroke:#000000;stroke-width:0.10000000000000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;fill-opacity:1" + d="m 17.5,22 c -0.05641,-1.520157 -0.893551,-7.126908 -1,-8.5 0,-1.5 1,-2 1,-2 l 1,0 c 0,0 1,0.5 1,2 -0.106449,1.373092 -0.94359,6.979843 -1,8.5 z" + inkscape:connector-curvature="0" /> + </g> +</svg> |
