/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef INCLUDED_FRAMEWORK_INC_BITMAPS_HRC #define INCLUDED_FRAMEWORK_INC_BITMAPS_HRC #define BMP_SAVEMODIFIED_SMALL "res/savemodified_small.png" #define BMP_SAVEMODIFIED_LARGE "res/savemodified_large.png" #define BMP_SAVEMODIFIED_EXTRALARGE "res/savemodified_extralarge.png" #define RID_SVXBMP_BUTTON "res/sx10594.png" #define RID_SVXBMP_RADIOBUTTON "res/sx10595.png" #define RID_SVXBMP_CHECKBOX "res/sx10596.png" #define RID_SVXBMP_FIXEDTEXT "res/sx10597.png" #define RID_SVXBMP_GROUPBOX "res/sx10598.png" #define RID_SVXBMP_EDITBOX "res/sx10599.png" #define RID_SVXBMP_LISTBOX "res/sx10600.png" #define RID_SVXBMP_COMBOBOX "res/sx10600.png" #define RID_SVXBMP_IMAGEBUTTON "res/sx10604.png" #define RID_SVXBMP_IMAGECONTROL "res/sx10710.png" #define RID_SVXBMP_FILECONTROL "res/sx10605.png" #define RID_SVXBMP_DATEFIELD "res/sx10704.png" #define RID_SVXBMP_TIMEFIELD "res/sx10705.png" #define RID_SVXBMP_NUMERICFIELD "res/sx10706.png" #define RID_SVXBMP_CURRENCYFIELD "res/sx10707.png" #define RID_SVXBMP_PATTERNFIELD "res/sx10708.png" #define RID_SVXBMP_FORMATTEDFIELD "res/sx10728.png" #define RID_SVXBMP_SCROLLBAR "res/sx10768.png" #define RID_SVXBMP_SPINBUTTON "res/sx10769.png" #define RID_SVXBMP_NAVIGATIONBAR "res/sx10607.png" #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ 3.2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sfx2/uiconfig/ui/bookmarkdialog.ui
AgeCommit message (Collapse)Author
2019-10-01add activates_default to GtkEntries in dialogsCaolán McNamara
activates-default of True means pressing return activates the default button of the action area, which is typically what vcl Edit did by default. Change-Id: I60bc1634b04a486af86526d887d0ada961b08076 Reviewed-on: https://gerrit.libreoffice.org/79860 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-04-13weld ScInsertCellDlgCaolán McNamara
Change-Id: I91118d4c0c5e2fa17fed02377547caa65e11bfdc Reviewed-on: https://gerrit.libreoffice.org/52824 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-04-13weld SfxAddHelpBookmarkDialogCaolán McNamara
Change-Id: I3724b0e92cfd3103f7ecdadbcf6c1efc501e6c04 Reviewed-on: https://gerrit.libreoffice.org/52822 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-04-02drop the spurious invisible_char[_set] propertiesCaolán McNamara
Change-Id: I8264a4f6035fd19c7a892902c41127615eaf6dd3 Reviewed-on: https://gerrit.libreoffice.org/52265 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2018-02-25convert all help responses to gtk's -11Caolán McNamara
and ok responses to gtk's -5 and cancel responses to gtk's -6 and close responses to gtk's -7 and yes responses to gtk's -8 and no responses to gtk's -9 Change-Id: Ia1a261a3a711ed9f5d8c0b0c639897c3064bb08c Reviewed-on: https://gerrit.libreoffice.org/50206 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2017-07-21migrate to boost::gettextCaolán McNamara
* 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
2017-04-14only one button should have has_default setCaolán McNamara
Change-Id: If47aa714e34d4acd7a9fc2e3f600ad4de847cdda
2013-12-16convert help bookmark dialog to .uiCaolán McNamara
Change-Id: I7831bc63f66ab7fe30f5648efc2f733c6bd90d0e