[DEV] better display

This commit is contained in:
Edouard DUPIN 2016-03-31 22:17:30 +02:00
parent d4a54bbf5b
commit a659faff81
3 changed files with 192 additions and 187 deletions

View File

@ -44,7 +44,7 @@ PROJECT_NUMBER = 1.0.0
# for a project that appears at the top of each page and should give viewer a # for a project that appears at the top of each page and should give viewer a
# quick idea about the purpose of the project. Keep the description short. # quick idea about the purpose of the project. Keep the description short.
PROJECT_BRIEF = Stuff PROJECT_BRIEF =
# With the PROJECT_LOGO tag one can specify a logo or an icon that is included # With the PROJECT_LOGO tag one can specify a logo or an icon that is included
# in the documentation. The maximum height of the logo should not exceed 55 # in the documentation. The maximum height of the logo should not exceed 55
@ -98,7 +98,7 @@ OUTPUT_LANGUAGE = English
# documentation (similar to Javadoc). Set to NO to disable this. # documentation (similar to Javadoc). Set to NO to disable this.
# The default value is: YES. # The default value is: YES.
BRIEF_MEMBER_DESC = YES BRIEF_MEMBER_DESC = NO
# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief # If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief
# description of a member or function before the detailed description # description of a member or function before the detailed description
@ -319,7 +319,7 @@ AUTOLINK_SUPPORT = YES
# diagrams that involve STL classes more complete and accurate. # diagrams that involve STL classes more complete and accurate.
# The default value is: NO. # The default value is: NO.
BUILTIN_STL_SUPPORT = NO BUILTIN_STL_SUPPORT = YES
# If you use Microsoft's C++/CLI language, you should set this option to YES to # If you use Microsoft's C++/CLI language, you should set this option to YES to
# enable parsing support. # enable parsing support.
@ -740,7 +740,7 @@ WARN_IF_DOC_ERROR = YES
# parameter documentation, but not about the absence of documentation. # parameter documentation, but not about the absence of documentation.
# The default value is: NO. # The default value is: NO.
WARN_NO_PARAMDOC = NO WARN_NO_PARAMDOC = YES
# The WARN_FORMAT tag determines the format of the warning messages that doxygen # The WARN_FORMAT tag determines the format of the warning messages that doxygen
# can produce. The string should contain the $file, $line, and $text tags, which # can produce. The string should contain the $file, $line, and $text tags, which
@ -823,7 +823,7 @@ EXCLUDE_SYMLINKS = NO
# Note that the wildcards are matched against the file with absolute path, so to # Note that the wildcards are matched against the file with absolute path, so to
# exclude all test directories for example use the pattern */test/* # exclude all test directories for example use the pattern */test/*
EXCLUDE_PATTERNS = EXCLUDE_PATTERNS = debug.h
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the # (namespaces, classes, functions, etc.) that should be excluded from the

View File

@ -318,6 +318,7 @@ span.SRScope {
.table > tbody > tr > td.memSeparator { .table > tbody > tr > td.memSeparator {
line-height: 0; line-height: 0;
padding: 0;
} }
.memItemLeft, .memTemplItemLeft { .memItemLeft, .memTemplItemLeft {
white-space: normal; white-space: normal;

View File

@ -71,11 +71,13 @@ $( document ).ready(function() {
{ {
$('div.fragment.well div.line:first').parent().removeClass('fragment well'); $('div.fragment.well div.line:first').parent().removeClass('fragment well');
} }
//merge left ad right element in the fuction table item
/*
$('table.memberdecls').find('.memItemRight').each(function(){ $('table.memberdecls').find('.memItemRight').each(function(){
$(this).contents().appendTo($(this).siblings('.memItemLeft')); $(this).contents().appendTo($(this).siblings('.memItemLeft'));
$(this).siblings('.memItemLeft').attr('align', 'left'); $(this).siblings('.memItemLeft').attr('align', 'left');
}); });
*/
function getOriginalWidthOfImg(img_element) { function getOriginalWidthOfImg(img_element) {
var t = new Image(); var t = new Image();
@ -199,7 +201,9 @@ $( document ).ready(function() {
var observer = new MutationObserver(function(mutations) { var observer = new MutationObserver(function(mutations) {
update_search_results_window(); update_search_results_window();
}); });
var config = { attributes: true}; var config = {
attributes: true
};
var targets = $('#MSearchResults').contents().find('.SRStatus'); var targets = $('#MSearchResults').contents().find('.SRStatus');
for (i = 0; i < targets.length; i++) { for (i = 0; i < targets.length; i++) {