-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libbadgewstools documentation place holder content
- Loading branch information
1 parent
a666578
commit c0fa3b8
Showing
34 changed files
with
6,932 additions
and
1,314 deletions.
There are no files selected for viewing
610 changes: 296 additions & 314 deletions
610
Learn/Simple Libraries/Social/libbadgewxtools/Documentation badgewxtools Library.html
Large diffs are not rendered by default.
Oops, something went wrong.
2,654 changes: 1,655 additions & 999 deletions
2,654
Learn/Simple Libraries/Social/libbadgewxtools/Doxyfile.doxyfile
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2,312 changes: 2,312 additions & 0 deletions
2,312
Learn/Simple Libraries/Social/libbadgewxtools/html/badgewxtools_8h.html
Large diffs are not rendered by default.
Oops, something went wrong.
110 changes: 110 additions & 0 deletions
110
Learn/Simple Libraries/Social/libbadgewxtools/html/badgewxtools_8h_source.html
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,596 changes: 1,596 additions & 0 deletions
1,596
Learn/Simple Libraries/Social/libbadgewxtools/html/doxygen.css
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
104 changes: 104 additions & 0 deletions
104
Learn/Simple Libraries/Social/libbadgewxtools/html/dynsections.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
function toggleVisibility(linkObj) | ||
{ | ||
var base = $(linkObj).attr('id'); | ||
var summary = $('#'+base+'-summary'); | ||
var content = $('#'+base+'-content'); | ||
var trigger = $('#'+base+'-trigger'); | ||
var src=$(trigger).attr('src'); | ||
if (content.is(':visible')===true) { | ||
content.hide(); | ||
summary.show(); | ||
$(linkObj).addClass('closed').removeClass('opened'); | ||
$(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); | ||
} else { | ||
content.show(); | ||
summary.hide(); | ||
$(linkObj).removeClass('closed').addClass('opened'); | ||
$(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); | ||
} | ||
return false; | ||
} | ||
|
||
function updateStripes() | ||
{ | ||
$('table.directory tr'). | ||
removeClass('even').filter(':visible:even').addClass('even'); | ||
} | ||
|
||
function toggleLevel(level) | ||
{ | ||
$('table.directory tr').each(function() { | ||
var l = this.id.split('_').length-1; | ||
var i = $('#img'+this.id.substring(3)); | ||
var a = $('#arr'+this.id.substring(3)); | ||
if (l<level+1) { | ||
i.removeClass('iconfopen iconfclosed').addClass('iconfopen'); | ||
a.html('▼'); | ||
$(this).show(); | ||
} else if (l==level+1) { | ||
i.removeClass('iconfclosed iconfopen').addClass('iconfclosed'); | ||
a.html('►'); | ||
$(this).show(); | ||
} else { | ||
$(this).hide(); | ||
} | ||
}); | ||
updateStripes(); | ||
} | ||
|
||
function toggleFolder(id) | ||
{ | ||
// the clicked row | ||
var currentRow = $('#row_'+id); | ||
|
||
// all rows after the clicked row | ||
var rows = currentRow.nextAll("tr"); | ||
|
||
var re = new RegExp('^row_'+id+'\\d+_$', "i"); //only one sub | ||
|
||
// only match elements AFTER this one (can't hide elements before) | ||
var childRows = rows.filter(function() { return this.id.match(re); }); | ||
|
||
// first row is visible we are HIDING | ||
if (childRows.filter(':first').is(':visible')===true) { | ||
// replace down arrow by right arrow for current row | ||
var currentRowSpans = currentRow.find("span"); | ||
currentRowSpans.filter(".iconfopen").removeClass("iconfopen").addClass("iconfclosed"); | ||
currentRowSpans.filter(".arrow").html('►'); | ||
rows.filter("[id^=row_"+id+"]").hide(); // hide all children | ||
} else { // we are SHOWING | ||
// replace right arrow by down arrow for current row | ||
var currentRowSpans = currentRow.find("span"); | ||
currentRowSpans.filter(".iconfclosed").removeClass("iconfclosed").addClass("iconfopen"); | ||
currentRowSpans.filter(".arrow").html('▼'); | ||
// replace down arrows by right arrows for child rows | ||
var childRowsSpans = childRows.find("span"); | ||
childRowsSpans.filter(".iconfopen").removeClass("iconfopen").addClass("iconfclosed"); | ||
childRowsSpans.filter(".arrow").html('►'); | ||
childRows.show(); //show all children | ||
} | ||
updateStripes(); | ||
} | ||
|
||
|
||
function toggleInherit(id) | ||
{ | ||
var rows = $('tr.inherit.'+id); | ||
var img = $('tr.inherit_header.'+id+' img'); | ||
var src = $(img).attr('src'); | ||
if (rows.filter(':first').is(':visible')===true) { | ||
rows.css('display','none'); | ||
$(img).attr('src',src.substring(0,src.length-8)+'closed.png'); | ||
} else { | ||
rows.css('display','table-row'); // using show() causes jump in firefox | ||
$(img).attr('src',src.substring(0,src.length-10)+'open.png'); | ||
} | ||
} | ||
|
||
|
||
$(document).ready(function() { | ||
$('.code,.codeRef').each(function() { | ||
$(this).data('powertip',$('#'+$(this).attr('href').replace(/.*\//,'').replace(/[^a-z_A-Z0-9]/g,'_')).html()); | ||
$(this).powerTip({ placement: 's', smartPlacement: true, mouseOnToPopup: true }); | ||
}); | ||
}); |
52 changes: 52 additions & 0 deletions
52
Learn/Simple Libraries/Social/libbadgewxtools/html/files.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<!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="Content-Type" content="text/xhtml;charset=UTF-8"/> | ||
<meta http-equiv="X-UA-Compatible" content="IE=9"/> | ||
<meta name="generator" content="Doxygen 1.8.13"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"/> | ||
<title>badgewxtools library: File List</title> | ||
<link href="tabs.css" rel="stylesheet" type="text/css"/> | ||
<script type="text/javascript" src="jquery.js"></script> | ||
<script type="text/javascript" src="dynsections.js"></script> | ||
<link href="doxygen.css" rel="stylesheet" type="text/css" /> | ||
</head> | ||
<body> | ||
<div id="top"><!-- do not remove this div, it is closed by doxygen! --> | ||
<div id="titlearea"> | ||
<table cellspacing="0" cellpadding="0"> | ||
<tbody> | ||
<tr style="height: 56px;"> | ||
<td id="projectlogo"><img alt="Logo" src="ParallaxLogo.png"/></td> | ||
<td id="projectalign" style="padding-left: 0.5em;"> | ||
<div id="projectname">badgewxtools library | ||
 <span id="projectnumber">v0.51.0</span> | ||
</div> | ||
<div id="projectbrief">Collection of convenience functions for the Parallax eBadge WX</div> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
<!-- end header part --> | ||
<!-- Generated by Doxygen 1.8.13 --> | ||
</div><!-- top --> | ||
<div class="header"> | ||
<div class="headertitle"> | ||
<div class="title">File List</div> </div> | ||
</div><!--header--> | ||
<div class="contents"> | ||
<div class="textblock">Here is a list of all documented files with brief descriptions:</div><div class="directory"> | ||
<table class="directory"> | ||
<tr id="row_0_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><a href="badgewxtools_8h_source.html"><span class="icondoc"></span></a><a class="el" href="badgewxtools_8h.html" target="_self">badgewxtools.h</a></td><td class="desc">This library provides convenient functions for a variety of Parallax eBadge operations </td></tr> | ||
</table> | ||
</div><!-- directory --> | ||
</div><!-- contents --> | ||
<!-- start footer part --> | ||
<hr class="footer"/><address class="footer"><small> | ||
Generated on Tue May 29 2018 11:36:08 for badgewxtools library by  <a href="http://www.doxygen.org/index.html"> | ||
<img class="footer" src="doxygen.png" alt="doxygen"/> | ||
</a> 1.8.13 | ||
</small></address> | ||
</body> | ||
</html> |
Binary file added
BIN
+616 Bytes
Learn/Simple Libraries/Social/libbadgewxtools/html/folderclosed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.