summaryrefslogtreecommitdiffstats
path: root/doc/global/htmltabs.qdocconf
blob: 7903cec18ac30b6f114df8b4988d2fdea2acfb15 (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#Macros for HTML tabs
#Usage:
#\tab {name}{tab-id}{title}{checked}
#\tabcontent {tab-id}
# content
#\endtabcontent

# Ensure that the {name} is unique for the group.
# i.e A group of tabs can have the same name, whereas
# {tab-id} should be unique. In addition, the argument
# for \tabcontent macro should match the {tab-id} for the
# corresponding \tab.

# The {checked} argument ensures that the tab is selected
# by default when the HTML page is loaded. For the other
# tabs that are not selected, pass and empty argument {}.
#
# Note that these macros work with the online template only.
#
# Example:
# \if(onlinedocs)
#   \tab {build-qt-app}{tab-cmake}{CMake}{selected}
#   \tab {build-qt-app}{tab-qmake}{qmake}{}
#   \tabcontent {tab-cmake}
# \else
#   \section1 Using CMake
# \endif
#   CMake-specific instructions go here
# \if(onlinedocs)
#   \endtabcontent
#   \tabcontent {tab-qmake}
# \else
#   \section1 Using qmake
# \endif
#   qmake-specific instructions go here
# \if(onlinedocs)
#   \endtabcontent
# \endif

macro.tab.HTML = "<input type=\"radio\" name=\"tabs_\1\" id=\"\2\" \4/><label for=\"\2\">\3</label><style>#\2:checked ~ .\2{display: block;}</style>"
macro.tabcontent.HTML = "<div class=\"tabcontent \1\">"
macro.endtabcontent.HTML = "</div>"

HTML.extraimages += template/style/htmltabs.css

HTML.headerstyles += \
    "  <link rel=\"stylesheet\" type=\"text/css\" href=\"images/htmltabs.css\" />\n"

HTML.headerscripts += \
    "  <script type=\"text/javascript\">\n" \
    " \$(document).ready(function(){\n" \
    "   \$(\"input[type=radio]\").on(\"click\", function() {\n" \
    "   var lbl = \$(this).next().text();\n" \
    "   \$(\"input[type=radio]:not(checked)\").filter(function() {\n" \
    "     if (\$(this).next().text() == lbl)\n" \
    "         \$(this).prop(\"checked\", true);\n" \
    "   });\n" \
    "   });\n" \
    " });\n" \
    "  </script>\n"