summaryrefslogtreecommitdiffstats
path: root/cui/uiconfig/ui/optsecuritypage.ui
Commit message (Collapse)AuthorAgeFilesLines
* remove deprecated [x|y]align property for CheckBoxes and RadioButtonsCaolán McNamara2021-01-211-2/+0
| | | | | | | | | | | | | | | | | | the gtk default is left aligned, change the vcl one to match and drop the deprecated and unnecessary [x|y]align Unfortunately on load glade's inline preview shows centered alignment, though its "true" preview tool shows left alignment and unsetting and resetting draw-indicator will update the preview to show the alignment which will be used: https://gitlab.gnome.org/GNOME/glade/-/issues/502 See https://gitlab.gnome.org/GNOME/glade/-/merge_requests/110 for my stab at making glade do the right thing. Change-Id: If454e9ce8462e6b271d2423fe7e8a55788e01fac Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109487 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
* drop deprecated GtkAlignment, move left/top-padding into child margin-start/topCaolán McNamara2021-01-061-275/+233
| | | | | | | | | | | for cui part c git show -w is recommended to view these changesets Change-Id: I8c37b4904b528b5afe01c26b83c8df27b251909f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108688 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
* add <!-- n-columns=1 n-rows=1 --> before every GtkGridCaolán McNamara2020-11-151-0/+11
| | | | | | | | | | | | | | | | | | | for a in `git ls-files '*.ui'`; do sed -i 's/^\( *\)\(<object class="GtkGrid".*\)/\1<!-- n-columns=1 n-rows=1 -->\n\1\2/' $a; done so we get the same behavior in glade as before 3.38 in that the grid preview don't show any unoccupied grid squares replace all existing n-columns=X n-rows=Y lines because they are all wrong, except for cui/uiconfig/ui/additionsfragment.ui sw/uiconfig/swriter/ui/pageheaderpanel.ui sw/uiconfig/swriter/ui/pagefooterpanel.ui which are correct. Change-Id: I401bbe8e098c26e7f57d6a872d3b70fc1ce85a00 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105846 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
* set all .ui min require version of gtk to 3.20Caolán McNamara2020-10-221-1/+1
| | | | | | | | | | | | | | | | | and update the version mentioned in our min req in the readme.xrm follow up to commit 0c9ccc7dbf6deb4d012e0d1e6eb934e54e0f19bc Author: Caolán McNamara <caolanm@redhat.com> Date: Fri Oct 2 21:21:45 2020 +0100 raise min version of gtk to 3.20.0 Change-Id: Ibae55c97e1ee577f4b7435d124cda6a21005ad0c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104692 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
* tdf#118148 All extended tips for shared/optionenOlivier Hallot2020-08-211-1/+41
| | | | | | | | | | Extended tips extracted from <ahelp> in all remaining shared/optionen help pages Change-Id: Id35ce9d51ebf0f7fbe1b399ccabbf85a2c145f6e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99825 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
* weld OfaTreeOptionsDialogCaolán McNamara2019-09-201-18/+37
| | | | | | | | | | | including ability to host a vcl::Window based XWindow hierarchy inside a native widget, e.g. the dictionary extensions have option pages Change-Id: I17d933bac12679e10164214a9045b677291a6557 Reviewed-on: https://gerrit.libreoffice.org/79070 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* weld SvxSecurityTabPageCaolán McNamara2019-07-301-54/+16
| | | | | | | | Change-Id: I4cace9417f1f036921b3e95d946f431ec072ce3a Reviewed-on: https://gerrit.libreoffice.org/76586 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* Resolves: tdf#116188 set min version on all .ui files to 3.18Caolán McNamara2018-03-051-1/+1
| | | | | | | | | | which is already the min for the runtime Change-Id: Ifebe099f1f94a36f65a31989689400327a823dcd Reviewed-on: https://gerrit.libreoffice.org/50776 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* migrate to boost::gettextCaolán McNamara2017-07-211-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * all .ui files go from <interface> to <interface domain="MODULE"> e.g. vcl * all .src files go away and the english source strings folded into the .hrc as NC_("context", "source string") * ResMgr is dropped in favour of std::locale imbued by boost::locale::generator pointed at matching MODULE .mo files * UIConfig translations are folded into the module .mo, so e.g. UIConfig_cui goes from l10n target to normal one, so the res/lang.zips of UI files go away * translation via Translation::get(hrc-define-key, imbued-std::locale) * python can now be translated with its inbuilt gettext support (we keep the name strings.hrc there to keep finding the .hrc file uniform) so magic numbers can go away there * java and starbasic components can be translated via the pre-existing css.resource.StringResourceWithLocation mechanism * en-US res files go away, their strings are now the .hrc keys in the source code * remaining .res files are replaced by .mo files * in .res/.ui-lang-zip files, the old scheme missing translations of strings results in inserting the english original so something can be found, now the standard fallback of using the english original from the source key is used, so partial translations shrink dramatically in size * extract .hrc strings with hrcex which backs onto xgettext -C --add-comments --keyword=NC_:1c,2 --from-code=UTF-8 --no-wrap * extract .ui strings with uiex which backs onto xgettext --add-comments --no-wrap * qtz for gettext translations is generated at runtime as ascii-ified crc32 of content + "|" + msgid * [API CHANGE] remove deprecated binary .res resouce loader related uno apis com::sun::star::resource::OfficeResourceLoader com::sun::star::resource::XResourceBundleLoader com::sun::star::resource::XResourceBundle when translating strings via uno apis com.sun.star.resource.StringResourceWithLocation can continue to be used Change-Id: Ia2594a2672b7301d9c3421fdf31b6cfe7f3f8d0a
* Options: “TSAs” button now has the same size as its neighborsAdolfo Jayme Barrientos2015-06-231-0/+1
| | | | Change-Id: I19f01148c3d8af2b5aa574cacb098415eeeea38f
* fix a bit awkward UI textMarkus Wernig2015-03-181-1/+1
| | | | Change-Id: I3c58e329a43e9117fe2be751442bd9043b758e41
* tdf#88427: Add GUI to enter and maintain a list of Time Stamping AuthoritiesTor Lillqvist2015-02-171-0/+75
| | | | | | | | | It is just a simple list of entered URLs, accessed from the Security page. No sanity checks for now. No selection of a "default" one for now. Implementation is much simpler this way. The actual selection of one TSA (or none) is done when exporting to PDF. Change-Id: I0392eabc9b9629a6f0a767d1b2337622a61c120f
* fdo#76203 - use consistent titlecase for UI title labelsJoren De Cuyper2014-06-231-3/+3
| | | | | | | 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>
* use a grid instead of a box because they shrink betterCaolán McNamara2014-03-251-106/+109
| | | | Change-Id: If271f02d99625ffa6fd418cf83307add7c09d802
* Resolves: fdo#65595 wrap long checkbox stringCaolán McNamara2013-06-111-1/+1
| | | | Change-Id: Ied827721a1ceca69ed33b494f8b55cb4bb1b748b
* Typo in optsecuritypage.uiJoren De Cuyper2013-05-271-1/+1
| | | | | | | | | Thanks to Lionel. Change-Id: Ib37c3cf9d8f53e941fc557dc9d4a4ba9b00e486d Reviewed-on: https://gerrit.libreoffice.org/4056 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
* Delete double whitespace in optsecuritypage.uiJoren De Cuyper2013-05-261-1/+1
| | | | | | | | | Found this double whitespace during translations. So lets fix it right away. Change-Id: Ifecfc15b5d0aead34b09df4cfb2c5a2c17c6b633 Reviewed-on: https://gerrit.libreoffice.org/4040 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
* typoThomas Arnhold2013-03-041-1/+1
| | | | Change-Id: I7fda2616fe8f609167ab2caa5eddade5527b4900
* move security options to cui and adapt codeCaolán McNamara2013-02-131-0/+436
Change-Id: I7f53b9486d95f539fe893f7ab72c2eee64449064