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