gettingstarted.qdoc
66 lines
| 1.4 KiB
| text/plain
|
TextLexer
Marek Rosa
|
r1438 | /*! | ||
Jani Honkonen
|
r1483 | \page gettingstarted.html | ||
\title QtCommercial Charts getting started | ||||
Marek Rosa
|
r1438 | \keyword Introduction | ||
Marek Rosa
|
r1441 | Compiling: | ||
\code | ||||
qmake CONFIG+=release | ||||
make | ||||
make install | ||||
\endcode | ||||
Jani Honkonen
|
r1480 | Depending on the OS and the compiler you are using "make" might need to be replaced with another command like: nmake, mingw32-make, etc. | ||
Marek Rosa
|
r1441 | |||
Marek Rosa
|
r1510 | To uninstall the QtCommercialCharts run: | ||
\code | ||||
make uninstall | ||||
\endcode | ||||
Jani Honkonen
|
r1480 | Compiling as a static library (lib only): | ||
\code | ||||
qmake CONFIG+=staticlib | ||||
make | ||||
make install | ||||
Marek Rosa
|
r1438 | \endcode | ||
Jani Honkonen
|
r1973 | Building both debug and release at the same time: | ||
\code | ||||
qmake CONFIG+="debug_and_release build_all" | ||||
make | ||||
make install | ||||
\endcode | ||||
Please take a note that the \i build_all option is necessary for the install to work correctly. Otherwise it will not install both versions. | ||||
Jani Honkonen
|
r1480 | \bold {New project} | ||
Create a new project in a usual way and then add to your project's *.pro file following line: | ||||
Marek Rosa
|
r1441 | |||
\code | ||||
Jani Honkonen
|
r1480 | CONFIG += qtcommercialchart | ||
Marek Rosa
|
r1441 | \endcode | ||
\bold {Widget project} | ||||
To use the QCharts classes add QtCommercialChart namespace macro in your header file. | ||||
\code | ||||
Jani Honkonen
|
r1484 | #include<QWidget> | ||
#include<QChartView> | ||||
Marek Rosa
|
r1441 | |||
Jani Honkonen
|
r1484 | QTCOMMERCIALCHART_USE_NAMESPACE | ||
Marek Rosa
|
r1441 | |||
Jani Honkonen
|
r1484 | class ExampleWidget : public QWidget | ||
Marek Rosa
|
r1441 | \endcode | ||
\bold {QML project} | ||||
Add an import line to your *.qml file: | ||||
\code | ||||
Jani Honkonen
|
r1909 | import QtCommercial.Chart 1.1 | ||
Marek Rosa
|
r1441 | \endcode | ||
Marek Rosa
|
r1438 | \raw HTML | ||
\endraw | ||||
*/ | ||||