diff options
author | Maxim Monastirsky <momonasmon@gmail.com> | 2015-12-20 21:08:42 +0200 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2015-12-24 14:25:17 +0200 |
commit | 430303aeee790cb8951dd007e7dffb55fa7f0f53 (patch) | |
tree | cac5f26d887647d78ffd62580ca9baba3f13b382 /sc/uiconfig/scalc/popupmenu/rowheader.xml | |
parent | 7dc6e2cb1778aed68e9bef64a7a196c94a72b7ec (diff) |
tdf#93837 Convert sheet row/col header context menus to xml
This commit shows some weakness of the current approach with
PopupLabel, as in many cases it's exactly the same as Label.
Have some ideas on how to improve that, but will look at it
after converting the remaining menus (at least in sfx2 based
modules), so I could have a broader look at what we have.
Change-Id: I78dfdb4a6f2ea3faf84f3a521067c6c15df96852
Diffstat (limited to 'sc/uiconfig/scalc/popupmenu/rowheader.xml')
-rw-r--r-- | sc/uiconfig/scalc/popupmenu/rowheader.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sc/uiconfig/scalc/popupmenu/rowheader.xml b/sc/uiconfig/scalc/popupmenu/rowheader.xml new file mode 100644 index 000000000000..3027b3003721 --- /dev/null +++ b/sc/uiconfig/scalc/popupmenu/rowheader.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * 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/. + * +--> +<menu:menupopup xmlns:menu="http://openoffice.org/2001/menu"> + <menu:menuitem menu:id=".uno:Cut"/> + <menu:menuitem menu:id=".uno:Copy"/> + <menu:menuitem menu:id=".uno:Paste"/> + <menu:menuitem menu:id=".uno:PasteSpecial"/> + <menu:menuseparator/> + <menu:menuitem menu:id=".uno:InsertRowsBefore"/> + <menu:menuitem menu:id=".uno:InsertRowsAfter"/> + <menu:menuitem menu:id=".uno:DeleteRows"/> + <menu:menuitem menu:id=".uno:Delete"/> + <menu:menuseparator/> + <menu:menuitem menu:id=".uno:FormatCellDialog"/> + <menu:menuitem menu:id=".uno:RowHeight"/> + <menu:menuitem menu:id=".uno:SetOptimalRowHeight"/> + <menu:menuseparator/> + <menu:menuitem menu:id=".uno:HideRow"/> + <menu:menuitem menu:id=".uno:ShowRow"/> +</menu:menupopup> |