Commit Graph

2542 Commits

Author SHA1 Message Date
Sergio Ahumada c07b1a694b Update the git-archive export options
The .gitattributes, .gitignore, .commit-template files do not need to be
present in packaged sources, as they are for people using the Git
repository.  People who download tarballs usually don't reimport into
Git -- they should just download the actual repositories.

Meanwhile, the .tag file is quite useful. Instead of making Git extract
to the useless SHA-1 of the "$Id$\n" string, ask git-archive to store
the SHA-1 of the commit being packaged.

Also removing 'tests' and 'tools' directories from the source package.

Change-Id: I6823bad4ee4a5a666532e972a66da075856d5fee
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-10-03 14:13:28 +03:00
Titta Heikkala bcd8645639 Fix Chart build when QT_NO_TEXTSTREAM is defined
If QT_NO_TEXTSTREAM is defined the operator<< can't be used. It's safe
to flag out the streaming operator debug information because the
function itself can't be used when QT_NO_TEXTSTREAM is defined.

Task-number: QTRD-2336
Change-Id: I2d64f4dd03bf65e7ae0e07f4916f245bc71a7458
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-10-03 13:30:46 +03:00
Titta Heikkala c057a56bd2 Remove qmlcustommodel demo from demos.pro
Remove the qmlcustommodel also from demos.pro

Task-number: QTRD-1928
Change-Id: Ifd0764ff2381452054005743935910dee2451520
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-10-02 10:29:53 +03:00
Titta Heikkala 7768c3fc60 Remove qmlcustommodel demo
Qml Custom Model demo removed for now. If there's need for similar demo
in the future a better one should be created.

Task-number: QTRD-1928
Change-Id: I1766dfca4e2a7358f47c40f0e0b7258768c16b22
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-10-02 09:29:41 +03:00
Titta Heikkala 57e2d8f758 Fix legend truncation
Legend marker items that are on a legend which is positioned on the top
or on the bottom of a chart are truncated to fit the space available.
The truncation starts at the longest legend marker item.

Task-number: QTRD-2092
Change-Id: I22581b4447591fda11adab3873553cd5ee3dc001
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-09-27 08:49:53 +03:00
Titta Heikkala 2b1fa3a15e Fix compiler errors when including Windows.h
The Windef.h (included by Windows.h) defines min and max macros. These
conflict with QBarCategoryAxis::min() and max() functions. Defining
NOMINMAX suppresses the min and max definitions in Windef.h.

Task-number: QTRD-2285
Change-Id: Iff797f8c3ff00a582e600db281f0f79930d7b49a
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-09-24 09:23:57 +03:00
Titta Heikkala 43b255a188 Fix text color for debug information
Debug information is drawn with a gray pen so that it can be seen with
all current chart themes.

Task-number: QTRD-2326
Change-Id: I32da226e5ae834ff9b3088ef5fac72e85610508f
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-09-23 13:50:38 +03:00
Titta Heikkala c8086b11ee Fix default axes creation
QAbstractAxis::AxisType enum values are currently sequential so it's not
possible to OR them correctly. Therefore createDefaultAxes() needs to
check whether there are series with different types present. For
multiple series types the QAbstractAxis::AxisTypeNoAxis type is used to
indicate the need for several axes.

The createDefaultAxis() methods have been corrected to return proper
values.

Task-number: QTRD-1999
Change-Id: I3408bd3043b147f9e2b7662fb4d9ca43e7a72da6
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-09-23 13:18:17 +03:00
Titta Heikkala 1a7a17f8e2 Fix Chart build on Solaris
The sine and the square root methods in demos and examples have been
replaced with the ones provided by Qt. This ensures that the code
compiles also on Solaris.

Task-number: QTRD-2262
Change-Id: I776341bac0e623f803b4cad771a02cefc6db1b15
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
Reviewed-by: Milla Pohjanheimo <milla.pohjanheimo@digia.com>
2013-09-19 09:53:38 +03:00
Titta Heikkala 2399960687 Add example of using image as a brush for scatter series
The ScatterChart Example is modified so that it shows how to use an
image as a brush for scatter series. The image is a star and it's
created using QPainterPath.

