diff options
author | Gulsah Kose <gulsah.1004@gmail.com> | 2016-02-27 16:21:06 +0200 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2016-02-28 10:18:01 +0000 |
commit | 728c9ce48d4e84a6b44d7d50258936f5da34cea4 (patch) | |
tree | f1986bb469cb3664d28b50c0cd718ef3eed33bc1 /sw/sdi | |
parent | 1c85800345239754d5c4ec71c2aad526d0439eea (diff) |
tdf#89646 Add new buttons into Linetoolbox of writer drawbar.
Freeline filled, Polygon filled, Bezier Filled, Polygon 45,
Polygon 45 filled buttons are added into writer's LineToolbox.
Change-Id: Idf2b3d7484feb78a0ed762a14d9fde587b6a46fa
Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Reviewed-on: https://gerrit.libreoffice.org/22731
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
Diffstat (limited to 'sw/sdi')
-rw-r--r-- | sw/sdi/viewsh.sdi | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sw/sdi/viewsh.sdi b/sw/sdi/viewsh.sdi index 370e4609a0d9..d43ffb8f8c6d 100644 --- a/sw/sdi/viewsh.sdi +++ b/sw/sdi/viewsh.sdi @@ -92,21 +92,46 @@ interface TextEditView : BaseTextEditView ExecMethod = ExecDraw ; StateMethod = GetDrawState ; ] + SID_DRAW_XPOLYGON_NOFILL + [ + ExecMethod = ExecDraw ; + StateMethod = GetDrawState ; + ] + SID_DRAW_XPOLYGON + [ + ExecMethod = ExecDraw ; + StateMethod = GetDrawState ; + ] SID_DRAW_POLYGON_NOFILL [ ExecMethod = ExecDraw ; StateMethod = GetDrawState ; ] + SID_DRAW_POLYGON + [ + ExecMethod = ExecDraw ; + StateMethod = GetDrawState ; + ] SID_DRAW_BEZIER_NOFILL [ ExecMethod = ExecDraw ; StateMethod = GetDrawState ; ] + SID_DRAW_BEZIER_FILL + [ + ExecMethod = ExecDraw ; + StateMethod = GetDrawState ; + ] SID_DRAW_FREELINE_NOFILL [ ExecMethod = ExecDraw ; StateMethod = GetDrawState ; ] + SID_DRAW_FREELINE + [ + ExecMethod = ExecDraw ; + StateMethod = GetDrawState ; + ] SID_DRAW_ARC [ ExecMethod = ExecDraw ; |