summaryrefslogtreecommitdiffstats
path: root/src/datavisualization
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2017-03-02 17:20:40 +0100
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2017-03-03 07:37:41 +0000
commit7d278e3bcfc27b4ad06f500a406c5b8ff18953de (patch)
treea965d5461c80b90315930f42796729d818994c15 /src/datavisualization
parent6eef3713c3d31749f82ca711825cd791edfdc38c (diff)
Doc: Remove installation and build information
Qt Data Visualization is now a standard Qt module that can be installed and built as any other module. Change-Id: Idb7e05304e159c30614d728529261d3ec2ea6002 Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
Diffstat (limited to 'src/datavisualization')
-rw-r--r--src/datavisualization/doc/src/qtdatavisualization-index.qdoc9
-rw-r--r--src/datavisualization/doc/src/qtdatavisualization.qdoc115
2 files changed, 6 insertions, 118 deletions
diff --git a/src/datavisualization/doc/src/qtdatavisualization-index.qdoc b/src/datavisualization/doc/src/qtdatavisualization-index.qdoc
index 0a5f0434..10534df3 100644
--- a/src/datavisualization/doc/src/qtdatavisualization-index.qdoc
+++ b/src/datavisualization/doc/src/qtdatavisualization-index.qdoc
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2016 The Qt Company Ltd.
+** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Data Visualization module of the Qt Toolkit.
@@ -75,12 +75,13 @@
\snippet doc_src_qtdatavisualization.pro 0
- See the \l{Qt Data Visualization Getting Started}{Getting started} page for further information on
- how to use Qt Data Visualization in your application.
+ For more information about creating applications that contain different
+ types of graphs, see \l{How to construct a minimal Q3DBars graph},
+ \l{How to construct a minimal Q3DScatter graph}, or
+ \l{How to construct a minimal Q3DSurface graph}.
\section1 Articles
\list
- \li \l{Qt Data Visualization Getting Started}{Getting Started}
\li \l{Qt Data Visualization Data Handling}{Data Handling}
\li \l{Qt Data Visualization Interacting with Data}{Interacting with Data}
\li \l{Qt Data Visualization Known Issues}{Known Issues}
diff --git a/src/datavisualization/doc/src/qtdatavisualization.qdoc b/src/datavisualization/doc/src/qtdatavisualization.qdoc
index 37a05d9d..3b670e51 100644
--- a/src/datavisualization/doc/src/qtdatavisualization.qdoc
+++ b/src/datavisualization/doc/src/qtdatavisualization.qdoc
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2016 The Qt Company Ltd.
+** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Data Visualization module of the Qt Toolkit.
@@ -73,119 +73,6 @@
*/
/*!
- \group qtdatavisualization_getting_started
- \title Qt Data Visualization Getting Started
-
- \section1 Installing the Qt Data Visualization Module
-
- Use the \c {Package Manager} in \c {Maintenance Tool} or the \c {Online installer} to install
- the Qt Data Visualization module. The module can be found under \c {Qt Enterprise Add-Ons}
- in the package manager.
-
- After installation Qt Data Visualization documentation and examples are available in Qt Creator.
- Examples can be found on the examples page of Qt Creator by selecting the Qt Data Visualization
- component from the drop-down menu.
-
- The source code is installed into the QtDataVisualization folder under EnterpriseAddOns.
-
- \section1 Building Qt Data Visualization
-
- To build the Qt Data Visualization module from source code yourself, set up a command prompt
- with an environment for building Qt applications, navigate to the directory containing
- \c {qtdatavisualization.pro}, and configure the project with qmake:
- \code
- qmake
- \endcode
-
- After running qmake, build the project with make:
- \table
- \header
- \li OS \li Make command
- \row
- \li Linux \li make
- \row
- \li Windows (MinGw) \li mingw32-make
- \row
- \li Windows (MSVC) \li nmake
- \row
- \li OS X \li make
- \endtable
-
- The above generates the default makefiles for your configuration, which is typically
- the release build if you are using precompiled binary Qt distribution. To build both debug
- and release, or one specifically, use one of the following qmake lines instead.
-
- For debug builds:
- \code
- qmake CONFIG+=debug
- make
- \endcode
- or
- \code
- qmake CONFIG+=debug_and_release
- make debug
- \endcode
-
- For release builds:
- \code
- qmake CONFIG+=release
- make
- \endcode
- or
- \code
- qmake CONFIG+=debug_and_release
- make release
- \endcode
-
- For both builds (Windows/OS X only):
- \code
- qmake CONFIG+="debug_and_release build_all"
- make
- \endcode
-
- After building, install the module to your Qt directory:
- \code
- make install
- \endcode
-
- If you want to uninstall the module:
- \code
- make uninstall
- \endcode
-
- To build a statically linked version of the Qt Data Visualization module, give the following
- commands:
-
- \snippet doc_src_qtdatavisualization.cpp 7
-
- \section1 Creating a Simple Application
-
- To create a simple application, start by creating a new Qt Gui Application project in Qt
- Creator and add this line to the \c .pro file of the project:
-
- \snippet doc_src_qtdatavisualization.pro 0
-
- In the \c main.cpp file, include the module headers and declare namespace usage:
-
- \snippet doc_src_qtdatavisualization.cpp 0
-
- Then, add the sample code found in one of the following pages, depending on what kind of
- visualization you are interested in:
- \l{How to construct a minimal Q3DBars graph},
- \l{How to construct a minimal Q3DScatter graph}, or
- \l{How to construct a minimal Q3DSurface graph}.
-
- To use Qt Data Visualization graphs in widget based applications, you can use
- the QWidget::createWindowContainer() function to wrap the graph into a widget:
-
- \snippet doc_src_qtdatavisualization.cpp 9
-
- For further code examples, see one of the Qt Data Visualization examples:
-
- \annotatedlist qtdatavisualization_examples
-*/
-
-/*!
\page qtdatavisualization_data_handling.html
\title Qt Data Visualization Data Handling