Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / source / ui / src / hdrcont.src
blob0c37902939b4fe61e5ca4fbcbca510fb2a012900
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  */
19 #include "sc.hrc"
23 #define PART1 \
24     MenuItem\
25     {\
26         Identifier = FID_CELL_FORMAT ; \
27         HelpId = CMD_FID_CELL_FORMAT ; \
28         Text [ en-US ] = "~Format Cells..." ; \
29     };
32 #define PART2 \
33     MenuItem\
34     {\
35         Identifier = SID_CUT ; \
36         HelpId = CMD_SID_CUT ; \
37         Text [ en-US ] = "Cu~t" ; \
38     };\
39     MenuItem\
40     {\
41         Identifier = SID_COPY ; \
42         HelpId = CMD_SID_COPY ; \
43         Text [ en-US ] = "~Copy" ; \
44     };\
45     MenuItem\
46     {\
47         Identifier = SID_PASTE ; \
48         HelpId = CMD_SID_PASTE ; \
49         Text [ en-US ] = "~Paste" ; \
50     };
52  //-------------------------------------------------------------------------------
54 Menu RID_POPUP_ROWHEADER
56     ItemList =
57     {
58         PART1
59          //------------------------------
60         MenuItem { Separator = TRUE ; };
61          //------------------------------
62         MenuItem
63         {
64             Identifier = FID_ROW_HEIGHT ;
65             HelpId = CMD_FID_ROW_HEIGHT ;
66             Text [ en-US ] = "Row Hei~ght..." ;
67         };
68         MenuItem
69         {
70             Identifier = FID_ROW_OPT_HEIGHT ;
71             HelpId = CMD_FID_ROW_OPT_HEIGHT ;
72             Text [ en-US ] = "Optimal ~Row Height..." ;
73         };
74          //------------------------------
75         MenuItem { Separator = TRUE ; };
76          //------------------------------
77         MenuItem
78         {
79             Identifier = FID_INS_ROW ;
80             HelpId = CMD_FID_INS_ROW ;
81             Text [ en-US ] = "~Insert Rows Above" ;
82         };
83         MenuItem
84         {
85             Identifier = SID_DEL_ROWS ;
86             HelpId = CMD_SID_DEL_ROWS ;
87             Text [ en-US ] = "~Delete Selected Rows" ;
88         };
89         MenuItem
90         {
91             Identifier = SID_DELETE ;
92             HelpId = CMD_SID_DELETE ;
93             Text [ en-US ] = "De~lete Row Contents..." ;
94         };
95          //------------------------------
96         MenuItem { Separator = TRUE ; };
97          //------------------------------
98         MenuItem
99         {
100             Identifier = FID_ROW_HIDE ;
101             HelpId = CMD_FID_ROW_HIDE ;
102             Text [ en-US ] = "~Hide" ;
103         };
104         MenuItem
105         {
106             Identifier = FID_ROW_SHOW ;
107             HelpId = CMD_FID_ROW_SHOW ;
108             Text [ en-US ] = "~Show" ;
109         };
110          //------------------------------
111         MenuItem { Separator = TRUE ; };
112          //------------------------------
113         PART2
114         MenuItem
115         {
116             Identifier = SID_PASTE_SPECIAL ;
117             HelpId = CMD_SID_PASTE_SPECIAL ;
118             Text [ en-US ] = "P~aste Special..." ;
119         };
120     };
123  //-------------------------------------------------------------------
125 Menu RID_POPUP_COLHEADER
127     ItemList =
128     {
129         PART1
130          //------------------------------
131         MenuItem { Separator = TRUE ; };
132          //------------------------------
133         MenuItem
134         {
135             Identifier = FID_COL_WIDTH ;
136             HelpId = CMD_FID_COL_WIDTH ;
137             Text [ en-US ] = "Col~umn Width..." ;
138         };
139         MenuItem
140         {
141             Identifier = FID_COL_OPT_WIDTH ;
142             HelpId = CMD_FID_COL_OPT_WIDTH ;
143             Text [ en-US ] = "O~ptimal Column Width..." ;
144         };
145          //------------------------------
146         MenuItem { Separator = TRUE ; };
147          //------------------------------
148         MenuItem
149         {
150             Identifier = FID_INS_COLUMN ;
151             HelpId = CMD_FID_INS_COLUMN ;
152             Text [ en-US ] = "~Insert Columns Left" ;
153         };
154         MenuItem
155         {
156             Identifier = SID_DEL_COLS ;
157             HelpId = CMD_SID_DEL_COLS ;
158             Text [ en-US ] = "~Delete Selected Columns" ;
159         };
160         MenuItem
161         {
162             Identifier = SID_DELETE ;
163             HelpId = CMD_SID_DELETE ;
164             Text [ en-US ] = "D~elete Column Contents..." ;
165         };
166          //------------------------------
167         MenuItem { Separator = TRUE ; };
168          //------------------------------
169         MenuItem
170         {
171             Identifier = FID_COL_HIDE ;
172             HelpId = CMD_FID_COL_HIDE ;
173             Text [ en-US ] = "~Hide" ;
174         };
175         MenuItem
176         {
177             Identifier = FID_COL_SHOW ;
178             HelpId = CMD_FID_COL_SHOW ;
179             Text [ en-US ] = "~Show" ;
180         };
181          //------------------------------
182         MenuItem { Separator = TRUE ; };
183          //------------------------------
184         PART2
185         MenuItem
186         {
187             Identifier = SID_PASTE_SPECIAL ;
188             HelpId = CMD_SID_PASTE_SPECIAL ;
189             Text [ en-US ] = "Paste ~Special..." ;
190         };
191     };
194 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */