diff options
author | Gulsah Kose <gulsah.1004@gmail.com> | 2016-02-28 20:03:41 +0200 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2016-02-28 21:17:32 +0000 |
commit | ebfa86c8ff962820b47ad0b4a93b0813c0ccaff5 (patch) | |
tree | 7856e0f350231db804b36d1d37934c60f66e1d58 /sc/sdi | |
parent | 1ef0a707d1f53e3c55fe355a3797cb6b487db146 (diff) |
tdf#89646 Implement "uno:LineToolbox" command into calc.
Freeline filled, Polygon filled, Bezier Filled, Polygon 45,
Polygon 45 filled buttons are added into writer's LineToolbox.
Change-Id: I181d3cbc64a70ef1ef363b1ef76641b6b8ec2c79
Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Reviewed-on: https://gerrit.libreoffice.org/22748
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
Diffstat (limited to 'sc/sdi')
-rw-r--r-- | sc/sdi/tabvwsh.sdi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sc/sdi/tabvwsh.sdi b/sc/sdi/tabvwsh.sdi index 43a8e58dbf04..46859c5807f3 100644 --- a/sc/sdi/tabvwsh.sdi +++ b/sc/sdi/tabvwsh.sdi @@ -90,9 +90,15 @@ interface BaseSelection SID_DRAW_LINE [ ExecMethod = ExecDraw; StateMethod = GetDrawState; ] SID_DRAW_RECT [ ExecMethod = ExecDraw; StateMethod = GetDrawState; ] SID_DRAW_ELLIPSE [ ExecMethod = ExecDraw; StateMethod = GetDrawState; ] + SID_DRAWTBX_LINES [ StateMethod = GetDrawState; ] + SID_DRAW_POLYGON [ ExecMethod = ExecDraw; StateMethod = GetDrawState; ] SID_DRAW_POLYGON_NOFILL [ ExecMethod = ExecDraw; StateMethod = GetDrawState; ] + SID_DRAW_BEZIER_FILL [ ExecMethod = ExecDraw; StateMethod = GetDrawState; ] SID_DRAW_BEZIER_NOFILL [ ExecMethod = ExecDraw; StateMethod = GetDrawState; ] + SID_DRAW_FREELINE [ ExecMethod = ExecDraw; StateMethod = GetDrawState; ] SID_DRAW_FREELINE_NOFILL [ ExecMethod = ExecDraw; StateMethod = GetDrawState; ] + SID_DRAW_XPOLYGON [ ExecMethod = ExecDraw; StateMethod = GetDrawState; ] + SID_DRAW_XPOLYGON_NOFILL [ ExecMethod = ExecDraw; StateMethod = GetDrawState; ] SID_DRAW_ARC [ ExecMethod = ExecDraw; StateMethod = GetDrawState; ] SID_DRAW_PIE [ ExecMethod = ExecDraw; StateMethod = GetDrawState; ] SID_DRAW_CIRCLECUT [ ExecMethod = ExecDraw; StateMethod = GetDrawState; ] |