summaryrefslogtreecommitdiff
path: root/chart2
AgeCommit message (Collapse)Author
2014-06-30CreationWizard already inherits boost::noncopyable via OutputDeviceMiklos Vajna
Change-Id: Ie155742ea9fc29b5b1adfa219c0bc6fdd78cb637
2014-06-27Flush modified data to the model when pressing OK in the data table dialog.Kohei Yoshida
This dialog used to have no OK / Cancel buttons, and the data would get flushed when the dialog got dismissed. This behavior got lost during the dialog conversion. Also, SaveModified() does check whether or not the data table is modified. No need to call IsModified() before calling SaveModified(). Change-Id: I5cea88cb52127cc5c7c1be67a5a592d87df92d0c
2014-06-27Missing include dirStephan Bergmann
Change-Id: Id1d1ed3639548b335dff2d9fa5689b90f1ae5f61
2014-06-27fix invalid memory access in chart testsMarkus Mohrhard
Change-Id: I056101d146c939ff958c83efc57fd110e8d52509
2014-06-26fdo#79151: No need to offset column index by category labels.Kohei Yoshida
In fact, doing so would lead to a corrupt internal data table. The internal data stores category labels separately from the column data, so there is no reason why we need to offset for category labels here. Change-Id: I29dd99e53837cba7a1e28d2a1ef39a5384378805
2014-06-26Use new GridPrinter instance for each table.Kohei Yoshida
resize() sometimes leads to a crash. Need to debug later. Change-Id: Ia3809eb4f171369a58b84d5b44001692be1453a1
2014-06-26Track all uses of ErrorBarX and ErrorBarY UNO property names.Kohei Yoshida
Change-Id: I994424c98d977c3a8f9138cccc17348de813a9d7
2014-06-26Prevent a crash while dumping internal data content.Kohei Yoshida
Change-Id: I0938b955b460d8c91607e6df0b9d9e1a4a971013
2014-06-26Better way to dump the content of InternalData.Kohei Yoshida
Row levels are currently not dumped, but that may change later. Change-Id: I849f8b65d6f419bc4d97e2af2d456e73c7e9a355
2014-06-26clang: Uninitialized argument valueCaolán McNamara
Change-Id: Id65c5815185cf022171e3523c6ad92545830104c
2014-06-26Clarify the code a little more.Kohei Yoshida
Change-Id: Idc0ff4913695ade9543cd30511aff61d24e7c495
2014-06-26Move the category level removal code into its own method.Kohei Yoshida
Change-Id: I4f0cfb4b15bc145b7a5c3491a7acbff13999bf5d
2014-06-25Remove these pesky ::com::sun::star ....Kohei Yoshida
Change-Id: I5c8e1418cc7e01426b67233e48289497a92868d3
2014-06-25Tuck this anonymous namespace inside chart namespace.Kohei Yoshida
This way we can eliminate those explicit '::chart' qualifications. Change-Id: I764e0ca57c8e10f7eac47f48a4cabf28d0562113
2014-06-25Add class descriptions. These two classes' roles were not very clear.Kohei Yoshida
Change-Id: Ib45c9037f2c4b3ee5bfed79f3c93e5020bac477b
2014-06-24Re-use DataSeriesHelper::getRole().Kohei Yoshida
Change-Id: Ia880bc03400d4cbf4c3033e01affafccc0a384fb
2014-06-24Annotate the code a little more, to make it easier to follow.Kohei Yoshida
Change-Id: Iefc61fdc132a18e73b0136f0248d69ab9e07a5e8
2014-06-24Unwind this logic a bit.Kohei Yoshida
Change-Id: I320b28fb319b42eeae7cada31b6f27f9e342db15
2014-06-24Reduce indentation levels.Kohei Yoshida
Change-Id: I5de3dea88a1e6f36c995697ba648ce6b82f4e8ae
2014-06-24Let's remove these lcl_ fetish.Kohei Yoshida
These are not even static local functions anyway, which was what lcl_ prefix was originally used for. Change-Id: I0e6b6cebbcf7cdfb449cf17320fb362fc73d92a8
2014-06-24new compilerplugin returnbyrefNoel Grandin
Find places where we are returning a pointer to something, where we can be returning a reference. e.g. class A { struct X x; public X* getX() { return &x; } } which can be: public X& getX() { return x; } Change-Id: I796fd23fd36a18aedf6e36bc28f8fab4f518c6c7
2014-06-23fdo#76203 - use consistent titlecase for UI title labelsJoren De Cuyper
Change-Id: Icae67c083ca867c89cff7f9d5d44dbbe4aadcba9 Reviewed-on: https://gerrit.libreoffice.org/9858 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-06-23XY chart needs to set the X value propertyMarkus Mohrhard
Change-Id: Ib17b564c187dfec8abb7a17b2602f814362dd34f
2014-06-22fdo#80295 - Mismatched icons in Chart Data Table dialogJoren De Cuyper
Change-Id: I31d9ea145e8c01a0e81507534e2cf6c584174048 Reviewed-on: https://gerrit.libreoffice.org/9843 Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com> Tested-by: Maxim Monastirsky <momonasmon@gmail.com>
2014-06-22add test case for fdo#78080Markus Mohrhard
Change-Id: If676eb03f5bd19f8abf13d1d7826d500d51e542e
2014-06-22remove now unused dialogMarkus Mohrhard
Change-Id: I42c340a6aee016e37ee558d46a8eab101837e9c5
2014-06-22show the property mapping sequences by defaultMarkus Mohrhard
Change-Id: I32417ed53e491a66f700e77ae0fff2154fa5441c
2014-06-22extract common codeMarkus Mohrhard
Change-Id: I9327f232f1edb9ef052eb7868ac60774f3b6e4cf
2014-06-22add test case for property mappingMarkus Mohrhard
Change-Id: Ib8630d15f40b00c8620eeb1c79d5d9f00d07ef49
2014-06-22don't try to set property mapping if there is no valueMarkus Mohrhard
Change-Id: I422d651e303553e2ce30895b44b8d96664418c19
2014-06-21avoid truncation double to float warningMarkus Mohrhard
Change-Id: I7f5c5f025954120c06fcce2c14915a8138843374
2014-06-21fix windows buildMarkus Mohrhard
Change-Id: I0de216a8c6259ba6ec825f85f52e2f48b97510d7
2014-06-21avoid manual OpenGL extension checkingMarkus Mohrhard
Change-Id: I75faa82fc2eef7f3bfd3546d64f47dee6a0b7d08
2014-06-21I don't see a good reason for marking private methods with SAL_CALLMarkus Mohrhard
Change-Id: I9b73b6b6073b3249317f4e1124d840930cbe558f
2014-06-21volatile does not make any sense hereMarkus Mohrhard
Change-Id: I337d845e05007efb29f1c1fa39cdcc046b156281
2014-06-21remove unneeded code for 3D charts in controllerMarkus Mohrhard
Change-Id: I5c1f624cc05a90878f717abc8ffb0b2220ce94d5
2014-06-21add code to call batch texture renderweigao
Includes warning fixes from Markus Mohrhard. Conflicts: chart2/source/view/inc/GL3DRenderer.hxx chart2/source/view/main/GL3DRenderer.cxx Change-Id: I09da7c49eb11da9ea2bc18a5e13f2fd2c0d6bd8f
2014-06-21small whitespace changesMarkus Mohrhard
Change-Id: I10aa08268bf148eb792440f13bcf044b350d6937
2014-06-21add batch render texture shadersweigao
Change-Id: I922d24bc63ed7c1f16318c25da0b6b3401d24b6f
2014-06-21use shader to calculate alpha channelweigao
Conflicts: chart2/source/view/main/GL3DRenderer.cxx Change-Id: I3cf9636b36ffd47589dd3ab61278802ca73644ce
2014-06-21add global scale matrixweigao
Conflicts: chart2/source/view/main/GL3DRenderer.cxx Change-Id: I23b9929dd3f0f1b0a070091ed9c1fe920edfcbf9
2014-06-21fix the using 3.0 version bugweigao
Change-Id: Ie197d0156a2d8b54fe6b08a905d82a63d31513f2
2014-06-21remove old commentMarkus Mohrhard
Change-Id: I427b408f898b4f4697f460a61fc306f65d68e12a
2014-06-21add disabled code for square barsMarkus Mohrhard
Change-Id: I4b315d9a4a6fb384eaec4d58c53291e473fb6d85
2014-06-20mark numbers as untranslatableStanislav Horacek
Change-Id: Iaa592297e8a946c121b9eaedbbab136db7593316 Reviewed-on: https://gerrit.libreoffice.org/9838 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-06-20fdo#71767: Write test for this.Kohei Yoshida
Not a direct test for the reported bug, but to ensure that the reworked properties survive import and export. Change-Id: I6c5a4c98eca5180251f04a24346290dedc44447a
2014-06-20sw: clean up leftover TextBox TODOsMiklos Vajna
Change-Id: I12782690368789849ea2ce2ed08ad4838a0a55db
2014-06-19fdo#71076, fdo#71767: Preserve number formats when charts are copied.Kohei Yoshida
Change-Id: If5ae8852152012483237e7602e56a0c46ea8748a
2014-06-19Use define constant to keep track of all NumberFormat property usage.Kohei Yoshida
Change-Id: I2a544922e03ec8253290ac8bf5a89c9cdd72d8dd
2014-06-19small text positioning fixesMarkus Mohrhard
Change-Id: I7fb42f0c34c5216421324f471a813f4668b4a878