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