Task-number: QTRD-2078
Change-Id: Ie92ad56efafaf12af2efe4424be63060f812f9e2
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-09-17 13:36:41 +03:00
Titta Heikkala f23ac19273 Fix logarithmic axis point calculation
For logarithmic axis the geometry point is set even if the point value
is zero or negative. For zero and negative values the x-point is set to
zero and the y-point is set to chart height. This way the bar chart
items can ignore the return value from calculateGeometryPoint() method
and not draw the bar for a value that does not have logarithm defined.

Task-number: QTRD-2065
Change-Id: I7ba4efed6a0678eb487377e3e88bdee9c849a9a3
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-09-16 13:57:45 +03:00
Nico Vertriest 66fa88d106 Doc: language review of Qt Charts doc
Change-Id: I6bdf7b64851d1f0e2b98f37cbf9844aeb205bed1
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-09-16 09:26:32 +03:00
Titta Heikkala cff0f629c1 Fix mouse event handling with RubberBand
The mousePressEvent handles the event differently for rubber band only
if the mouse press occurs on the plot area. This way pressing the mouse
outside plot area will handle the event according to the pressed item
(like legend marker). For the same reason the mouseRelease event handles
the event differently for rubber band only if the rubber band is
displayed.

Task-number: QTRD-2260
Change-Id: Ibedcd2d13a7c2229352074a4df326cd73e9cf80f
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-09-12 13:43:07 +03:00
Titta Heikkala 001bc2f704 Fix setting the axis title
The axis title text needs to be set in the ChartAxisElement only if the
new title is empty or the title is hidden. In other cases the title will
be set in updateGeometry() of the axis.

Removed redundancy of setting title information. The title information
needs to be set only once when creating items for axis.

Task-number: QTRD-2104
Change-Id: Ie29c94215bdbab412a3dbb8368309abbd15aa4d1
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-09-12 09:59:50 +03:00
Titta Heikkala dfd05e587e Fix multiline alignment
For multiline texts the alignment can be set in the following way:
- title:
    axisY->setTitleText("<p align=\"center\">Sunspots<br\>count<p\>");
- label format:
    axisX->setFormat("<p align=\"right\">dd-MM-yyyy<br\>h:mm</p>");

Task-number: QTRD-2058
Change-Id: Ic7afd29ed3b1f9d1cd2f424888196ce743acd8eb
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-09-09 09:47:05 +03:00
Titta Heikkala fb7e40c1cc Add possibility to build Charts without demos and examples
The 'nomake_demos_examples' value can be used with CONFIG variable when
running qmake for charts in order to build Charts without demos and
examples.

Task-number: QTRD-2234
Change-Id: I88a76b168db3b045cd26081a439c3a656ae3a6e6
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-09-05 07:46:50 +03:00
Titta Heikkala 23dc25e6ce Fix ChartView visibility change drawing
New geometry for the ChartPresenter is calculated only when the chart is
visible. The geometry is set for the layout always.

If the visibility of a series changes then the layout of the legend is
only invalidated in case the chart is visible. This removes unnecessary
delay of the legend drawing when the chart is set visible.

Task-number: QTRD-2064
Change-Id: I78e6da3b859af9becf4f5059e9c02981c79f6d64
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-09-04 09:58:29 +03:00
Titta Heikkala 776457a845 Fix long labels visibility for QBarChart
Long labels are truncated vertically and horizontally so that they fit
into the space available. There's no need to hide the labels explicitly
as they are already truncated to the space available.

The truncatedText() method now takes into account also the height of
the space available.

Task-number: QTRD-1929
Change-Id: Ibe2b996e514ddb44c96ce040fc729a605d24c8ab
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-09-03 07:52:45 +03:00
Titta Heikkala 1e4c29e111 Fix zooming in crash
The bounding rect has to fit inside int limits when zooming in, meaning
that the height and width both have to be within the int limits
(INT_MAX). QWidget::update() uses a region (based on bounding rect)
that has to be compatible with QRect. The geometry change is only done
if the bounding rect fulfills this requirement.

Task-number: QTRD-1907
Change-Id: I4e874de355390c5fc983ac1e0976bf0d21e2d10c
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-08-26 12:07:10 +03:00
Titta Heikkala 2e0922f74b Fix missing legend
Hiding the legend items makes it impossible to print the chart with the
legend when the chart is not shown. There's no need to hide the legend
itmes before invalidating the layout.

Task-number: QTRD-2164
Change-Id: Idad23eead869bf2f54328d35c5137326ac895c15
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-08-26 11:01:43 +03:00
Titta Heikkala 3161246ee8 Fix empty QAreaSeries crash
It's checked that the upper series is set for the AreaChartItem before
usint the series.

