summaryrefslogtreecommitdiff
path: root/chart2
AgeCommit message (Collapse)AuthorFilesLines
2014-05-21forgot to release the OpenGL resourcesMarkus Mohrhard1-0/+4
Change-Id: I2baefbe611f9ed28defc46ca3af332d13b32c561
2014-05-21use FBO for the pickingMarkus Mohrhard3-2/+28
Change-Id: Ibab6daa1f76300d159ccd4cfbca061c8d8c1951f
2014-05-21set the color for the pickingMarkus Mohrhard3-12/+32
Change-Id: If7b902b16626384440241d88937161cf327e14d5
2014-05-21remove unnecessary whitespacesMarkus Mohrhard1-2/+0
Change-Id: I4d93c0149aaf90e2477c1382aa51f8f08c967626
2014-05-21avoid division by zero that happens to me in some casesMarkus Mohrhard1-1/+1
Change-Id: Ifc80462e7826e7d717dc553f50dd00f2b771bf15
2014-05-21we need to create the bufferMarkus Mohrhard1-0/+2
Somehow this only crashes when I use gdb. Change-Id: Ic18ffa3af931b80a7241e8fe711753db03da166e
2014-05-20Prefer cppu::UnoType<T>::get() to ::getCppuType((T*)0) part18Julien Nabet8-15/+15
Change-Id: Ibf958dbfbf7cdbe6ad31d390138be8d4d468c225
2014-05-20fdo#78290 : The File gets corrupted when saved in LOBisal Singh Nayal4-0/+40
Problem Description: Docx file containing a chart (line chart / scatter chart)which has used a builtin marker'x' gets corrupted when we save it in LO.The reason was that while exporting LO was writing the marker information 'x' as 'X' which MS Word doesn't recognize.‒<c:marker><c:symbol val="X" />. Also the size of the marker was coming 1 less than the actual value. Ex: if size is 7 then it was being written as 6. Solution: During export I have made changes so that now LO writes 'x' in the tag information ‒<c:marker> <c:symbol val="x" />. Now the size of the marker is also being correctly exported. Change-Id: I26b747f9576625bf3acb941322ae418a0bbc6b64 Reviewed-on: https://gerrit.libreoffice.org/9273 Tested-by: Miklos Vajna <vmiklos@collabora.co.uk> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
2014-05-19hrc and src files: squeeze multiple newlinesThomas Arnhold11-43/+0
for i in `find . -name *.src -or -name *.hrc`; do FILE=$(cat -s "$i"); echo "$FILE" > "$i"; done Change-Id: I2bac5ad3e1eb3c566e5c867ccf45893a19e1561e
2014-05-19add reverse bars codeweigao1-7/+7
Change-Id: I2db9edd9015bb10cffe58a44c379db0ab87e7d72
2014-05-18Prefer cppu::UnoType<T>::get() to ::getCppuType((T*)0) part16Julien Nabet44-298/+297
Change-Id: I78b3a0151397d4e69521e6b2451e93ea6e463376
2014-05-17prevent access to uninitialized variablesMarkus Mohrhard1-0/+2
Change-Id: I1a12e2453ec935dc642135c30a36e1a97fc3d0f9
2014-05-16support property mapping in new 3D chartsMarkus Mohrhard3-1/+20
Change-Id: I3da71e354ed2595c1f5b2eaeb5fb565205d24de0
2014-05-16set the MVP matrix in picking modeMarkus Mohrhard1-6/+12
Change-Id: I11d4838a320ada1d454870436e540b2c56fa18fd
2014-05-16small hickupMarkus Mohrhard1-2/+2
2014-05-15-Werror,-Wunused-private-fieldStephan Bergmann2-2/+0
Change-Id: Iede16b58830e9605943b87528b3f5569035b8449
2014-05-15Resolves fdo#70681: fixincludeguards.pl: all that's leftThomas Arnhold18-37/+37
Change-Id: I3e51a62710bb46c8255fd228d41d9300c90a1fb5 Reviewed-on: https://gerrit.libreoffice.org/9360 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2014-05-15modify the coordinate system to world coordinate systemweigao2-71/+120
Change-Id: Ib496f33bcd94cac77aef02ddae2c91bb48150252
2014-05-15hopefully all places are now correct for the pickingMarkus Mohrhard1-40/+99
Only the handling of the color and the matrix is still missing Change-Id: I5603e966e6a62106f38d2cb7cfe196629714f793
2014-05-15no reason that this is a member variableMarkus Mohrhard2-4/+2
Change-Id: I125c85418bc19cc6bcf2d106ebd22f94d9ecd390
2014-05-15one more step to picking based renderingMarkus Mohrhard1-23/+51
Change-Id: Ibf77c0b7b9cdc4f5b47deee3f9b50a61e8c0dc22
2014-05-15don"t execute code in a loopMarkus Mohrhard1-6/+8
Change-Id: I758d8ddb8b877638a5a36e56636e97fded790efc
2014-05-15implement new struct and shaders for pickingMarkus Mohrhard5-0/+71
Change-Id: Ib3e08d69c031aa3130b10c0745119cf5935d86db
2014-05-15try a better ideaMarkus Mohrhard2-68/+64
Change-Id: Ibf218c2e99013aeeeb1d8962b0eff1cbd602c6c3
2014-05-15remove some misleading commentsMarkus Mohrhard1-4/+3
Change-Id: I939c676ffd71357dcf73f24c56c5fd70a3a67a28
2014-05-15these resources should be GLintsMarkus Mohrhard1-6/+6
Change-Id: Ib1075fb7dba8ea85e76c7cdf59635e0cec9aaf19
2014-05-15introduce picking mode in 3D codeMarkus Mohrhard4-109/+155
Change-Id: Ifbe35a9b311bf79fa15bbad6b9fdfc5a472f516f
2014-05-15coverity#1213254 Out-of-bounds readCaolán McNamara1-1/+1
surely this was the intent Change-Id: I78002adebf78674259e6c63e0e3449882accdb5d
2014-05-15no matching function for call to 'scale(const float&, const float&, int)'Miklos Vajna1-1/+1
Change-Id: Ia748133cb3bda9d81db8850b7c76ad1a43a5c42e
2014-05-15change transformation matrixMarkus Mohrhard1-3/+3
2014-05-14Try to zoom into a bar when clicked. For now we hardcode the object ID of 1.Kohei Yoshida2-2/+9
Just for testing. Change-Id: Ifec15ae0beb0a3c863085e9d43bdebd7bcce4027
2014-05-14loplugin:passstringbyrefStephan Bergmann1-1/+1
Change-Id: I0e97ab6ed479ba4057470946d45a0e8cda29470e
2014-05-14Find places where uno::Sequence is passed by value.Noel Grandin2-2/+2
Implement a clang plugin to find them, and clean up existing code to pass them by reference. Change-Id: If642d87407c73346d9c0164b9fc77c5c3c4354b8 Reviewed-on: https://gerrit.libreoffice.org/9351 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-05-13a better place to show the windowMarkus Mohrhard1-1/+1
Now the first repaint will already draw on the window and we never see the grey background. Change-Id: Ibf44a77b5768979f9081b4f80f6f0a73e5023437
2014-05-13restore correct repaint after changed value in 3D chartMarkus Mohrhard4-59/+63
Change-Id: Ied1904a56b8d526288a89fd8df0bed639cd317d0
2014-05-13rerender after redrawing of the windowMarkus Mohrhard2-2/+18
Change-Id: Ia967ba08a9bd0499ae5fb0865492783834204963
2014-05-12Replace auto_ptr with boost::scoped_ptr.Kohei Yoshida2-13/+9
Change-Id: Ibc6d532eff59146d8fbe7dcc7f9155ce6119f474
2014-05-12some fixes for positioning problemsweigao1-2/+1
Change-Id: I4e970837ebe6867458e4a75c7cc323f8f6b3ecc8
2014-05-12Have ChartView keep the instance of GL3D chart object between rendering.Kohei Yoshida6-47/+103
Change-Id: I49419d20bf283fba1c31d8516972b0ca7fddcb5b
2014-05-12WaE: private field 'm_bOwnershipIsWellKnown' is not usedTor Lillqvist1-4/+0
Change-Id: Ic4b784cb26f9127fe549f3866cbe53f0d0be0a78
2014-05-12m_bOwnershipIsWellKnown is unusedCaolán McNamara3-15/+4
Change-Id: I4dee9c4ce674249fca590e1c6d86685ed86da885
2014-05-12volatile does not make any sense hereMarkus Mohrhard1-4/+4
Change-Id: I895f6d04bbd5bd1829ec72b2051e640cbc153b26
2014-05-12use black as text colorMarkus Mohrhard1-1/+1
Change-Id: I109ef0217f3dbe13691e6be60a0a5e2c89280e45
2014-05-12more sal_Int32 to sal_uInt32 and simplificationMarkus Mohrhard4-40/+28
Change-Id: I061fdc9e0743715d1b358a16d72486cfb62a35aa
2014-05-12usa sal_uInt32 instead of sal_Int32Markus Mohrhard3-5/+5
Change-Id: I54db41f48d1f181d1c78c1051f094887a0bc7a8a
2014-05-12Revert "separate rounded corner bar and normal bar rendering"Markus Mohrhard5-103/+37
This reverts commit 51d5062642189ff5a4330903253c012e83e5ef1f. Conflicts: chart2/source/view/main/GL3DRenderer.cxx Change-Id: Id21e59d2cc605f0d7d637fb889725f0e91fa6cb3
2014-05-12Revert "fix alpha calculation"Markus Mohrhard1-16/+5
This reverts commit 204efb6a1723f98ff53a61ed249dbff8cb391bb3. Change-Id: I1756c399adbf0dd3371e8aab1d8021931203c49e
2014-05-12move glm operator<< for debugging to OpenGLHelperMarkus Mohrhard2-41/+1
Change-Id: Ia529badffe08507d593f494230d2e504b68ff477
2014-05-12fix alpha calculationMarkus Mohrhard1-1/+1
Change-Id: Ic0734ef9a079196d9a0a523dac7726937ed2155f
2014-05-12a few debug statements and cosmetic clean-upMarkus Mohrhard1-6/+17
Change-Id: I78cc73cc792f1182abcac0b81e97b948206a11d8