From b4de0bd548399593ad2627afde443a569e7b8ea1 Mon Sep 17 00:00:00 2001 From: Szymon Kłos Date: Sun, 21 Sep 2014 19:50:09 +0200 Subject: fdo#62081: Add split menus to items in the style dropdown I added buttons to the Style dropdown. Each button opens a menu. So far I added "apply style" and "edit style" options. Change-Id: I3b5c153a0674d06541d403bb0f34ec73418bb778 Reviewed-on: https://gerrit.libreoffice.org/11581 Reviewed-by: Samuel Mehrbrodt Tested-by: Samuel Mehrbrodt --- svx/source/tbxctrls/tbcontrl.src | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'svx/source/tbxctrls/tbcontrl.src') diff --git a/svx/source/tbxctrls/tbcontrl.src b/svx/source/tbxctrls/tbcontrl.src index 793eb76445d7..59728c6977e0 100644 --- a/svx/source/tbxctrls/tbcontrl.src +++ b/svx/source/tbxctrls/tbcontrl.src @@ -88,6 +88,23 @@ ComboBox RID_SVXTBX_STYLE Hide = TRUE ; }; +Menu RID_SVX_STYLE_MENU +{ + ItemList = + { + MenuItem + { + Identifier = RID_SVX_APPLY_STYLE ; + Text [ en-US ] = "Apply style" ; + }; + MenuItem + { + Identifier = RID_SVX_MODIFY_STYLE ; + Text [ en-US ] = "Modify style" ; + }; + }; +}; + String RID_SVXSTR_EXTRAS_CHARBACKGROUND { Text [ en-US ] = "Highlighting" ; -- cgit