Task-number: QTRD-1808
Change-Id: Ied59991b355525f7b203625851c81aa2b9935ec6
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-08-19 14:41:10 +03:00
Titta Heikkala 1aa9b23ddd Add hovered signal with index for bar charts
Added hovered signal for bar charts including the hovered bar inside the
set. The hovered bar is identified by the index.

Documentation and tests are updated accordingly.

Task-number: QTRD-2161
Change-Id: I96c9d86975441274a697dec794b22e906fb44243
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-08-19 10:58:59 +03:00
Titta Heikkala d8e784e0dd Fix boxplottertester
OpenGL was unnecessarily added to the project. This caused the build to
fail for VxWorks. The 'opengl' is removed from the project.

Task-number: QTRD-2159
Change-Id: Ic330f7e65661affd024c5204ae425812aea42c41
Reviewed-by: Karim Pinter <karim.pinter@digia.com>
Reviewed-by: Mika Salmela <mika.salmela@digia.com>
2013-08-19 10:41:59 +03:00
Titta Heikkala 764a09c2b2 Improve theme initialization performance for bar series
The bar series are not updated while the theme is initialized. The
update will be done after the theme is ready. This reduces the time
spent to initialize the theme from seconds to milliseconds.

Task-number: QTRD-2163
Change-Id: Ie111d8b42e017d0a514ca773bc8a714295d1eaa2
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-08-15 10:26:32 +03:00
Titta Heikkala 949e3e7093 Fix dynamic qml axis switch
The axis is set so that previously attached axes are deleted.

Task-number: QTRD-1936
Change-Id: I4fc486b3f2552eea168ba5fb44c1b82f1c5ebad0
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-08-14 08:37:38 +03:00
Titta Heikkala 1427ecd2e3 Fix pie chart label clipping
The text rectangle for a label in a pie chart is adjusted so that it
fits into the chart. The text is also truncated if there's not enough
space for a label when the label is positioned outside the slice.

Task-number: QTRD-1929
Change-Id: I86b722fbb0c8f7047bca8611b88871a8f7464ec1
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-08-12 13:46:53 +03:00
Miikka Heikkinen 504bb5e5bc Fix memory leak on demolauncher
Change-Id: I547cf11134e5df93a53a2d4d1c58ab557b718a41
Reviewed-by: Mika Salmela <mika.salmela@digia.com>
2013-06-19 12:15:18 +03:00
Heikkinen Miikka 9206d177b8 Initialize m_updatePending
No explicit initialization resulted in this sometimes
initializing to true, which caused chart to never draw
in multithreaded rendering environments (linux/mac)

Change-Id: I5c9a4eb54c0a4aef7c1df171aa04d4b8c4c7fe05
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-06-19 09:08:55 +03:00
Miikka Heikkinen f2038dcff9 Fix degree symbols in examples/demos
Change-Id: I31c22aa088c3457a78a1fbbe35e160425b18d4f4
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-06-18 11:37:26 +03:00
Miikka Heikkinen 621c955c10 Fix text item margins
Also fixes the vertical axis title truncation issue.

Change-Id: I3436705719946118e7c06dcf0fd2a1ada880e200
Reviewed-by: Mika Salmela <mika.salmela@digia.com>
2013-06-18 11:17:32 +03:00
Miikka Heikkinen e2012dc8fe Fix some docs issues
Related to this, also increase size of qmlpolarchart demo.

Change-Id: Ic8d88bcdc69607dcee813fe650219e2286ae7092
Reviewed-by: Mika Salmela <mika.salmela@digia.com>
2013-06-17 15:18:09 +03:00
Miikka Heikkinen 1ddbae1713 One more enterprise change to docs
Change-Id: I00c10baeb244ae2fccae7bfdef5432f7a91d0cb7
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-06-17 12:03:53 +03:00
Miikka Heikkinen 1d8a6e6f73 Fix documentation header
Removed "QCharts" from the image and added "Qt Charts" as text
below it. Easier to maintain when the text is not part of the image.

