summaryrefslogtreecommitdiff
path: root/sc/uiconfig
AgeCommit message (Collapse)AuthorFilesLines
2014-05-18fdo#46839 Convert line color picker to split buttonMaxim Monastirsky1-1/+1
Change-Id: I4987cc9ffba675009f2d2ae9f6b12ed4ee02fe13
2014-05-15fdo#76718 Rounding for "fill > random number.." optionTomaž Vajngerl1-6/+59
Change-Id: Idb4b6442be7ddb08875c6b59f54a887399385be7
2014-05-15sc ANOVA: add "two factor" and rework "single factor" ANOVATomaž Vajngerl1-4/+116
Change-Id: I8cfaa06019e641e0590065d8f6a3266ff82acb88
2014-05-14Keep only one class for toolbox color controlsMaxim Monastirsky1-1/+1
instead of 5 (mostly identical) classes. Also the following bugs were fixed: * All pickers now use split buttons. (fdo#45671) * Color palette now indicates the current color. (fdo#73891) (Previous changes related to that bug are reverted as part of this commit.) * Selecting a color from a float panel now updates the button. (fdo#77683) * For Font color/background color in Writer, the color that is shown on the button, is always the one that's actually used. (Can be a different color after hiding the toolbar.) * For Font color/background color in Writer, the button now indicates when we're in the format paintbrush mode. (Removed in 085e8a07e61ef2d3a82e11094d8773ab17cfdb3c for some reason.) Change-Id: Idb4829552240c52fb0882aca627c8177bbe2f839
2014-05-11sc: some cleanup of the alignment panelMaxim Monastirsky1-2/+2
- Use generic Toolbox handler when possible. - Use bool values directly, instead of if-else blocks. Change-Id: Ica4986ed3fd2aa5c1babac7fa29f0ca67717c019
2014-05-01Remove this width requestMaxim Monastirsky1-1/+0
I see no reason why this button should be wider than the others. Change-Id: Ibe7bc46d1e7a1d99d9d7dbc7bed8242d608efac2
2014-04-24sc: Add F-Test to StatisticsTomaž Vajngerl1-0/+1
Change-Id: I31281e863d82a211d7cca897f3e65a0ecfcb5f6b
2014-04-24consolidatedialog.ui: let only the ranges field expandThomas Arnhold1-1/+0
Change-Id: I455377911f700030d4c3a9839e53de3996694669
2014-04-17remove executable bitAndras Timar1-0/+0
Change-Id: I91f6e861f6d0dbea1b57ac73857e0c706b27f681
2014-04-09convert data validation tab page to .uiCaolán McNamara2-5/+376
Change-Id: I1a4f1f4f06ec1ab0b28637380a8bfcb3bc64ee30
2014-04-09related: fdo#67104 correct the tooltipMaxim Monastirsky1-1/+1
This option points to the per-sheet setting, not to the global one. Change-Id: I79dbd727e0ff12eb906f243f82f4906762918d26
2014-04-06fdo#72276 introduce .uno:ZoomMenu so we can split the menu entries/labelsJoren De Cuyper1-1/+1
Currently .uno:zoom is used for the topmenu and submenu. Deleting the '...' behind the text will delete it for both, which is not correct. Therefore I introduce .uno:ZoomMenu for the topmenu. Change-Id: I75bcae572be0cca7216c34d81e0b99f4c59c0aab Reviewed-on: https://gerrit.libreoffice.org/8503 Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com> Tested-by: Maxim Monastirsky <momonasmon@gmail.com>
2014-04-04callcatcher: remove old pivot table dialogCaolán McNamara2-751/+6
Change-Id: I9e80a0d6661c29343103a27baa752cebbc876314
2014-04-03wrong ellipsizeCaolán McNamara2-5/+3
the widget in glade for changing ellipsize gets focus and when you mouse wheel up and down often it gets accidentally changed, sigh. Change-Id: I6dc0dc6d9985ea0ff9a34817291e642a9706bf0f
2014-04-03pivot: In "Data Field Options" dialog change Add -> OkTomaž Vajngerl1-3/+3
Change-Id: Ie6b1670445fd15e2ba791b13e4b6cd6803b2b9df
2014-04-02Pivot dialog: Make it resemble the old dialog a bit.Jan Holesovsky1-390/+416
No idea what is best here :-) - MSO is more like what it was before this change, OTOH this layout looks more as the final pivot table, which (in my eyes) makes it easier to use. Change-Id: I5acb8c151139688c71b06d07006499513a17bdb9
2014-03-31lint-ui spacingsCaolán McNamara1-2/+7
Change-Id: I09a1e84dc20aeeac6b535dbbedfc0f9c8e17517b
2014-03-31pivot: new pivot table layout dialogTomaž Vajngerl1-0/+789
This commit adds a new pivot table layout dialog which was implemented from scratch. Instead of custom controls this one uses list boxes for field entries which greatly reduces the code. It also fixes some visual and behaviour bugs and adds the possibility to edit the "Data" field. Change-Id: I6c01252acee5a2e8910e40e65904504d00e03057
2014-03-21Related: fdo#76457 set the edit fields to expandCaolán McNamara1-7/+15
the buttons remain too narrow, but that seems to be the case for all the formula buttons Change-Id: Ib7ecc6dffeed23459eddb1fc98140faf1a26296d
2014-03-20add translatable attribute to some .ui labels/itemsAndras Timar1-18/+18
Change-Id: I294a8ff5070af20403ec103ad4420a6e12a97561
2014-03-19fdo#64290 ui:count selected rows and columnsgdm.manmeet1-0/+1
Change-Id: Ie6443fd9b1ac6332b4937c4b6b5d565cca1fe612
2014-03-14user selectable string conversion models, related fdo#37132 fdo#74622Eike Rathke1-12/+92
Determines how to treat text when encountered as operand in an arithmetic operation or as argument to a function that expects a number instead. Selectable under Tools->Options->Calc->Formula "Detailed calculation settings" "Custom" from "Conversion from text to number" are: Generate #VALUE! error: =1+"1" or =1+"x" give #VALUE! Treat as zero: =1+"1" or =1+"x" give 1 Convert only unambiguous: =1+"1" gives 2, but =1+"1.000" or =1+"x" give #VALUE! Convert also locale dependent: =1+"1.000" may be 2 or 1001 ... =1+"x" gives #VALUE! For "Generate #VALUE! error" and "Treat as zero" the "Treat empty string as zero" option follows these settings, for "Convert only unambiguous" and "Convert also locale dependent" it can be set independently. When reading documents created by other spreadsheet applications or older versions of LibreOffice, and to interchange documents between different locales the "Convert only unambiguous" with "Treat empty string as zero = True" setting is recommended, though LibreOffice so far acted as "Convert also locale dependent" with "Treat empty string as zero = False", which is the reason that option is kept as default. The best setting to create new documents that can be interpreted by all spreadsheet applications without on-the-fly string conversion is "Generate #VALUE! error". Not having to convert strings during calculation ist also faster, of course. Change-Id: Ie6dc34a00a82064a2d862b2178ce715fab945f85
2014-03-12fdo#75982: Better hot keys for pivot table fields.Kohei Yoshida1-4/+4
R for Row, C for Column, P for Page, and D for Data fields. Change-Id: I4e29fcdf77a17498d9325a09f0b21154cab04f83
2014-03-12Resolves: fdo#75982 set mnemonics targets for hidden labelsCaolán McNamara1-0/+15
the key piece though is that labels that have mnemonic targets are always candidates for getting mnemonics generated for them Change-Id: Ie4bcbc18e94467936f40875c749cd22793021d0c
2014-03-10convert pivot filter dialog to .uiCaolán McNamara1-0/+544
Change-Id: I795d296bae700d1e3a273fbe71fc842d145c5138
2014-03-06convert calc autoformat dialog to .uiCaolán McNamara1-0/+360
this dialog is hauntingly similar to the writer one, a copy and paste job Change-Id: Ic873038dba4ca4fd737690b917f6cd0d5144218a
2014-03-05Converted group by [number|date] pivot table dlg to .uiKatarina Behrens3-1/+712
Change-Id: I3c6256f1b2d176790a8eb7c094c1583ce053971b Reviewed-on: https://gerrit.libreoffice.org/8382 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-02-14convert Data Field Options Dialog to .uiCaolán McNamara1-0/+574
Change-Id: Ie940352828a9b58d35dd1644d030d6fb5b72d386
2014-02-13Various adjustments of the pivot tableCaolán McNamara1-134/+166
especially relative positions were relative to the dialog which was assumed to be then a direct parent of the widgets so that a simple calculation could make the positions relative to the widgets also now the pivot table fits into a 768 pixel high screen Change-Id: I86a4155439872e8273943b90f15320e560e237a4
2014-02-13Converted pivot table layout dlg to .uiKatarina Behrens1-0/+697
pimped up dialog a bit, added mnemonics Change-Id: I4585d9a3a1c96b45c7eedea8a5be41ec717139dd
2014-02-11convert change chart data source dialog to .uiCaolán McNamara1-0/+149
Change-Id: Iecccfbcd6b1eaec9d14c594812293c3e2acfda46
2014-02-11convert show changes dialog to .uiCaolán McNamara1-0/+251
Change-Id: I29397e454e30bff98644f0c9e0f3a8e00547af1b
2014-02-05fdo#74132: Do not interrupt search in Calc.Matúš Kukan1-0/+2
Extending f25cdaa78d5e7d200fbaf31cce9895bab7c5ee63 "fdo#74132: Do not interrupt search in Writer." for Calc. Change-Id: I3a7e5070300993d2811a79f17cb1b2edb0355c44
2014-02-05convert scenario dialog to .uiCaolán McNamara1-0/+382
Change-Id: I66f7fe04155ad4c6e42e6aa96bb2db71ba4f682f
2014-02-04convert select data source dialog to .uiCaolán McNamara1-0/+221
Change-Id: Iecca542c2c425a34184ba2c3ae0e34d093fa6a06
2014-02-03uiconfig: remove obsolete helpid's and clean trailing whitespace.Michael Meeks1-5/+5
Change-Id: Ic94ed52bbe0e5c612258fa56a970d61de0972eb3
2014-02-03fdo#74455 - hide direct printing button and replace with new print dialog.Michael Meeks2-3/+5
Change-Id: I7ae80079f4bd5fed1234753b521a680498ec43e1
2014-02-02convert import options dialog to .uiCaolán McNamara1-0/+306
Change-Id: Iaf20b6d2306ba76f21cb5f7be231f40b403c790a
2014-01-28drop RID_SCDLG_INSCONT, etc. nowCaolán McNamara1-9/+6
Change-Id: Iee2eaf89f662b61fc4ec32b353b13417ee6b2610
2014-01-28Converted Calc paste special dialog to .uiKatarina Behrens1-0/+586
Change-Id: Ibe782ed765a20adb34bb6ddd226c3d5ed328e810
2014-01-22reorient the ok/cancel/help buttons of external dataCaolán McNamara1-9/+10
Change-Id: I08abe30a259014ba33bcad63a40198baa1099893
2014-01-21ScCondFormatList is in scloCaolán McNamara1-1/+1
Change-Id: Ie79ea86509004dc149cda2316c07cd7db9b339a4
2014-01-19make strings localizable in *.ui (bin/ui-translatable.sh)Andras Timar4-46/+46
Change-Id: I60b74cecc17352681fac7dfa0e41114515dbd6f5
2014-01-19fdo#73799: Make some items in the filter dialogs translatable.Kohei Yoshida1-40/+40
Change-Id: I67c54ae9cee0a57baf900c80f50b28572bc9465b
2014-01-17ellipsize incorrectly set here for some reasonCaolán McNamara1-2/+1
Change-Id: I85b89c59c3545aef538da47a3d3727110cff4a82
2014-01-17tweak MultiListBox to ListBoxCaolán McNamara2-3/+13
Change-Id: I94e39f29c2920eea57262cf047f899eb0bbe62c4
2014-01-17convert pivot table subtotals data field dialog to .uiCaolán McNamara1-0/+282
Change-Id: I4ac7fb3a13cdc03d3c75cdd730bf39a7d814de99
2014-01-17convert data field dialog to .uiCaolán McNamara1-0/+352
Change-Id: I68da93c1227e8140511f3ad4071c87b3cf0443c0
2014-01-16Resolves: rhbz#1047871 convert conditional formattting dialog to widget layoutCaolán McNamara1-0/+202
the wrapper dialog not the list contained within Change-Id: I4f4793888885ec5d991f1ab4218cc371726558e6
2014-01-09specify that grid color listbox can shrink...Caolán McNamara1-380/+367
in calc->view options and that the checkbox entries cannot when options pane isn't wide enough to fit everything in (fr). Necessitates swapping columns so the stretching/shrinking column can be centered horizontally for e.g. en to remain pretty. Change-Id: I1402183b6ad0989af676a3472c8bf4d2b9c94ea8