diff options
author | Katarina Behrens <Katarina.Behrens@cib.de> | 2015-05-26 14:56:09 +0200 |
---|---|---|
committer | Yousuf Philips <philipz85@hotmail.com> | 2015-06-01 17:12:21 +0000 |
commit | c1b9d61bacaf676d69a0f49a79fb086535f79a48 (patch) | |
tree | 473ca93d17b6183e31072f495fcd6335c2ce9eed /include | |
parent | 4e6713e923a8dc1eae00a29060720d91b9134cfa (diff) |
tdf#88276: Add slot and handlers for toolbar|sidebar buttons
those changes make getting/setting of text background colour
possible from toolbar and sidebar buttons, but likely more
handlers needs to be added to various other places in the code
Change-Id: I698ca2304399befdd63317eb8872aa3129f27637
Reviewed-on: https://gerrit.libreoffice.org/15909
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/editids.hrc | 6 | ||||
-rw-r--r-- | include/svx/dialogs.hrc | 1 |
2 files changed, 5 insertions, 2 deletions
diff --git a/include/editeng/editids.hrc b/include/editeng/editids.hrc index 793c7e6501fd..91102dd0ca8b 100644 --- a/include/editeng/editids.hrc +++ b/include/editeng/editids.hrc @@ -119,6 +119,7 @@ #define SID_ATTR_CHAR_LATIN_POSTURE ( SID_SVX_START + 997 ) #define SID_ATTR_CHAR_LATIN_WEIGHT ( SID_SVX_START + 998 ) #define SID_ATTR_CHAR_GRABBAG ( SID_SVX_START + 1142 ) +#define SID_ATTR_CHAR_BACK_COLOR ( SID_SVX_START + 1143 ) // these ID didn't exist prior to the svx split, add new ids here #define SID_ATTR_CHAR_OVERLINE ( SID_EDIT_START + 68 ) @@ -226,10 +227,11 @@ #define SID_ATTR_CHAR_LATIN_LANGUAGE ( SID_EDIT_START + 92 ) #define SID_ATTR_CHAR_LATIN_POSTURE ( SID_EDIT_START + 93 ) #define SID_ATTR_CHAR_LATIN_WEIGHT ( SID_EDIT_START + 94 ) +#define SID_ATTR_CHAR_BACK_COLOR ( SID_EDIT_START + 95 ) */ -#if 94 > (SID_EDIT_END-SID_EDIT_START) -#error Resource-Ueberlauf in #line, #file +#if 95 > (SID_EDIT_END-SID_EDIT_START) +#error Resource-Overflow in #line, #file #endif #define SID_DRAW_TEXT_VERTICAL SID_ATTR_CHAR_VERTICAL diff --git a/include/svx/dialogs.hrc b/include/svx/dialogs.hrc index 709bd3b26de9..a57c68cce93e 100644 --- a/include/svx/dialogs.hrc +++ b/include/svx/dialogs.hrc @@ -233,6 +233,7 @@ // Strings of the ToolBox-Controls from tbcontrl.cxx #define RID_SVXSTR_FILLPATTERN (RID_SVX_START + 191) #define RID_SVXSTR_FRAME (RID_SVX_START + 192) +#define RID_SVXSTR_CHAR_BACK_COLOR (RID_SVX_START + 193) #define RID_SVXSTR_FRAME_COLOR (RID_SVX_START + 194) #define RID_SVXSTR_FRAME_STYLE (RID_SVX_START + 195) #define RID_SVXSTR_EXTRAS_CHARBACKGROUND (RID_SVX_START + 196) |