xref: /trunk/main/sc/source/ui/src/toolbox.src (revision 44f2bcd46a8c521315ee0d4e9456397cb073ee46)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22#include "sc.hrc" // -> #include <sfx.hrc>
23#include <svx/globlmn.hrc>
24#include "tbinsert.hrc" // Sub-IDs
25
26// ToolBoxen: ----------------------------------------------------------------
27
28/*
29 * ToolBox mit Eingabezeile: HelpStrings für Knöpfe und Fenster:
30 */
31
32#define ITEM_TOOLBAR_SORT_ASCENDING \
33    Identifier = SID_SORT_ASCENDING ; \
34    HelpId = SID_SORT_ASCENDING ;
35
36#define ITEM_TOOLBAR_SORT_DESCENDING \
37    Identifier = SID_SORT_DESCENDING ; \
38    HelpId = SID_SORT_DESCENDING ;
39
40#define ITEM_TOOLBAR_INSERT_FRAME \
41    Identifier = SID_INSERT_FRAME ; \
42    HelpId = SID_INSERT_FRAME ;
43
44
45#define ITEM_TOOLBAR_INSERT_GRAPHIC \
46    Identifier = SID_INSERT_GRAPHIC ; \
47    HelpId = SID_INSERT_GRAPHIC ;
48
49#define ITEM_TOOLBAR_AUTO_FILTER \
50    Identifier = SID_AUTO_FILTER ; \
51    HelpId = SID_AUTO_FILTER ;
52
53
54#define ITEM_TOOLBAR_OUTLINE_MAKE \
55    Identifier = SID_OUTLINE_MAKE ; \
56    HelpId = SID_OUTLINE_MAKE ;
57
58
59#define ITEM_TOOLBAR_OUTLINE_REMOVE \
60    Identifier = SID_OUTLINE_REMOVE ; \
61    HelpId = SID_OUTLINE_REMOVE ;
62
63#define ITEM_TOOLBAR_DRAW_CHART \
64    Identifier = SID_INSERT_DIAGRAM ; \
65    HelpId = SID_DRAW_CHART ;
66
67#define ITEM_TOOLBAR_SPELLING \
68    Identifier = SID_SPELL_DIALOG ; \
69    HelpId = SID_SPELL_DIALOG ;
70
71#define ITEM_TOOLBAR_THESAURUS \
72    Identifier = SID_THESAURUS ; \
73    HelpId = SID_THESAURUS ;
74
75#define ITEM_TOOLBAR_FILTER \
76    Identifier = SID_FILTER ; \
77    HelpId = SID_FILTER ;
78
79#define ITEM_TOOLBAR_SPECIAL_FILTER \
80    Identifier = SID_SPECIAL_FILTER ;\
81    HelpId = SID_SPECIAL_FILTER ;
82
83String SCSTR_QHELP_POSWND
84{
85    Text [ en-US ] = "Name Box" ;
86};
87
88String SCSTR_QHELP_INPUTWND
89{
90    Text [ en-US ] = "Input line" ;
91};
92
93String SCSTR_QHELP_BTNCALC
94{
95    Text [ en-US ] = "Function Wizard" ;
96};
97
98String SCSTR_QHELP_BTNOK
99{
100    Text [ en-US ] = "Accept" ;
101};
102
103String SCSTR_QHELP_BTNCANCEL
104{
105    Text [ en-US ] = "Cancel" ;
106};
107
108String SCSTR_QHELP_BTNSUM
109{
110    Text [ en-US ] = "Sum" ;
111};
112
113String SCSTR_QHELP_BTNEQUAL
114{
115    Text [ en-US ] = "Function" ;
116};
117
118// Don't use this image list for normal toolbar images. We have now our commandimagelist
119// folder in default_images. This list is now only used for special toolboxes that are
120// used in floating windows.
121
122#define DEFAULT_IDLIST \
123    IdList = {                                      \
124        /* Eingabezeile */                          \
125        SID_INPUT_FUNCTION;         /* 20047 */     \
126        SID_INPUT_SUM;              /* 20048 */     \
127        SID_INPUT_EQUAL;            /* 20049 */     \
128        SID_INPUT_CANCEL;                           \
129        SID_INPUT_OK;                               \
130    };                                              \
131    IdCount = {                                     \
132        5;                                          \
133    };
134
135ImageList RID_DEFAULTIMAGELIST_SC
136{
137    Prefix = "sc" ;
138    MaskColor = STD_MASKCOLOR ;
139    DEFAULT_IDLIST
140};
141
142ImageList RID_DEFAULTIMAGELIST_LC
143{
144    Prefix = "lc" ;
145    MaskColor = STD_MASKCOLOR ;
146    DEFAULT_IDLIST
147};
148
149ImageList RID_DEFAULTIMAGELIST_SCH
150{
151    Prefix = "sch" ;
152    MaskColor = SC_HC_MASKCOLOR ;
153    DEFAULT_IDLIST
154};
155
156ImageList RID_DEFAULTIMAGELIST_LCH
157{
158    Prefix = "lch" ;
159    MaskColor = SC_HC_MASKCOLOR ;
160    DEFAULT_IDLIST
161};
162
163// ********************************************************************** EOF
164