Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / source / ui / src / subtdlg.src
blob4fa023f10299fa57cecfc31fcd6a0aa0f0d5a266
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 "subtdlg.hrc"
21 TabPage RID_SUBTBASE
23      // Die Elemente haben hart vergebene Hilfe-IDs, weil automatisch generierte
24      // aus den Ableitungen nicht in der HID-Liste auftauchen wuerden
25     HelpId = HID_SCPAGE_SUBT_GROUP ;
26     Pos = MAP_APPFONT ( 0 , 0 ) ;
27     Size = MAP_APPFONT ( TP_WIDTH , TP_HEIGHT ) ;
28     Hide = TRUE ;
29     FixedText FT_GROUP
30     {
31         Pos = MAP_APPFONT ( 6 , 3 ) ;
32         Size = MAP_APPFONT ( 121 , 8 ) ;
33         Text [ en-US ] = "~Group by" ;
34     };
35     ListBox LB_GROUP
36     {
37         HelpId = HID_SC_SUBT_GROUP ;
38         Border = TRUE ;
39         Pos = MAP_APPFONT ( 6 , 14 ) ;
40         Size = MAP_APPFONT ( 121 , 90 ) ;
41         TabStop = TRUE ;
42         DropDown = TRUE ;
43     };
44     FixedText FT_COLUMNS
45     {
46         Pos = MAP_APPFONT ( 6 , 32 ) ;
47         Size = MAP_APPFONT ( 121 , 8 ) ;
48         Text [ en-US ] = "~Calculate subtotals for" ;
49     };
50     Control WND_COLUMNS
51     {
52         HelpId = HID_SC_SUBT_COLS ;
53         Border = TRUE ;
54         Pos = MAP_APPFONT ( 6 , 43 ) ;
55         Size = MAP_APPFONT ( 121 , 136 ) ;
56         TabStop = TRUE ;
57     };
58     FixedText FT_FUNCTIONS
59     {
60         Pos = MAP_APPFONT ( 133 , 32 ) ;
61         Size = MAP_APPFONT ( 121 , 8 ) ;
62         Text [ en-US ] = "Use ~function" ;
63     };
64     ListBox LB_FUNCTIONS
65     {
66         HelpId = HID_SC_SUBT_FUNC ;
67         Border = TRUE ;
68         Pos = MAP_APPFONT ( 133 , 43 ) ;
69         Size = MAP_APPFONT ( 121 , 136 ) ;
70         TabStop = TRUE ;
71         StringList [ en-US ] =
72         {
73             < "Sum" ; Default ; > ;
74             < "Count" ; Default ; > ;
75             < "Average" ; Default ; > ;
76             < "Max" ; Default ; > ;
77             < "Min" ; Default ; > ;
78             < "Product" ; Default ; > ;
79             < "Count (numbers only)" ; Default ; > ;
80             < "StDev (Sample)" ; Default ; > ;
81             < "StDevP (Population)" ; Default ; > ;
82             < "Var (Sample)" ; Default ; > ;
83             < "VarP (Population)" ; Default ; > ;
84         };
85     };
88  // "Control" braucht immer eigene HelpId - ansonsten aus RID_SUBTBASE kopiert
90 TabPage RID_SCPAGE_SUBT_GROUP1 < RID_SUBTBASE
92     HelpId = HID_SCPAGE_SUBT_GROUP1 ;
95 TabPage RID_SCPAGE_SUBT_GROUP2 < RID_SUBTBASE
97     HelpId = HID_SCPAGE_SUBT_GROUP2 ;
100 TabPage RID_SCPAGE_SUBT_GROUP3 < RID_SUBTBASE
102     HelpId = HID_SCPAGE_SUBT_GROUP3 ;
105 TabDialog RID_SCDLG_SUBTOTALS
107     OutputSize = TRUE ;
108     SVLook = TRUE ;
109     Size = MAP_APPFONT ( 294 , 176 ) ;
110     Text [ en-US ] = "Subtotals" ;
111     Moveable = TRUE ;
112     Closeable = FALSE ;
113     TabControl 1
114     {
115         OutputSize = TRUE ;
116         SVLook = TRUE ;
117         Pos = MAP_APPFONT ( 3 , 3 ) ;
118         Size = MAP_APPFONT ( 240 , 150 ) ;
119         PageList =
120         {
121             PageItem
122             {
123                 Identifier = PAGE_GROUP1 ;
124                 Text [ en-US ] = "1st Group" ;
125             };
126             PageItem
127             {
128                 Identifier = PAGE_GROUP2 ;
129                 Text [ en-US ] = "2nd Group" ;
130             };
131             PageItem
132             {
133                 Identifier = PAGE_GROUP3 ;
134                 Text [ en-US ] = "3rd Group" ;
135             };
136             PageItem
137             {
138                 Identifier = PAGE_OPTIONS ;
139                 Text [ en-US ] = "Options" ;
140             };
141         };
142     };
143     PushButton BTN_REMOVE
144     {
145         Pos = MAP_APPFONT ( 143 , 160 ) ;
146         Size = MAP_APPFONT ( 40 , 12 ) ;
147         Text [ en-US ] = "~Delete" ;
148         TabStop = TRUE ;
149     };
152 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */