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 23 24#include "sc.hrc" // -> #include <sfx.hrc> 25#include <svx/globlmn.hrc> 26#include "tbinsert.hrc" // Sub-IDs 27 28 29// ToolBoxen: ---------------------------------------------------------------- 30 31/* 32 * ToolBox mit Eingabezeile: HelpStrings fuer Knoepfe und Fenster: 33 */ 34 35#define ITEM_TOOLBAR_SORT_ASCENDING \ 36 Identifier = SID_SORT_ASCENDING ; \ 37 HelpId = SID_SORT_ASCENDING ; 38 39#define ITEM_TOOLBAR_SORT_DESCENDING \ 40 Identifier = SID_SORT_DESCENDING ; \ 41 HelpId = SID_SORT_DESCENDING ; 42 43#define ITEM_TOOLBAR_INSERT_FRAME \ 44 Identifier = SID_INSERT_FRAME ; \ 45 HelpId = SID_INSERT_FRAME ; 46 47 48#define ITEM_TOOLBAR_INSERT_GRAPHIC \ 49 Identifier = SID_INSERT_GRAPHIC ; \ 50 HelpId = SID_INSERT_GRAPHIC ; 51 52#define ITEM_TOOLBAR_AUTO_FILTER \ 53 Identifier = SID_AUTO_FILTER ; \ 54 HelpId = SID_AUTO_FILTER ; 55 56 57#define ITEM_TOOLBAR_OUTLINE_MAKE \ 58 Identifier = SID_OUTLINE_MAKE ; \ 59 HelpId = SID_OUTLINE_MAKE ; 60 61 62#define ITEM_TOOLBAR_OUTLINE_REMOVE \ 63 Identifier = SID_OUTLINE_REMOVE ; \ 64 HelpId = SID_OUTLINE_REMOVE ; 65 66#define ITEM_TOOLBAR_DRAW_CHART \ 67 Identifier = SID_INSERT_DIAGRAM ; \ 68 HelpId = SID_DRAW_CHART ; 69 70#define ITEM_TOOLBAR_SPELLING \ 71 Identifier = SID_SPELL_DIALOG ; \ 72 HelpId = SID_SPELL_DIALOG ; 73 74#define ITEM_TOOLBAR_THESAURUS \ 75 Identifier = SID_THESAURUS ; \ 76 HelpId = SID_THESAURUS ; 77 78#define ITEM_TOOLBAR_FILTER \ 79 Identifier = SID_FILTER ; \ 80 HelpId = SID_FILTER ; 81 82#define ITEM_TOOLBAR_SPECIAL_FILTER \ 83 Identifier = SID_SPECIAL_FILTER ;\ 84 HelpId = SID_SPECIAL_FILTER ; 85 86String SCSTR_QHELP_POSWND 87{ 88 Text [ en-US ] = "Name Box" ; 89}; 90 91String SCSTR_QHELP_INPUTWND 92{ 93 Text [ en-US ] = "Input line" ; 94}; 95 96String SCSTR_QHELP_BTNCALC 97{ 98 Text [ en-US ] = "Function Wizard" ; 99}; 100 101String SCSTR_QHELP_BTNOK 102{ 103 Text [ en-US ] = "Accept" ; 104}; 105 106String SCSTR_QHELP_BTNCANCEL 107{ 108 Text [ en-US ] = "Cancel" ; 109}; 110 111String SCSTR_QHELP_BTNSUM 112{ 113 Text [ en-US ] = "Sum" ; 114}; 115 116String SCSTR_QHELP_BTNEQUAL 117{ 118 Text [ en-US ] = "Function" ; 119}; 120 121// Don't use this image list for normal toolbar images. We have now our commandimagelist 122// folder in default_images. This list is now only used for special toolboxes that are 123// used in floating windows. 124 125#define DEFAULT_IDLIST \ 126 IdList = { \ 127 /* Eingabezeile */ \ 128 SID_INPUT_FUNCTION; /* 20047 */ \ 129 SID_INPUT_SUM; /* 20048 */ \ 130 SID_INPUT_EQUAL; /* 20049 */ \ 131 SID_INPUT_CANCEL; \ 132 SID_INPUT_OK; \ 133 }; \ 134 IdCount = { \ 135 5; \ 136 }; 137 138ImageList RID_DEFAULTIMAGELIST_SC 139{ 140 Prefix = "sc" ; 141 MaskColor = STD_MASKCOLOR ; 142 DEFAULT_IDLIST 143}; 144 145ImageList RID_DEFAULTIMAGELIST_LC 146{ 147 Prefix = "lc" ; 148 MaskColor = STD_MASKCOLOR ; 149 DEFAULT_IDLIST 150}; 151 152ImageList RID_DEFAULTIMAGELIST_SCH 153{ 154 Prefix = "sch" ; 155 MaskColor = SC_HC_MASKCOLOR ; 156 DEFAULT_IDLIST 157}; 158 159ImageList RID_DEFAULTIMAGELIST_LCH 160{ 161 Prefix = "lch" ; 162 MaskColor = SC_HC_MASKCOLOR ; 163 DEFAULT_IDLIST 164}; 165 166// ********************************************************************** EOF 167