summaryrefslogtreecommitdiffstats
path: root/doc/src
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@nokia.com>2011-01-05 10:41:57 (GMT)
committerJerome Pasion <jerome.pasion@nokia.com>2011-01-05 10:41:57 (GMT)
commit55d05512939b8e7a43f22a1cc423112d8fb3d2eb (patch)
tree5cb44bd6883fe8da180378fe7416d5b1514f6578 /doc/src
parent9b0ad342cc888bd4291c84f63fe485bfbfdc3ce0 (diff)
parentf44f7084a3020ed8e249644d5b5e07f74cb7b070 (diff)
downloadQt-55d05512939b8e7a43f22a1cc423112d8fb3d2eb.zip
Qt-55d05512939b8e7a43f22a1cc423112d8fb3d2eb.tar.gz
Qt-55d05512939b8e7a43f22a1cc423112d8fb3d2eb.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-doc-team into 4.7
Merging qt-doc-team into cloned repository
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/declarative/anchor-layout.qdoc4
-rw-r--r--doc/src/declarative/extending.qdoc1
-rw-r--r--doc/src/declarative/javascriptblocks.qdoc4
-rw-r--r--doc/src/declarative/modules.qdoc2
-rw-r--r--doc/src/declarative/qdeclarativereference.qdoc2
-rw-r--r--doc/src/declarative/tutorial.qdoc4
-rw-r--r--doc/src/development/developing-with-qt.qdoc8
-rw-r--r--doc/src/getting-started/gettingstartedqml.qdoc2
-rw-r--r--doc/src/index.qdoc10
-rw-r--r--doc/src/legal/3rdparty.qdoc12
-rw-r--r--doc/src/overviews.qdoc4
-rw-r--r--doc/src/snippets/declarative/focus/focusColumn.qml2
-rw-r--r--doc/src/snippets/declarative/states/statechangescript.qml61
-rw-r--r--doc/src/template/style/narrow.css14
-rw-r--r--doc/src/template/style/offline.css662
-rwxr-xr-xdoc/src/template/style/style.css1139
-rw-r--r--doc/src/template/style/superfish.css44
17 files changed, 1316 insertions, 659 deletions
diff --git a/doc/src/declarative/anchor-layout.qdoc b/doc/src/declarative/anchor-layout.qdoc
index 11acbad..70381de 100644
--- a/doc/src/declarative/anchor-layout.qdoc
+++ b/doc/src/declarative/anchor-layout.qdoc
@@ -28,10 +28,14 @@
/*!
\page qml-anchor-layout.html
\target anchor-layout
+<<<<<<< HEAD
\contentspage QML Features
\previouspage {Using QML Positioner and Repeater Items}{Component Layouts}
\nextpage {QML Mouse Events}{Mouse Events}
\title Anchor-based Layout in QML
+=======
+\title Anchor-Based Layout in QML
+>>>>>>> f44f7084a3020ed8e249644d5b5e07f74cb7b070
\section1 Overview
diff --git a/doc/src/declarative/extending.qdoc b/doc/src/declarative/extending.qdoc
index d3f1521..491f9c4 100644
--- a/doc/src/declarative/extending.qdoc
+++ b/doc/src/declarative/extending.qdoc
@@ -639,3 +639,4 @@ public:
*/
+
diff --git a/doc/src/declarative/javascriptblocks.qdoc b/doc/src/declarative/javascriptblocks.qdoc
index 155bd6e..68cb392 100644
--- a/doc/src/declarative/javascriptblocks.qdoc
+++ b/doc/src/declarative/javascriptblocks.qdoc
@@ -99,7 +99,9 @@ resource, the component's \l {QDeclarativeComponent::status()}{status} is set to
Imported JavaScript files are always qualified using the "as" keyword. The
qualifier for JavaScript files must be unique, so there is always a one-to-one
-mapping between qualifiers and JavaScript files.
+mapping between qualifiers and JavaScript files. (This also means qualifiers cannot
+be named the same as built-in JavaScript objects such as \c Date and \c Math).
+
\section2 Code-Behind Implementation Files
diff --git a/doc/src/declarative/modules.qdoc b/doc/src/declarative/modules.qdoc
index 2a2e4ff..8d23170 100644
--- a/doc/src/declarative/modules.qdoc
+++ b/doc/src/declarative/modules.qdoc
@@ -216,6 +216,8 @@ JavaScript files must always be imported with a named import:
}
\endqml
+The qualifier ("MyScript" in the above example) must be unique within the QML document.
+Unlike ordinary modules, multiple scripts cannot be imported into the same namespace.
\section1 Writing a qmldir file
diff --git a/doc/src/declarative/qdeclarativereference.qdoc b/doc/src/declarative/qdeclarativereference.qdoc
index c2c5e91..76fcc40 100644
--- a/doc/src/declarative/qdeclarativereference.qdoc
+++ b/doc/src/declarative/qdeclarativereference.qdoc
@@ -64,7 +64,7 @@
\o \l {QML Scope}
\o \l {Network Transparency}
\o \l {qmlmodels}{Data Models}
- \o \l {anchor-layout}{Anchor-based Layout}
+ \o \l {anchor-layout}{Anchor-Based Layout}
\o \l {qmlstates}{States}
\o \l {qdeclarativeanimation.html}{Animation}
\o \l {qdeclarativemodules.html}{Modules}
diff --git a/doc/src/declarative/tutorial.qdoc b/doc/src/declarative/tutorial.qdoc
index d8139b4..a24fa85 100644
--- a/doc/src/declarative/tutorial.qdoc
+++ b/doc/src/declarative/tutorial.qdoc
@@ -94,7 +94,7 @@ We add a \l Text element as a child of the root Rectangle element that displays
The \c y property is used to position the text vertically at 30 pixels from the top of its parent.
The \c anchors.horizontalCenter property refers to the horizontal center of an element.
-In this case, we specify that our text element should be horizontally centered in the \e page element (see \l{anchor-layout}{Anchor-based Layout}).
+In this case, we specify that our text element should be horizontally centered in the \e page element (see \l{anchor-layout}{Anchor-Based Layout}).
The \c font.pointSize and \c font.bold properties are related to fonts and use the \l{dot properties}{dot notation}.
@@ -156,7 +156,7 @@ We will use this signal to change the color of the text in the main QML file lat
Our cell component is basically a colored rectangle with the \c id \e rectangle.
The \c anchors.fill property is a convenient way to set the size of an element.
-In this case the rectangle will have the same size as its parent (see \l{anchor-layout}{Anchor-based Layout}).
+In this case the rectangle will have the same size as its parent (see \l{anchor-layout}{Anchor-Based Layout}).
\snippet examples/declarative/tutorials/helloworld/Cell.qml 3
diff --git a/doc/src/development/developing-with-qt.qdoc b/doc/src/development/developing-with-qt.qdoc
index 6793abd..72073e8 100644
--- a/doc/src/development/developing-with-qt.qdoc
+++ b/doc/src/development/developing-with-qt.qdoc
@@ -28,7 +28,7 @@
/*!
\page developing-with-qt.html
- \title Cross-platform & Platform-specific Development
+ \title Cross-Platform and Platform-Specific Development
Qt allows you to write advanced applications and UIs once, and deploy them
across desktop and embedded operating systems without rewriting the source
code. The top section of this page provides an overview of the tools and
@@ -37,7 +37,7 @@
links to documents that describe platform-specific features provided by Qt,
and discuss issues related to particular platforms and environments.
- \section1 Cross-platform Development with Qt
+ \section1 Cross-Platform Development with Qt
Qt is provided with a set of build tools to help developers automate
the process of building and installing Qt applications.
@@ -68,7 +68,7 @@
\endlist
\endtable
- \section1 Platform-specific Development with Qt
+ \section1 Platform-Specific Development with Qt
These documents describe platform-specific features provided by Qt, and
discuss issues related to particular platforms and environments.
@@ -110,6 +110,4 @@
\o Collections of notes about Qt implementations on different window systems.
\endlist
\endtable
-
-
*/
diff --git a/doc/src/getting-started/gettingstartedqml.qdoc b/doc/src/getting-started/gettingstartedqml.qdoc
index d2fc4ea..754f426 100644
--- a/doc/src/getting-started/gettingstartedqml.qdoc
+++ b/doc/src/getting-started/gettingstartedqml.qdoc
@@ -133,7 +133,7 @@
the interactive area where mouse movements are detected. For our button, we anchor the
whole MouseArea to its parent, which is \c simplebutton. The \c anchors.fill syntax is
one way of accessing a specific property called \c fill inside a group of properties
- called \c anchors. QML uses \l {Anchor-based Layout in QML}{anchor based layouts} where
+ called \c anchors. QML uses \l {Anchor-Based Layout in QML}{anchor-based layouts} where
items can anchor to another item, creating robust layouts.
The \c MouseArea has many signal handlers that are called during mouse movements within
diff --git a/doc/src/index.qdoc b/doc/src/index.qdoc
index aefbea1..4aec230 100644
--- a/doc/src/index.qdoc
+++ b/doc/src/index.qdoc
@@ -72,11 +72,11 @@
\enddiv
\div {sectionlist tricol}
\list
- \o \l{qt-basic-concepts.html}{Programming with Qt}
- \o \l{qt-gui-concepts.html}{UI Design with Qt}
- \o \l{developing-with-qt.html}{Cross-platform and Platform-specific}
- \o \l{technology-apis.html}{Qt and Key Technologies}
- \o \l{best-practices.html}{Best Practices Guides}
+ \o \l{Programming with Qt}
+ \o \l{UI Design with Qt}
+ \o \l{Cross-Platform and Platform-Specific Development}
+ \o \l{Qt and Key Technologies}
+ \o \l{Best Practice Guides}
\endlist
\enddiv
\div {sectionlist}
diff --git a/doc/src/legal/3rdparty.qdoc b/doc/src/legal/3rdparty.qdoc
index 9cc83a6..e2c088a 100644
--- a/doc/src/legal/3rdparty.qdoc
+++ b/doc/src/legal/3rdparty.qdoc
@@ -92,13 +92,8 @@
\section1 HarfBuzz (\c harfbuzz)
- \e{This is HarfBuzz, an OpenType Layout engine.}
-
- \e{It was derived originally from the OpenType code in FreeType-1.x, ported to
- FreeType2. (This code has been abandoned for FreeType2, but until something
- better comes along, should serve our purposes.) In addition to porting to
- FreeType-2, it has been modified in various other ways.} -- quoted from
- \c src/3rdparty/harfbuzz/README.
+ \e{This is HarfBuzz, an OpenType Layout engine library.}
+ -- quoted from \c src/3rdparty/harfbuzz/README.
\hr
@@ -129,8 +124,7 @@
\hr
- See \c src/3rdparty/harfbuzz/COPYING.FTL and src/3rdparty/harfbuzz/COPYING.GPL
- for license details.
+ See \c src/3rdparty/harfbuzz/COPYING for license details.
\section1 The Independent JPEG Group's JPEG Software (\c libjpeg) version 8
diff --git a/doc/src/overviews.qdoc b/doc/src/overviews.qdoc
index 96805d0..6b24052 100644
--- a/doc/src/overviews.qdoc
+++ b/doc/src/overviews.qdoc
@@ -122,9 +122,9 @@
/*!
\group best-practices
- \title Best Practices Guides
+ \title Best Practice Guides
- \brief How-To Guides and Best Practices
+ \brief How-To and Best Practice Guides
These documents provide guidelines and best practices for using Qt
to solve specific technical problems. They are listed
diff --git a/doc/src/snippets/declarative/focus/focusColumn.qml b/doc/src/snippets/declarative/focus/focusColumn.qml
index 9b761dd..42ee3da 100644
--- a/doc/src/snippets/declarative/focus/focusColumn.qml
+++ b/doc/src/snippets/declarative/focus/focusColumn.qml
@@ -4,7 +4,7 @@
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
-** This file is part of the FOO module of the Qt Toolkit.
+** This file is part of the documentation of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** You may use this file under the terms of the BSD license as follows:
diff --git a/doc/src/snippets/declarative/states/statechangescript.qml b/doc/src/snippets/declarative/states/statechangescript.qml
new file mode 100644
index 0000000..b885137
--- /dev/null
+++ b/doc/src/snippets/declarative/states/statechangescript.qml
@@ -0,0 +1,61 @@
+/****************************************************************************
+**
+** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the documentation of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:BSD$
+** You may use this file under the terms of the BSD license as follows:
+**
+** "Redistribution and use in source and binary forms, with or without
+** modification, are permitted provided that the following conditions are
+** met:
+** * Redistributions of source code must retain the above copyright
+** notice, this list of conditions and the following disclaimer.
+** * Redistributions in binary form must reproduce the above copyright
+** notice, this list of conditions and the following disclaimer in
+** the documentation and/or other materials provided with the
+** distribution.
+** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
+** the names of its contributors may be used to endorse or promote
+** products derived from this software without specific prior written
+** permission.
+**
+** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+Item {
+//! [state and transition]
+State {
+ name: "state1"
+ StateChangeScript {
+ name: "myScript"
+ script: doStateStuff();
+ }
+ // ...
+}
+// ...
+Transition {
+ to: "state1"
+ SequentialAnimation {
+ NumberAnimation { /* ... */ }
+ ScriptAction { scriptName: "myScript" }
+ NumberAnimation { /* ... */ }
+ }
+}
+//! [state and transition]
+}
diff --git a/doc/src/template/style/narrow.css b/doc/src/template/style/narrow.css
index fbb0752..39b4740 100644
--- a/doc/src/template/style/narrow.css
+++ b/doc/src/template/style/narrow.css
@@ -135,7 +135,7 @@
.creator .wrap
{
margin: 0px;
- background:#FFFFFF;
+ background:#FFFFFF;
}
.narrow .wrap .toolbar
{
@@ -170,7 +170,7 @@
.narrow .wrap .breadcrumb ul li.last a {
color: #363534;
}
-
+
#narrowsearch {
display: none;
}
@@ -213,7 +213,7 @@
width: 64%;
padding-left: 0;
}
-
+
.narrow .indexboxcont .sectionlist {
width: 32.5%;
}
@@ -253,7 +253,7 @@
#narrowmenu li,
#narrowmenu li ul {
background-color: #fff;
- margin-top:-1px;
+ margin-top:-1px;
}
#narrowmenu li ul {
@@ -266,6 +266,6 @@
}
/* end narrow mode */
- .creator #narrowsearch, .creator #narrowmenu{
- display:none;
- }
+ .creator #narrowsearch, .creator #narrowmenu{
+ display:none;
+ }
diff --git a/doc/src/template/style/offline.css b/doc/src/template/style/offline.css
new file mode 100644
index 0000000..4a10d0a
--- /dev/null
+++ b/doc/src/template/style/offline.css
@@ -0,0 +1,662 @@
+@media screen
+{
+
+/* basic elements */
+ html
+ {
+ color: #000000;
+ background: #FFFFFF;
+ }
+ table
+ {
+ border-collapse: collapse;
+ border-spacing: 0;
+ }
+ fieldset, img
+ {
+ border: 0;
+ max-width:100%;
+ }
+ address, caption, cite, code, dfn, em, strong, th, var, optgroup
+ {
+ font-style: inherit;
+ font-weight: inherit;
+ }
+ del, ins
+ {
+ text-decoration: none;
+ }
+ li
+ {
+ list-style: none;
+ }
+ ol li
+ {
+ list-style: decimal;
+ }
+ caption, th
+ {
+ text-align: left;
+ }
+ h1, h2, h3, h4, h5, h6
+ {
+ font-size: 100%;
+ }
+ q:before, q:after
+ {
+ content: '';
+ }
+ abbr, acronym
+ {
+ border: 0;
+ font-variant: normal;
+ }
+ sup, sub
+ {
+ vertical-align: baseline;
+ }
+ tt, .qmlreadonly span, .qmldefault span
+ {
+ word-spacing:0.5em;
+ }
+ legend
+ {
+ color: #000000;
+ }
+ strong
+ {
+ font-weight: bold;
+ }
+ em
+ {
+ font-style: italic;
+ }
+
+ /* adding Qt theme */
+ body
+ {
+ margin-left: 0.5em;
+ margin-right: 0.5em
+ }
+ a
+ {
+ color: #00732F;
+ text-decoration: none;
+ }
+ hr
+ {
+ background-color: #E6E6E6;
+ border: 1px solid #E6E6E6;
+ height: 1px;
+ width: 100%;
+ text-align: left;
+ margin: 1.5em 0 1.5em 0;
+ }
+
+ pre
+ {
+ border: 1px solid #DDDDDD;
+ -moz-border-radius: 0.7em 0.7em 0.7em 0.7em;
+ -webkit-border-radius: 0.7em 0.7em 0.7em 0.7em;
+ border-radius: 0.7em 0.7em 0.7em 0.7em;
+ margin: 0 1.5em 1em 1em;
+ padding: 1em 1em 1em 1em;
+ overflow-x: auto;
+ }
+ table, pre
+ {
+ -moz-border-radius: 0.7em 0.7em 0.7em 0.7em;
+ -webkit-border-radius: 0.7em 0.7em 0.7em 0.7em;
+ border-radius: 0.7em 0.7em 0.7em 0.7em;
+ background-color: #F6F6F6;
+ border: 1px solid #E6E6E6;
+ border-collapse: separate;
+ font-size: 110%;
+ margin-bottom: 2.5em;
+ }
+ pre {
+ font-size: 90%;
+ display: block;
+ overflow:hidden;
+ }
+ thead
+ {
+ margin-top: 0.5em;
+ font-weight: bold
+ }
+ th
+ {
+ padding: 0.5em 1.5em 0.5em 1.5em;
+ background-color: #E1E1E1;
+ border-left: 1px solid #E6E6E6;
+ }
+ td
+ {
+ padding: 0.25em 1.5em 0.25em 2em;
+ }
+
+ td.rightAlign
+ {
+ padding: 0.25em 0.5em 0.25em 1em;
+ }
+ table tr.odd
+ {
+ border-left: 1px solid #E6E6E6;
+ background-color: #F6F6F6;
+ color: #66666E;
+ }
+ table tr.even
+ {
+ border-left: 1px solid #E6E6E6;
+ background-color: #ffffff;
+ color: #66666E;
+ }
+
+ div.float-left
+ {
+ float: left; margin-right: 2em
+ }
+ div.float-right
+ {
+ float: right; margin-left: 2em
+ }
+
+ span.comment
+ {
+ color: #008B00;
+ }
+ span.string, span.char
+ {
+ color: #000084;
+ }
+ span.number
+ {
+ color: #a46200;
+ }
+ span.operator
+ {
+ color: black;
+ }
+ span.keyword
+ {
+ color: #840000;
+ }
+ span.name
+ {
+ color: black
+ }
+/* end basic elements */
+
+/* font style elements */
+ .heading
+ {
+ font-weight: bold;
+ font-size: 160%;
+ }
+ .subtitle
+ {
+ font-size: 130%
+ }
+ .small-subtitle
+ {
+ font-size: 130%
+ }
+ .red
+ {
+ color:red;
+ }
+/* end font style elements */
+
+/* global settings*/
+ .header, .footer
+ {
+ display: block;
+ clear: both;
+ overflow: hidden;
+ }
+/* end global settings*/
+
+/* header elements */
+ .header .qtref
+ {
+ color: #00732F;
+ font-weight: bold;
+ font-size: 180%;
+ }
+
+ .header .content
+ {
+ margin-bottom: 0.5em
+ }
+
+ .naviNextPrevious
+ {
+ display: none
+ }
+ .header .breadcrumb
+ {
+ font-size: 90%;
+ padding: 0.5em 0 0.5em 1em;
+ margin: 0;
+ background-color: #fafafa;
+ height: 1.35em;
+ border-bottom: 1px solid #d1d1d1;
+ }
+
+ .header .breadcrumb ul
+ {
+ margin: 0;
+ padding: 0;
+ }
+
+ .header .content
+ {
+ word-wrap: break-word;
+ }
+
+ .header .breadcrumb ul li
+ {
+ float: left;
+ background: url(../images/breadcrumb.png) no-repeat 0 3px;
+ padding-left: 1.5em;
+ margin-left: 1.5em;
+ }
+
+ .header .breadcrumb ul li.last
+ {
+ font-weight: normal;
+ }
+
+ .header .breadcrumb ul li a
+ {
+ color: #00732F;
+ }
+
+ .header .breadcrumb ul li.first
+ {
+ background-image: none;
+ padding-left: 0;
+ margin-left: 0;
+ }
+
+ .header .content ol li {
+ background: none;
+ margin-bottom: 1.0em;
+ margin-left: 1.2em;
+ padding-left: 0
+ }
+
+ .header .content li
+ {
+ background: url(../images/bullet_sq.png) no-repeat 0 5px;
+ margin-bottom: 1em;
+ padding-left: 1.2em;
+ }
+
+/* end header elements */
+
+/* content elements */
+ .content h1
+ {
+ font-weight: bold;
+ font-size: 180%
+ }
+
+ .content h2
+ {
+ font-weight: bold;
+ font-size: 160%;
+ width: 100%;
+ }
+ .content h3
+ {
+ font-weight: bold;
+ font-size: 1.4em;
+ width: 100%;
+ }
+ .content table p
+ {
+ margin: 0
+ }
+ .content ul
+ {
+ padding-left: 2.5em;
+ }
+ .content li
+ {
+ padding-top: 0.25em;
+ padding-bottom: 0.25em;
+ }
+ .content ul img {
+ vertical-align: middle;
+ }
+
+ .content a:visited
+ {
+ color: #4c0033;
+ text-decoration: none;
+ }
+
+ .content a:visited:hover
+ {
+ color: #4c0033;
+ text-decoration: underline;
+ }
+
+ a:hover
+ {
+ color: #4c0033;
+ text-decoration: underline;
+ }
+ descr p a
+ {
+ text-decoration: underline;
+ }
+
+ .descr p a:visited
+ {
+ text-decoration: underline;
+ }
+
+ .alphaChar{
+ width:95%;
+ background-color:#F6F6F6;
+ border:1px solid #E6E6E6;
+ -moz-border-radius: 7px 7px 7px 7px;
+ border-radius: 7px 7px 7px 7px;
+ -webkit-border-radius: 7px 7px 7px 7px;
+ font-size:12pt;
+ padding-left:10px;
+ margin-top:10px;
+ margin-bottom:10px;
+ }
+ .flowList{
+ /*vertical-align:top;*/
+ /*margin:20px auto;*/
+
+ column-count:3;
+ -webkit-column-count:3;
+ -moz-column-count:3;
+/*
+ column-width:100%;
+ -webkit-column-width:200px;
+ -col-column-width:200px;
+*/
+ column-gap:41px;
+ -webkit-column-gap:41px;
+ -moz-column-gap:41px;
+
+ column-rule: 1px dashed #ccc;
+ -webkit-column-rule: 1px dashed #ccc;
+ -moz-column-rule: 1px dashed #ccc;
+ }
+
+ .flowList dl{
+ }
+ .flowList dd{
+ /*display:inline-block;*/
+ margin-left:10px;
+ min-width:250px;
+ line-height: 1.5;
+ min-width:100%;
+ min-height:15px;
+ }
+
+ .flowList dd a{
+ }
+
+ .content .flowList p{
+ padding:0px;
+ }
+
+ .content .alignedsummary
+ {
+ margin: 15px;
+ }
+
+
+ .qmltype
+ {
+ text-align: center;
+ font-size: 160%;
+ }
+ .qmlreadonly
+ {
+ padding-left: 5px;
+ float: right;
+ color: #254117;
+ }
+
+ .qmldefault
+ {
+ padding-left: 5px;
+ float: right;
+ color: red;
+ }
+
+ .qmldoc
+ {
+ }
+
+ .generic .alphaChar{
+ margin-top:5px;
+ }
+
+ .generic .odd .alphaChar{
+ background-color: #F6F6F6;
+ }
+
+ .generic .even .alphaChar{
+ background-color: #FFFFFF;
+ }
+
+ .memItemRight{
+ padding: 0.25em 1.5em 0.25em 0;
+ }
+ .highlightedCode
+ {
+ margin: 1.0em;
+ }
+ .annotated td {
+ padding: 0.25em 0.5em 0.25em 0.5em;
+ }
+
+ .header .content .toc ul
+ {
+ padding-left: 0px;
+ }
+
+ .content .toc h3 {
+ border-bottom: 0px;
+ margin-top: 0px;
+ }
+
+ .content .toc h3 a:hover {
+ color: #00732F;
+ text-decoration: none;
+ }
+
+ .content .toc .level2
+ {
+ margin-left: 1.5em;
+ }
+
+ .content .toc .level3
+ {
+ margin-left: 3.0em;
+ }
+
+ .content ul li
+ {
+ background: url(../images/bullet_sq.png) no-repeat 0 0.7em;
+ padding-left: 1em
+ }
+
+ .content .toc li
+ {
+ background: url(../images/bullet_dn.png) no-repeat 0 5px;
+ padding-left: 1em
+ }
+
+ .relpage
+ {
+ -moz-border-radius: 7px 7px 7px 7px;
+ -webkit-border-radius: 7px 7px 7px 7px;
+ border-radius: 7px 7px 7px 7px;
+ border: 1px solid #DDDDDD;
+ padding: 25px 25px;
+ clear: both;
+ }
+ .relpage ul
+ {
+ float: none;
+ padding: 1.5em;
+ }
+
+ h3.fn, span.fn
+ {
+ -moz-border-radius:7px 7px 7px 7px;
+ -webkit-border-radius:7px 7px 7px 7px;
+ border-radius:7px 7px 7px 7px;
+ background-color: #F6F6F6;
+ border-width: 1px;
+ border-style: solid;
+ border-color: #E6E6E6;
+ font-weight: bold;
+ word-spacing:3px;
+ padding:3px 5px;
+ }
+
+ .functionIndex {
+ font-size:12pt;
+ word-spacing:10px;
+ margin-bottom:10px;
+ background-color: #F6F6F6;
+ border-width: 1px;
+ border-style: solid;
+ border-color: #E6E6E6;
+ -moz-border-radius: 7px 7px 7px 7px;
+ -webkit-border-radius: 7px 7px 7px 7px;
+ border-radius: 7px 7px 7px 7px;
+ width:100%;
+ }
+
+ .centerAlign
+ {
+ text-align:center;
+ }
+
+ .rightAlign
+ {
+ text-align:right;
+ }
+
+ .leftAlign
+ {
+ text-align:left;
+ }
+
+ .topAlign{
+ vertical-align:top
+ }
+
+ .functionIndex a{
+ display:inline-block;
+ }
+
+/* end content elements */
+/* footer elements */
+
+ .footer
+ {
+ color: #393735;
+ font-size: 0.75em;
+ text-align: center;
+ padding-top: 1.5em;
+ padding-bottom: 1em;
+ background-color: #E6E7E8;
+ margin: 0;
+ }
+ .footer p
+ {
+ margin: 0.25em
+ }
+ .small
+ {
+ font-size: 0.75em;
+ }
+/* end footer elements */
+
+ .item {
+ float: left;
+ position: relative;
+ width: 100%;
+ overflow: hidden;
+ }
+
+
+ .item .primary {
+ margin-right: 220px;
+ position: relative;
+ }
+
+ .item hr {
+ margin-left: -220px;
+ }
+
+ .item .secondary {
+ float: right;
+ width: 200px;
+ position: relative;
+ }
+
+ .item .cols {
+ clear: both;
+ display: block;
+ }
+
+ .item .cols .col {
+ float: left;
+ margin-left: 1.5%;
+ }
+
+ .item .cols .col.first {
+ margin-left: 0;
+ }
+
+ .item .cols.two .col {
+ width: 45%;
+ }
+
+ .item .box {
+ margin: 0 0 10px 0;
+ }
+
+ .item .box h3 {
+ margin: 0 0 10px 0;
+ }
+
+ .cols.unclear {
+ clear:none;
+ }
+}
+
+/* end of screen media */
+
+/* start of print media */
+
+@media print
+{
+ input, textarea, .header, .footer, .toolbar, .feedback, .wrapper .hd, .wrapper .bd .sidebar, .wrapper .ft, #feedbackBox, #blurpage, .toc, .breadcrumb, .toolbar, .floatingResult
+ {
+ display: none;
+ background: none;
+ }
+ .content
+ {
+ background: none;
+ display: block;
+ width: 100%; margin: 0; float: none;
+ }
+}
+/* end of print media */
diff --git a/doc/src/template/style/style.css b/doc/src/template/style/style.css
index d623bd4..451d6bf 100755
--- a/doc/src/template/style/style.css
+++ b/doc/src/template/style/style.css
@@ -1,8 +1,8 @@
@media screen
{
-
+
/* basic elements */
- html
+ html
{
color: #000000;
background: #FFFFFF;
@@ -20,7 +20,7 @@
fieldset, img
{
border: 0;
- max-width:100%;
+ max-width:100%;
}
address, caption, cite, code, dfn, em, strong, th, var, optgroup
{
@@ -60,10 +60,10 @@
{
vertical-align: baseline;
}
- tt, .qmlreadonly span, .qmldefault span
- {
- word-spacing:5px;
- }
+ tt, .qmlreadonly span, .qmldefault span
+ {
+ word-spacing:5px;
+ }
legend
{
color: #000000;
@@ -88,7 +88,7 @@
font-style: italic;
}
- /* adding Qt theme */
+ /* adding Qt theme */
html
{
/* background-color: #e5e5e5;*/
@@ -117,9 +117,9 @@
pre
{
border: 1px solid #DDDDDD;
- -moz-border-radius: 7px 7px 7px 7px;
- -webkit-border-radius: 7px 7px 7px 7px;
- border-radius: 7px 7px 7px 7px;
+ -moz-border-radius: 7px 7px 7px 7px;
+ -webkit-border-radius: 7px 7px 7px 7px;
+ border-radius: 7px 7px 7px 7px;
margin: 0 20px 10px 10px;
padding: 20px 15px 20px 20px;
overflow-x: auto;
@@ -135,14 +135,14 @@
font-size: 11px;
margin-bottom: 25px;
}
- pre.highlightedCode {
- display: block;
- overflow:hidden;
- }
+ pre.highlightedCode {
+ display: block;
+ overflow:hidden;
+ }
thead
{
margin-top: 5px;
- font:600 12px/1.2 Arial;
+ font:600 12px/1.2 Arial;
}
th
{
@@ -155,11 +155,11 @@
padding: 3px 15px 3px 20px;
}
tr.odd td:hover, tr.even td:hover {}
-
- td.rightAlign
- {
+
+ td.rightAlign
+ {
padding: 3px 5px 3px 10px;
- }
+ }
table tr.odd
{
border-left: 1px solid #E6E6E6;
@@ -210,8 +210,6 @@
{
color: black
}
-
-
/* end basic elements */
/* font style elements */
@@ -228,10 +226,10 @@
{
font-size: 13px;
}
- .red
- {
- color:red;
- }
+ .red
+ {
+ color:red;
+ }
/* end font style elements */
/* global settings*/
@@ -255,8 +253,8 @@
clear: both;
visibility: hidden;
}
-
/* end global settings*/
+
/* header elements */
.header
{
@@ -295,7 +293,7 @@
color: #4c0033;
text-decoration: underline;
}
-
+
#nav-topright
{
height: 70px;
@@ -341,7 +339,6 @@
background-position: -2px -117px;
}
-
#nav-topright li.nav-topright-dev a
{
width: 30px;
@@ -416,7 +413,6 @@
overflow: hidden;
}
-
.shortCut-topleft-inactive
{
padding-left: 3px;
@@ -428,10 +424,10 @@
{
font-variant: normal;
}
- .shortCut-topleft-inactive span a:hover, .shortCut-topleft-active a:hover
- {
- text-decoration:none;
- }
+ .shortCut-topleft-inactive span a:hover, .shortCut-topleft-active a:hover
+ {
+ text-decoration:none;
+ }
#shortCut
{
padding-top: 10px;
@@ -460,10 +456,8 @@
{
color: #44a51c;
}
+/* end header elements */
-
-
-/* end header elements */
/* content and sidebar elements */
.wrapper
{
@@ -477,9 +471,6 @@
overflow: hidden;
}
-
-
-
.wrapper .hd span
{
height: 15px;
@@ -493,9 +484,6 @@
position: relative;
}
-
-
-
.wrapper .ft
{
padding-left: 216px;
@@ -504,9 +492,6 @@
overflow: hidden;
}
-
-
-
.wrapper .ft span
{
height: 15px;
@@ -514,17 +499,13 @@
background: url(../images/page.png) no-repeat 100% -60px;
overflow: hidden;
}
- .navTop{
- float:right;
- display:block;
- padding-right:15px;
-
-
- }
-
+ .navTop{
+ float:right;
+ display:block;
+ padding-right:15px;
+ }
+/* end content and sidebar elements */
-
-/* end content and sidebar elements */
/* sidebar elements */
.sidebar
{
@@ -534,11 +515,6 @@
font-size: 11px;
}
-
-
-
-
-
.sidebar .searchlabel
{
padding: 0 0 2px 17px;
@@ -553,9 +529,9 @@
.sidebar .search form
{
background: url(../images/sprites-combined.png) no-repeat -6px -348px;
- height:21px;
- padding:2px 0 0 5px;
- width:167px;
+ height:21px;
+ padding:2px 0 0 5px;
+ width:167px;
}
.sidebar .search form input#pageType
@@ -613,10 +589,10 @@
.sidebar .box .list
{
display: block;
- max-height:200px;
- min-height:120px;
- overflow-y:auto;
- overflow-x:none;
+ max-height:200px;
+ min-height:120px;
+ overflow-y:auto;
+ overflow-x:none;
}
.list li a:hover
{
@@ -624,9 +600,9 @@
}
.sidebar .box ul
{
- padding-bottom:5px;
- padding-left:10px;
- padding-top:5px;
+ padding-bottom:5px;
+ padding-left:10px;
+ padding-top:5px;
}
.sidebar .box ul li
{
@@ -638,153 +614,150 @@
{
background: url(../images/box_bg.png) repeat-x 0 bottom;
}
- .sidebar .box ul li.noMatch
+ .sidebar .box ul li.noMatch
{
background: none;
- color:#FF2A00;
- font-style:italic;
+ color:#FF2A00;
+ font-style:italic;
}
- .sidebar .box ul li.hit
+ .sidebar .box ul li.hit
{
background: none;
- color:#AAD2F0;
- font-style:italic;
- }
- .sidebar .search form input.loading
- {
- background:url("../images/spinner.gif") no-repeat scroll right center transparent;
- }
-
- .sidebar .search form {
- _height: 23px;
- _width: 169px;
- }
-
- #resultdialog {
- display: none;
- position: absolute;
- *left: 30px;
- _left: 0;
- *top: 35px;
- _top: 30px;
- _zoom: 1;
- background-color: #fff;
- border: 1px solid #666;
- z-index: 4;
- margin-top: 5px;
- _margin: 0 0 0 -20px;
- padding: 10px;
- width: 30%;
- _width: 196px;
- height: 250px;
- overflow: auto;
- -webkit-border-radius: .5em;
- -moz-border-radius: .5em;
- border-radius: .5em;
- -webkit-box-shadow: 0 4px 6px 0 rgba(0,0,0,.2);
- -moz-box-shadow: 0 4px 6px 0 rgba(0,0,0,.2);
- box-shadow: 0 4px 6px 0 rgba(0,0,0,.2);
- font-size: 11px;
- }
-
- #resultdialog a
- {
+ color:#AAD2F0;
+ font-style:italic;
+ }
+ .sidebar .search form input.loading
+ {
+ background:url("../images/spinner.gif") no-repeat scroll right center transparent;
+ }
+
+ .sidebar .search form {
+ _height: 23px;
+ _width: 169px;
+ }
+
+ #resultdialog {
+ display: none;
+ position: absolute;
+ *left: 30px;
+ _left: 0;
+ *top: 35px;
+ _top: 30px;
+ _zoom: 1;
+ background-color: #fff;
+ border: 1px solid #666;
+ z-index: 4;
+ margin-top: 5px;
+ _margin: 0 0 0 -20px;
+ padding: 10px;
+ width: 30%;
+ _width: 196px;
+ height: 250px;
+ overflow: auto;
+ -webkit-border-radius: .5em;
+ -moz-border-radius: .5em;
+ border-radius: .5em;
+ -webkit-box-shadow: 0 4px 6px 0 rgba(0,0,0,.2);
+ -moz-box-shadow: 0 4px 6px 0 rgba(0,0,0,.2);
+ box-shadow: 0 4px 6px 0 rgba(0,0,0,.2);
+ font-size: 11px;
+ }
+
+ #resultdialog a
+ {
color: #00732f;
- }
-
- #resultdialog.active {
- display: block;
- }
-
- .narrow #resultdialog {
- width: 60%;
- _width: 360px;
- }
-
- .narrow #resultdialog.active {
- right: 10px;
- *left: auto;
- _left: auto;
- _right: -20px;
- }
-
-
- #resultdialog #resultclose {
- float: right;
- }
-
- #resultdialog p,
- #resultdialog ul {
- clear: both;
- margin: 3px 0;
- }
-
- p#searchcount span {
- display: none;
- }
-
- p#searchcount.all span#resultcount,
- p#searchcount.api span#apicount,
- p#searchcount.article span#articlecount,
- p#searchcount.example span#examplecount {
- display: inline;
- }
-
- #resultlist li {
- display: none;
- }
-
- #resultlist.api li.api,
- #resultlist.article li.article,
- #resultlist.example li.example,
- #resultlist.all li {
- display: block;
- }
-
- #resultlinks.api a#showapiresults,
- #resultlinks.api a#showapiresults:hover,
- #resultlinks.article a#showarticleresults,
- #resultlinks.article a#showarticleresults:hover,
- #resultlinks.example a#showexampleresults,
- #resultlinks.example a#showexampleresults:hover,
- #resultlinks.all a#showallresults,
- #resultlinks.all a#showallresults:hover {
- color: #B0ADAB;
- }
- .floatingResult{
- z-index:1;
- position:relative;
- padding-top:0px;
- background-color:white;
- border:solid 1px black;
- height:250px;
- width:600px;
- overflow-x:hidden;
- overflow-y:auto;
- }
-
- .floatingResult:hover{
- display:block;
- }
- .floatingResult:hover{
- }
-
+ }
+
+ #resultdialog.active {
+ display: block;
+ }
+
+ .narrow #resultdialog {
+ width: 60%;
+ _width: 360px;
+ }
+
+ .narrow #resultdialog.active {
+ right: 10px;
+ *left: auto;
+ _left: auto;
+ _right: -20px;
+ }
+
+
+ #resultdialog #resultclose {
+ float: right;
+ }
+
+ #resultdialog p,
+ #resultdialog ul {
+ clear: both;
+ margin: 3px 0;
+ }
+
+ p#searchcount span {
+ display: none;
+ }
+
+ p#searchcount.all span#resultcount,
+ p#searchcount.api span#apicount,
+ p#searchcount.article span#articlecount,
+ p#searchcount.example span#examplecount {
+ display: inline;
+ }
+
+ #resultlist li {
+ display: none;
+ }
+
+ #resultlist.api li.api,
+ #resultlist.article li.article,
+ #resultlist.example li.example,
+ #resultlist.all li {
+ display: block;
+ }
+
+ #resultlinks.api a#showapiresults,
+ #resultlinks.api a#showapiresults:hover,
+ #resultlinks.article a#showarticleresults,
+ #resultlinks.article a#showarticleresults:hover,
+ #resultlinks.example a#showexampleresults,
+ #resultlinks.example a#showexampleresults:hover,
+ #resultlinks.all a#showallresults,
+ #resultlinks.all a#showallresults:hover {
+ color: #B0ADAB;
+ }
+ .floatingResult{
+ z-index:1;
+ position:relative;
+ padding-top:0px;
+ background-color:white;
+ border:solid 1px black;
+ height:250px;
+ width:600px;
+ overflow-x:hidden;
+ overflow-y:auto;
+ }
+
+ .floatingResult:hover{
+ display:block;
+ }
+ .floatingResult:hover{
+ }
/* end sidebar elements */
+
/* content elements */
.wrap
{
margin: 0 5px 0 208px;
- overflow: visible;
+ overflow: visible;
}
-
-
-
.wrap .toolbar
{
background-color: #fafafa;
border-bottom: 1px solid #d1d1d1;
- height: 20px;
+ height: 20px;
position: relative;
}
.wrap .toolbar .toolblock
@@ -866,11 +839,10 @@
color: #00732F;
}
-
.wrap .content
{
padding: 30px;
- word-wrap:break-word;
+ word-wrap:break-word;
}
.wrap .breadcrumb ul
@@ -899,32 +871,29 @@
margin-left: 0;
}
+ .wrap .content ol li {
+ background:none;
+ font:normal 10pt/1.2 Verdana;
-
-
- .wrap .content ol li {
- background:none;
- font:normal 10pt/1.2 Verdana;
-
- margin-bottom:10px;
- margin-left:12px;
- /*list-style-type:disc;*/
- }
+ margin-bottom:10px;
+ margin-left:12px;
+ /*list-style-type:disc;*/
+ }
.wrap .content ol li
{
- background:none;
- margin-bottom: 10px;
- padding-left:0px;
- margin-left:52px;
+ background:none;
+ margin-bottom: 10px;
+ padding-left:0px;
+ margin-left:52px;
}
-
+
.wrap .content li
{
background: url(../images/bullet_sq.png) no-repeat 0 5px;
font: normal 400 10pt/1.2 Verdana;
- margin-bottom: 10px;
- padding-left:12px;
+ margin-bottom: 10px;
+ padding-left:12px;
}
.content li:hover {}
@@ -935,16 +904,16 @@
}
.wrap .content h2
{
- font:600 16px/1.2 Arial;
- margin-top:15px;
- width:100%;
+ font:600 16px/1.2 Arial;
+ margin-top:15px;
+ width:100%;
}
.wrap .content h3
{
font: bold 14px/1.2 Arial;
- font:600 16px/1.2 Arial;
- margin-top:15px;
- width:100%;
+ font:600 16px/1.2 Arial;
+ margin-top:15px;
+ width:100%;
}
.wrap .content p
{
@@ -954,25 +923,25 @@
.wrap .content table p
{
line-height: 20px;
- }
+ }
.wrap .content ul
{
padding-left: 25px;
padding-top: 10px;
}
- .wrap .content ul img {
- vertical-align:middle;
- }
+ .wrap .content ul img {
+ vertical-align:middle;
+ }
a:hover
{
color: #4c0033;
text-decoration: underline;
}
- descr p a
+ descr p a
{
text-decoration: underline;
}
-
+
.descr p a:visited
{
text-decoration: underline;
@@ -993,56 +962,56 @@
color: #00732F;
text-decoration: underline;
}
- .alphaChar{
- width:95%;
- background-color:#F6F6F6;
- border:1px solid #E6E6E6;
- -moz-border-radius: 7px 7px 7px 7px;
- border-radius: 7px 7px 7px 7px;
- -webkit-border-radius: 7px 7px 7px 7px;
- font-size:12pt;
- padding-left:10px;
- margin-top:10px;
- margin-bottom:10px;
- }
- .flowList{
- /*vertical-align:top;*/
- /*margin:20px auto;*/
-
- column-count:3;
- -webkit-column-count:3;
- -moz-column-count:3;
+ .alphaChar{
+ width:95%;
+ background-color:#F6F6F6;
+ border:1px solid #E6E6E6;
+ -moz-border-radius: 7px 7px 7px 7px;
+ border-radius: 7px 7px 7px 7px;
+ -webkit-border-radius: 7px 7px 7px 7px;
+ font-size:12pt;
+ padding-left:10px;
+ margin-top:10px;
+ margin-bottom:10px;
+ }
+ .flowList{
+ /*vertical-align:top;*/
+ /*margin:20px auto;*/
+
+ column-count:3;
+ -webkit-column-count:3;
+ -moz-column-count:3;
/*
- column-width:100%;
- -webkit-column-width:200px;
- -col-column-width:200px;
+ column-width:100%;
+ -webkit-column-width:200px;
+ -col-column-width:200px;
*/
- column-gap:41px;
- -webkit-column-gap:41px;
- -moz-column-gap:41px;
-
- column-rule: 1px dashed #ccc;
- -webkit-column-rule: 1px dashed #ccc;
- -moz-column-rule: 1px dashed #ccc;
- }
-
- .flowList dl{
- }
- .flowList dd{
- /*display:inline-block;*/
- margin-left:10px;
- min-width:250px;
- line-height: 1.5;
- min-width:100%;
- min-height:15px;
- }
-
- .flowList dd a{
- }
-
- .wrap .content .flowList p{
- padding:0px;
- }
+ column-gap:41px;
+ -webkit-column-gap:41px;
+ -moz-column-gap:41px;
+
+ column-rule: 1px dashed #ccc;
+ -webkit-column-rule: 1px dashed #ccc;
+ -moz-column-rule: 1px dashed #ccc;
+ }
+
+ .flowList dl{
+ }
+ .flowList dd{
+ /*display:inline-block;*/
+ margin-left:10px;
+ min-width:250px;
+ line-height: 1.5;
+ min-width:100%;
+ min-height:15px;
+ }
+
+ .flowList dd a{
+ }
+
+ .wrap .content .flowList p{
+ padding:0px;
+ }
.content .alignedsummary
{
@@ -1092,7 +1061,7 @@
background-color: #e6e7e8;
z-index: 4;
}
- #feedcloseX
+ #feedcloseX
{
display: inline;
padding: 5px 5px 0 0;
@@ -1110,25 +1079,25 @@
height: 120px;
margin: 0px 25px 10px 15px;
}
- #noteHead
- {
- font-weight:bold;
- padding:10px 10px 10px 20px;
- }
+ #noteHead
+ {
+ font-weight:bold;
+ padding:10px 10px 10px 20px;
+ }
#feedsubmit
{
display: inline;
float: right;
margin: 4px 32px 0 0;
}
-
- .note
- {
- font-size:7pt;
- padding-bottom:3px;
- padding-left:20px;
- }
-
+
+ .note
+ {
+ font-size:7pt;
+ padding-bottom:3px;
+ padding-left:20px;
+ }
+
#blurpage
{
display: none;
@@ -1160,67 +1129,67 @@
font: bold 12px/1.2 Arial;
}
- .generic{
- }
- .generic td{
- /* padding:5px;*/
- }
- .generic .alphaChar{
- margin-top:5px;
- }
-
- .generic .odd .alphaChar{
+ .generic{
+ }
+ .generic td{
+ /* padding:5px;*/
+ }
+ .generic .alphaChar{
+ margin-top:5px;
+ }
+
+ .generic .odd .alphaChar{
background-color: #F6F6F6;
- }
-
- .generic .even .alphaChar{
+ }
+
+ .generic .even .alphaChar{
background-color: #FFFFFF;
- }
-
- .alignedsummary{}
- .propsummary{}
- .memItemLeft{}
- .memItemRight{
- padding:3px 15px 3px 0;
- }
- .bottomAlign{}
- .highlightedCode
- {
- margin:10px;
- }
- .LegaleseLeft{}
- .valuelist{}
- .annotated td{
- padding: 3px 5px 3px 5px;
- }
- .obsolete{}
- .compat{}
- .flags{}
- .qmlsummary{}
- .qmlitem{}
- .qmlproto{}
- .qmlname{}
- .qmlreadonly{}
- .qmldefault{}
- .qmldoc{}
- .qt-style{}
- .redFont{}
- code{}
-
+ }
+
+ .alignedsummary{}
+ .propsummary{}
+ .memItemLeft{}
+ .memItemRight{
+ padding:3px 15px 3px 0;
+ }
+ .bottomAlign{}
+ .highlightedCode
+ {
+ margin:10px;
+ }
+ .LegaleseLeft{}
+ .valuelist{}
+ .annotated td{
+ padding: 3px 5px 3px 5px;
+ }
+ .obsolete{}
+ .compat{}
+ .flags{}
+ .qmlsummary{}
+ .qmlitem{}
+ .qmlproto{}
+ .qmlname{}
+ .qmlreadonly{}
+ .qmldefault{}
+ .qmldoc{}
+ .qt-style{}
+ .redFont{}
+ code{}
+
.wrap .content .toc ul
{
padding-left: 0px;
}
- .wrap .content .toc h3{
- border-bottom:0px;
- margin-top:0px;
- }
-
- .wrap .content .toc h3 a:hover{
- color:#00732F;
- text-decoration:none;
- }
+ .wrap .content .toc h3{
+ border-bottom:0px;
+ margin-top:0px;
+ }
+
+ .wrap .content .toc h3 a:hover{
+ color:#00732F;
+ text-decoration:none;
+ }
.wrap .content .toc .level2
@@ -1258,60 +1227,58 @@
}
h3.fn, span.fn
{
- -moz-border-radius:7px 7px 7px 7px;
- -webkit-border-radius:7px 7px 7px 7px;
- border-radius:7px 7px 7px 7px;
+ -moz-border-radius:7px 7px 7px 7px;
+ -webkit-border-radius:7px 7px 7px 7px;
+ border-radius:7px 7px 7px 7px;
background-color: #F6F6F6;
border-width: 1px;
border-style: solid;
border-color: #E6E6E6;
font-weight: bold;
- word-spacing:3px;
- padding:3px 5px;
- }
-
- .functionIndex {
- font-size:12pt;
- word-spacing:10px;
- margin-bottom:10px;
- background-color: #F6F6F6;
- border-width: 1px;
- border-style: solid;
- border-color: #E6E6E6;
- -moz-border-radius: 7px 7px 7px 7px;
- -webkit-border-radius: 7px 7px 7px 7px;
- border-radius: 7px 7px 7px 7px;
- width:100%;
- }
-
- .centerAlign
- {
- text-align:center;
- }
-
- .rightAlign
- {
- text-align:right;
- }
-
-
- .leftAlign
- {
- text-align:left;
- }
-
- .topAlign{
- vertical-align:top
- }
-
- .functionIndex a{
- display:inline-block;
- }
-
+ word-spacing:3px;
+ padding:3px 5px;
+ }
+
+ .functionIndex {
+ font-size:12pt;
+ word-spacing:10px;
+ margin-bottom:10px;
+ background-color: #F6F6F6;
+ border-width: 1px;
+ border-style: solid;
+ border-color: #E6E6E6;
+ -moz-border-radius: 7px 7px 7px 7px;
+ -webkit-border-radius: 7px 7px 7px 7px;
+ border-radius: 7px 7px 7px 7px;
+ width:100%;
+ }
+
+ .centerAlign
+ {
+ text-align:center;
+ }
+
+ .rightAlign
+ {
+ text-align:right;
+ }
+
+ .leftAlign
+ {
+ text-align:left;
+ }
+
+ .topAlign{
+ vertical-align:top
+ }
+
+ .functionIndex a{
+ display:inline-block;
+ }
/* end content elements */
-/* footer elements */
- .footer
+/* footer elements */
+ .footer
{
min-height: 100px;
color: #797775;
@@ -1321,20 +1288,17 @@
background-color: #E6E7E8;
margin: 0;
}
- .small
+ .small
{
font: normal 9px/1 Verdana;
- }
+ }
/* end footer elements */
-
-
-
/* start index box */
.indexbox
{
width: 100%;
- display:inline-block;
+ display:inline-block;
}
.indexboxcont
@@ -1354,26 +1318,24 @@
.indexboxcont .section
{
display: inline-block;
- width: 49%;
+ width: 49%;
*width:42%;
_width:42%;
padding:0 2% 0 1%;
vertical-align:top;
-
-}
+ }
.indexboxcont .indexIcon
{
- width: 11%;
+ width: 11%;
*width:18%;
_width:18%;
overflow:hidden;
+ }
-}
-
-.indexboxcont .section {
- float: left;
-}
+ .indexboxcont .section {
+ float: left;
+ }
.indexboxcont .section p
{
@@ -1383,8 +1345,8 @@
.indexboxcont .sectionlist
{
display: inline-block;
- vertical-align:top;
- width: 32.5%;
+ vertical-align:top;
+ width: 32.5%;
padding: 0;
}
.indexboxcont .sectionlist ul
@@ -1413,17 +1375,16 @@
color: #00732f;
text-decoration: none;
}
-
- .indexbox .indexIcon {
- width: 11%;
- }
-
+ .indexbox .indexIcon {
+ width: 11%;
+ }
+
.indexbox .indexIcon span
{
display: block;
}
-
+
.indexbox.guide .indexIcon span
{
width: 96px;
@@ -1431,7 +1392,7 @@
background: url(../images/sprites-combined.png) no-repeat -5px -376px;
padding: 0;
}
-
+
.indexbox.tools .indexIcon span
{
width: 115px;
@@ -1447,56 +1408,55 @@
clear: both;
visibility: hidden;
}
-
+
/* start of creator spec*/
- .creator
- {
- margin-left:0px;
- margin-right:0px;
- padding-left:0px;
- padding-right:0px;
- }
- .creator .wrap .content ol li {
- list-style-type:decimal;
-
- }
+ .creator
+ {
+ margin-left:0px;
+ margin-right:0px;
+ padding-left:0px;
+ padding-right:0px;
+ }
+ .creator .wrap .content ol li {
+ list-style-type:decimal;
+ }
.creator .header .icon,
- .creator .feedback,
- .creator .t_button,
.creator .feedback,
- .creator #feedbackBox,
- .creator #feedback,
- .creator #blurpage,
- /*.creator .indexbox .indexIcon span,*/
- .creator .wrapper .hd,
-/* .creator .indexbox .indexIcon,*/
- .creator .header #nav-logo,
- .creator #offlinemenu,
- .creator #offlinesearch,
- .creator .header #nav-topright,
+ .creator .t_button,
+ .creator .feedback,
+ .creator #feedbackBox,
+ .creator #feedback,
+ .creator #blurpage,
+ /* .creator .indexbox .indexIcon span,*/
+ .creator .wrapper .hd,
+ /* .creator .indexbox .indexIcon,*/
+ .creator .header #nav-logo,
+ .creator #offlinemenu,
+ .creator #offlinesearch,
+ .creator .header #nav-topright,
.creator .header #shortCut ,
- .creator .wrapper .hd,
+ .creator .wrapper .hd,
.creator .wrapper .ft,
- .creator .sidebar,
- .creator .wrap .feedback
+ .creator .sidebar,
+ .creator .wrap .feedback
{
- display:none;
+ display:none;
}
-
- body.creator
+
+ body.creator
{
- background: none;
+ background: none;
font: normal 13px/1.2 Verdana;
color: #363534;
- background-color: #FAFAFA;
+ background-color: #FAFAFA;
}
- .wrap .content ol li {
-
- }
+ .wrap .content ol li {
+
+ }
.creator .header, .creator .footer, .creator .wrapper
@@ -1505,19 +1465,18 @@
margin: 0px;
}
- .creator .wrapper
+ .creator .wrapper
{
- position:relative;
- top:5px;
+ position:relative;
+ top:5px;
}
.creator .wrapper .bd
- {
-
- background:#FFFFFF;
- }
+ {
+ background:#FFFFFF;
+ }
- .creator .header, .footer
+ .creator .header, .footer
{
display: block;
clear: both;
@@ -1532,81 +1491,74 @@
.creator .header .qtref span
{
- background:none;
- }
-
+ background:none;
+ }
-
- .creator .footer
+ .creator .footer
{
- border-top:1px solid #E5E5E5;
+ border-top:1px solid #E5E5E5;
height: 50px;
- margin:0px;
- padding:10px;
+ margin:0px;
+ padding:10px;
}
-
- .creator .footer p
- {
- text-align:justify;
- max-width:900px;
- }
-
- .creator .wrap
+
+ .creator .footer p
{
+ text-align:justify;
+ max-width:900px;
+ }
+ .creator .wrap
+ {
padding:0 5px 0 5px;
- margin: 0px;
+ margin: 0px;
}
.creator .wrap .toolbar
{
-
-
- border-bottom:1px solid #E5E5E5;
- /*width:100%;*/
- margin-left:-5px;
- margin-right:-5px;
- }
+ border-bottom:1px solid #E5E5E5;
+ /*width:100%;*/
+ margin-left:-5px;
+ margin-right:-5px;
+ }
.creator .wrap .breadcrumb ul li a
{
/* color: #363534;*/
color: #00732F;
- }
-
+ }
+
.creator .wrap .content
{
padding: 0px;
- word-wrap:break-word;
+ word-wrap:break-word;
}
-
- .creator .wrap .content ol li {
- background:none;
- font: inherit;
+
+ .creator .wrap .content ol li {
+ background:none;
+ font: inherit;
padding-left: 0px;
- }
-
- .creator .wrap .content .descr ol li {
- margin-left: 45px;
+ }
+ .creator .wrap .content .descr ol li {
+ margin-left: 45px;
}
+
.creator .content .alignedsummary
{
margin: 5px;
- width:100%;
- }
- .creator .generic{
- max-width:75%;
- }
- .creator .generic td{
- /*padding:0;*/
- }
+ width:100%;
+ }
+ .creator .generic{
+ max-width:75%;
+ }
+ .creator .generic td{
+ /*padding:0;*/
+ }
.creator .indexboxbar
{
- border-bottom:1px solid #E5E5E5;
+ border-bottom:1px solid #E5E5E5;
margin-bottom: 25px;
- background: none;
+ background: none;
}
-
-
.creator .header
{
@@ -1616,20 +1568,11 @@
background-color: #ffffff;
padding: 10px 0 5px 0;
overflow: visible;
- border-bottom: solid #E5E5E5 1px;
- z-index:1;
-
-
-
-
-
-
-
-
- /* position:fixed;*/
+ border-bottom: solid #E5E5E5 1px;
+ z-index:1;
+ /* position:fixed;*/
}
-
.creator .header .content
{
}
@@ -1645,32 +1588,25 @@
.creator .header .qtref:visited
{
color: #00732F;
- }
+ }
.creator .header .qtref:hover
{
color: #00732F;
- text-decoration:none;
- }
+ text-decoration:none;
+ }
.creator .header .qtref span
{
background-image: none;
text-indent: 0;
- text-decoration:none;
+ text-decoration:none;
}
-
-
-
-
-
.creator .wrap .toolbar
{
display:block;
- padding-top:0px;
+ padding-top:0px;
}
-
-
.creator .wrap .breadcrumb ul li {
font-weight: normal;
}
@@ -1682,80 +1618,78 @@
.creator .wrap .breadcrumb ul li.last a {
/*color: #363534;*/
}
-
- .creator #narrowmenu ul
- {
- border-bottom:solid 1px #E5E5E5;
- border-left:solid 1px #E5E5E5;
- border-right:solid 1px #E5E5E5;
- }
+
+ .creator #narrowmenu ul
+ {
+ border-bottom:solid 1px #E5E5E5;
+ border-left:solid 1px #E5E5E5;
+ border-right:solid 1px #E5E5E5;
+ }
.creator #narrowmenu li ul {
margin-top:-15px;
- }
+ }
+ .creator .toc {
+ margin:10px 20px 10px 10px;
+ }
- .creator .toc {
- margin:10px 20px 10px 10px;
- }
-
- .creator #narrowsearch, .creator #narrowmenu{
- display:none;
- }
+ .creator #narrowsearch, .creator #narrowmenu{
+ display:none;
+ }
/* end of creator spec*/
-
- .item {
- float: left;
- position: relative;
- width: 100%;
- overflow: hidden;
- }
-
-
- .item .primary {
- margin-right: 220px;
- position: relative;
- }
-
- .item hr {
- margin-left: -220px;
- }
-
- .item .secondary {
- float: right;
- width: 200px;
- position: relative;
- }
-
- .item .cols {
- clear: both;
- display: block;
- }
-
- .item .cols .col {
- float: left;
- margin-left: 1.5%;
- }
-
- .item .cols .col.first {
- margin-left: 0;
- }
-
- .item .cols.two .col {
- width: 45%;
- }
-
- .item .box {
- margin: 0 0 10px 0;
- }
-
- .item .box h3 {
- margin: 0 0 10px 0;
- }
-
- .cols.unclear {
- clear:none;
- }
+
+ .item {
+ float: left;
+ position: relative;
+ width: 100%;
+ overflow: hidden;
+ }
+
+ .item .primary {
+ margin-right: 220px;
+ position: relative;
+ }
+
+ .item hr {
+ margin-left: -220px;
+ }
+
+ .item .secondary {
+ float: right;
+ width: 200px;
+ position: relative;
+ }
+
+ .item .cols {
+ clear: both;
+ display: block;
+ }
+
+ .item .cols .col {
+ float: left;
+ margin-left: 1.5%;
+ }
+
+ .item .cols .col.first {
+ margin-left: 0;
+ }
+
+ .item .cols.two .col {
+ width: 45%;
+ }
+
+ .item .box {
+ margin: 0 0 10px 0;
+ }
+
+ .item .box h3 {
+ margin: 0 0 10px 0;
+ }
+
+ .cols.unclear {
+ clear:none;
+ }
}
/* end of screen media */
@@ -1773,8 +1707,7 @@
{
background: none;
display: block;
- width: 100%; margin: 0; float: none;
-
+ width: 100%; margin: 0; float: none;
}
}
/* end of print media */
diff --git a/doc/src/template/style/superfish.css b/doc/src/template/style/superfish.css
index 0cf0f7d..2bdaef4 100644
--- a/doc/src/template/style/superfish.css
+++ b/doc/src/template/style/superfish.css
@@ -1,51 +1,51 @@
.sf-menu, .sf-menu * {
- margin: 0;
- padding: 0;
- list-style: none;
+ margin: 0;
+ padding: 0;
+ list-style: none;
}
.sf-menu {
- line-height: 1.0;
+ line-height: 1.0;
}
.sf-menu ul {
- position: absolute;
- top: -999em;
- width: 10em; /* left offset of submenus need to match (see below) */
+ position: absolute;
+ top: -999em;
+ width: 10em; /* left offset of submenus need to match (see below) */
}
.sf-menu ul li {
- width: 100%;
+ width: 100%;
}
.sf-menu li:hover {
- visibility: inherit; /* fixes IE7 'sticky bug' */
+ visibility: inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
- float: left;
- position: relative;
+ float: left;
+ position: relative;
}
.sf-menu a {
- display: block;
- position: relative;
+ display: block;
+ position: relative;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
- left: 0;
- top: 2.5em; /* match top ul list item height */
- z-index: 99;
+ left: 0;
+ top: 2.5em; /* match top ul list item height */
+ z-index: 99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
- top: -999em;
+ top: -999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
- left: 10em; /* match ul width */
- top: 0;
+ left: 10em; /* match ul width */
+ top: 0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
- top: -999em;
+ top: -999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
- left: 10em; /* match ul width */
- top: 0;
+ left: 10em; /* match ul width */
+ top: 0;
}