Change-Id: I5410e61ef4d16271c777f5206a549643de588990
Reviewed-by: Mika Salmela <mika.salmela@digia.com>
2013-06-17 11:13:09 +03:00
Miikka Heikkinen e4e6f8946e Add some margin to qt logo in docs
Change-Id: Ic349d5b5970c58714383892c2d6c0c0e5edc1c66
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-06-17 10:29:20 +03:00
Miikka Heikkinen d0fc3c879f Readme fixes
Change-Id: Ia906644f4201287b1b015390835929b59dfe90cf
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-06-17 10:01:12 +03:00
Miikka Heikkinen ab9ce3bf20 Add save and restore to boxwhiskers paint
Change-Id: Id5a7dcef60d6c51c20984e872c2ce80f3aca6136
Reviewed-by: Mika Salmela <mika.salmela@digia.com>
2013-06-17 09:46:49 +03:00
Mika Salmela 3a83c19814 Updated image to BoxPlot example
Change-Id: I2f23d7a8f1d8494530edf3fc8498d8988cd32aa0
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-06-17 09:46:35 +03:00
Mika Salmela 1dbaa17880 Property to control box width
Also fix bounding rect to get rid of some pen width related
drawing artifacts.

Change-Id: Ib498545cecd497d845031a3ccba572a9cba8e91d
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
Reviewed-by: Tomi Korpipää <tomi.korpipaa@digia.com>
2013-06-17 09:24:02 +03:00
Mika Salmela cc63ecb914 To avoid complains from new Qt Creators
Change-Id: I790a727a57522888850ecd837d09a91aeba10317
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-06-17 08:17:26 +03:00
Miikka Heikkinen 8fe6fadece Fix various documentation issues
Change-Id: I0963abda42a8273f058d51b3095740357f276ce9
Reviewed-by: Mika Salmela <mika.salmela@digia.com>
2013-06-17 08:10:38 +03:00
Mika Salmela 7eaf3a6403 Boxplot outline pen adjustment
Change-Id: I26aa8047e40667aad0466accd20a22d1ba86a668
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-06-14 14:32:04 +03:00
Miikka Heikkinen a20cc56483 Fix warning about uninitialized variable
Change-Id: Ie4bb39b548622e002258e3e82142f128224332f6
Reviewed-by: Mika Salmela <mika.salmela@digia.com>
2013-06-14 14:29:41 +03:00
Miikka Heikkinen 82300aabf8 Fix zoomlinechart x-axis pan direction
Change-Id: I92765fbb1ac11596dd3b76edc5e72daf374ad7f5
Reviewed-by: Mika Salmela <mika.salmela@digia.com>
2013-06-14 14:29:36 +03:00
Heikkinen Miikka f9087a25aa Fix case issue causing docs build to fail in linux
Change-Id: Ie3e4d0797927c3d2cacb1f5ccc4d1662b247d695
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-06-13 13:45:55 +03:00
Miikka Heikkinen 868649a9fa Additions to README
Change-Id: Idb459810c94f77bf9f93b2f557f4914b5cef1037
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-06-13 13:22:29 +03:00
Mika Salmela dee90918a1 In QML axisXTop didn't go top
It looked like the signal was connected to wrong slot. Probably copy&paste
bug.

Change-Id: Ie4887970891f3b902b71fb0b686c4adbbc1d48b1
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-06-13 11:21:53 +03:00
Miikka Heikkinen f9a133cb3e Remove TODOs
No need to bring these back after release, tasks were created in
JIRA for relevant TODOs.

Change-Id: I4cf5fb09276ee720000329b9ac2a48021cfe0830
Reviewed-by: Mika Salmela <mika.salmela@digia.com>
2013-06-13 11:18:26 +03:00
Miikka Heikkinen 599370d056 Qt Commercial -> Qt Enterprise
Also updated licenses.

Change-Id: Ie14327305207e14879c1f1223219fcdfa1669dc0
Reviewed-by: Mika Salmela <mika.salmela@digia.com>
2013-06-13 08:03:50 +03:00
Mika Salmela 3880b19e77 Selectable outlines for box
Change-Id: Ic31fa26f914baaa6c26f52c73ca4328ec7523581
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-06-12 14:22:09 +03:00
Mika Salmela fd6a3d4bef Fix for hiding overloaded virtual functions
ChartAxisElement::setGeometry(QRectF, QRectF) hided virtual function with
the same name from QGraphicsLayoutItem. Causes around 400 warnings.

Change-Id: I4474e4879058e2b785e72897ed47dea0f2b24cd1
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
2013-06-12 12:49:03 +03:00