diff options
author | Tomaž Vajngerl <quikee@gmail.com> | 2013-04-21 14:01:40 +0200 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2013-04-21 21:55:45 +0200 |
commit | 6c7e476ae6b6ff56b81ff19ef7dd0e8a9083a257 (patch) | |
tree | 1624d449acadb1eb22c043257f35692c2f926c47 /sw | |
parent | 56b61a3a92e91d5814076ea66bd16fca98ecbd9b (diff) |
Regster rotate left, right menu items.
Change-Id: I64340da256a9ee66b13870854ccdccacaaf4f0d2
Diffstat (limited to 'sw')
-rw-r--r-- | sw/sdi/_grfsh.sdi | 12 | ||||
-rw-r--r-- | sw/source/ui/app/mn.src | 14 |
2 files changed, 26 insertions, 0 deletions
diff --git a/sw/sdi/_grfsh.sdi b/sw/sdi/_grfsh.sdi index a76718431409..f91eba916c6e 100644 --- a/sw/sdi/_grfsh.sdi +++ b/sw/sdi/_grfsh.sdi @@ -60,6 +60,18 @@ interface BaseTextGraphic StateMethod = GetAttrState ; ] + SID_ROTATE_GRAPHIC_LEFT + [ + ExecMethod = Execute ; + StateMethod = GetAttrState ; + ] + + SID_ROTATE_GRAPHIC_RIGHT + [ + ExecMethod = Execute ; + StateMethod = GetAttrState ; + ] + SID_INSERT_GRAPHIC // zeigt auf FN_FORMAT_GRAFIC_DLG [ ExecMethod = Execute ; diff --git a/sw/source/ui/app/mn.src b/sw/source/ui/app/mn.src index 15f275bec9c0..a9871d49ff7f 100644 --- a/sw/source/ui/app/mn.src +++ b/sw/source/ui/app/mn.src @@ -1289,6 +1289,20 @@ Menu MN_GRF_POPUPMENU MenuItem { ITEM_SAVE_GRAPHIC }; MenuItem { ITEM_COMPRESS_GRAPHIC }; MenuItem { ITEM_EXTERNAL_EDIT }; + + MenuItem + { + Identifier = SID_ROTATE_GRAPHIC_LEFT ; + Command = ".uno:RotateGraphicLeft" ; + Text [ en-US ] = "Rotate Graphic Left" ; + }; + MenuItem + { + Identifier = SID_ROTATE_GRAPHIC_RIGHT ; + Command = ".uno:RotateGraphicRight" ; + Text [ en-US ] = "Rotate Graphic Right" ; + }; + SEPARATOR; MenuItem { |