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 --------------------------------------------------------------- 25#include "helpid.hrc" 26#include "dialog.hrc" 27 28// ----------------------------------------------------------------------- 29#define STD_MASKCOLOR Color { Red = 0xC000 ; Green = 0xC000 ; Blue = 0xC000 ; } 30#define STD_HC_MASKCOLOR Color { Red = 0xFFFF ; Green = 0x0000 ; Blue = 0xFFFF ; } 31 32FloatingWindow SID_RECORDING_FLOATWINDOW 33{ 34 HelpID = "sfx2:FloatingWindow:SID_RECORDING_FLOATWINDOW" ; 35 Moveable = TRUE ; 36 Closeable = TRUE ; 37 Hide = TRUE ; 38 SVLook = TRUE ; 39 Text [ en-US ] = "Record Macro" ; 40}; 41 42ToolBox SID_RECORDING_FLOATWINDOW 43{ 44 SVLook = TRUE ; 45 ButtonType = BUTTON_TEXT ; 46 ItemList = 47 { 48 ToolBoxItem 49 { 50 Identifier = SID_STOP_RECORDING ; 51 Command = ".uno:StopRecording" ; 52 }; 53 }; 54}; 55 56String STR_MACRO_LOSS 57{ 58 Text [ en-US ] = "Do you really want to cancel the recording? Any steps recorded up to this point will be lost." ; 59}; 60 61String STR_CANCEL_RECORDING 62{ 63 Text [ en-US ] = "Cancel Recording" ; 64}; 65 66// ********************************************************************** EOF 67