fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sc / source / ui / drawfunc / drformsh.src
blobd72234ec988fe5c10457074034ea407914149e2c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
20 #include "sc.hrc"
21 #include "submenu.hrc"
22 #include <svx/globlmn.hrc>
24  // Defines -------------------------------------------------------------------------------
26 #define MN_RENAME_OBJECT \
27     MenuItem\
28     {\
29         Identifier = SID_RENAME_OBJECT ; \
30         HelpId = CMD_SID_RENAME_OBJECT ; \
31         Text [ en-US ] = "Name...";\
32     };
34 // #i68101#
35 #define MN_TITLE_DESCRIPTION_OBJECT \
36     MenuItem\
37     {\
38         Identifier = SID_TITLE_DESCRIPTION_OBJECT; \
39         HelpId = CMD_SID_TITLE_DESCRIPTION_OBJECT; \
40         Text [ en-US ] = "Description...";\
41     };
43 #define MN_ARRANGESUB \
44     MenuItem\
45     {\
46         Identifier = SUBMENU_OBJARRANGE ; \
47         HelpID = HID_SCMENU_OBJARRANGE ; \
48         Text [ en-US ] = "~Arrange" ; \
49         SubMenu = Menu\
50         {\
51             ItemList = \
52             {\
53                 MenuItem\
54                 {\
55                     ITEM_FORMAT_FRAME_TO_TOP\
56                 };\
57                 MenuItem\
58                 {\
59                     Identifier = SID_FRAME_UP ; \
60                     HelpId = CMD_SID_FRAME_UP ; \
61                     Text [ en-US ] = "Bring ~Forward" ; \
62                 };\
63                 MenuItem\
64                 {\
65                     Identifier = SID_FRAME_DOWN ; \
66                     HelpId = CMD_SID_FRAME_DOWN ; \
67                     Text [ en-US ] = "Send Back~ward" ; \
68                 };\
69                 MenuItem\
70                 {\
71                     ITEM_FORMAT_FRAME_TO_BOTTOM\
72                 };\
73                 MenuItem { Separator = TRUE ; }; \
74                 MenuItem\
75                 {\
76                     ITEM_FORMAT_OBJECT_HEAVEN\
77                 };\
78                 MenuItem\
79                 {\
80                     ITEM_FORMAT_OBJECT_HELL\
81                 };\
82             };\
83         };\
84     };
86 #define MN_ANCHORSUB \
87     MenuItem\
88     {\
89         Identifier = SUBMENU_ANCHOR ; \
90         HelpID = HID_SCMENU_ANCHOR ; \
91         Text [ en-US ] = "An~chor" ; \
92         SubMenu = Menu\
93         {\
94             ItemList = \
95             {\
96                 MenuItem\
97                 {\
98                     RadioCheck = TRUE ; \
99                     Identifier = SID_ANCHOR_PAGE ; \
100                     HelpId = CMD_SID_ANCHOR_PAGE ; \
101                     Text [ en-US ] = "To P~age" ; \
102                 };\
103                 MenuItem\
104                 {\
105                     RadioCheck = TRUE ; \
106                     Identifier = SID_ANCHOR_CELL ; \
107                     HelpId = CMD_SID_ANCHOR_CELL ; \
108                     Text [ en-US ] = "To ~Cell" ; \
109                 };\
110             };\
111         };\
112     };
114 #define MN_ALIGNSUB \
115     MenuItem\
116     {\
117         Identifier = SID_OBJECT_ALIGN ; \
118         HelpId = CMD_SID_OBJECT_ALIGN ; \
119         Text [ en-US ] = "A~lignment" ; \
120         SubMenu = Menu\
121         {\
122             ItemList = \
123             {\
124                 MenuItem\
125                 {\
126                     ITEM_FORMAT_OBJECT_ALIGN_LEFT\
127                 };\
128                 MenuItem\
129                 {\
130                     ITEM_FORMAT_OBJECT_ALIGN_CENTER\
131                 };\
132                 MenuItem\
133                 {\
134                     ITEM_FORMAT_OBJECT_ALIGN_RIGHT\
135                 };\
136                 MenuItem\
137                 {\
138                     Separator = TRUE ; \
139                 };\
140                 MenuItem\
141                 {\
142                     ITEM_FORMAT_OBJECT_ALIGN_UP\
143                 };\
144                 MenuItem\
145                 {\
146                     ITEM_FORMAT_OBJECT_ALIGN_MIDDLE\
147                 };\
148                 MenuItem\
149                 {\
150                     ITEM_FORMAT_OBJECT_ALIGN_DOWN\
151                 };\
152             };\
153         };\
154     };
156  // Popup-Menues ---------------------------------------------------------------------
158 String RID_POPUP_DRAWFORM
160     Text [ en-US ] = "Popup menu for form objects";
163  //     Popup-Menue fuer (Uno-) Controls
165 Menu RID_POPUP_DRAWFORM
167     ItemList =
168     {
169         MenuItem { ITEM_FORMAT_ATTR_TRANSFORM };
171         //-#i68101#----------------------
172         MenuItem { Separator = TRUE ; };
173         MN_TITLE_DESCRIPTION_OBJECT
174         MN_RENAME_OBJECT
175         //-#i68101#----------------------
177         MenuItem { Separator = TRUE ; };
179         MenuItem { ITEM_FORM_CONTROL_PROPERTIES };
180         MenuItem { ITEM_FORM_PROPERTIES };
181         MenuItem { ITEM_REPLACE_CONTROL };
183         MenuItem { Separator = TRUE ; };
185         MN_ARRANGESUB
186         MN_ALIGNSUB
187         MN_ANCHORSUB
189         MenuItem { Separator = TRUE ; };
191         ITEM_GROUP_MENU
192     };
195 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */