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 "helpid.hrc" 25#include <brkdlg.hrc> 26ModalDialog RID_BASICIDE_BREAKPOINTDLG 27{ 28 HelpId = "basctl:RID_BASICIDE_BREAKPOINTDLG" ; 29 OutputSize = TRUE ; 30 SVLook = TRUE ; 31 Size = MAP_APPFONT ( 178 , 116 ) ; 32 Moveable = TRUE ; 33 // Closeable = TRUE; 34 ComboBox RID_CB_BRKPOINTS 35 { 36 HelpID = "basctl:ComboBox:RID_BASICIDE_BREAKPOINTDLG:RID_CB_BRKPOINTS"; 37 Pos = MAP_APPFONT ( 6 , 14 ) ; 38 Size = MAP_APPFONT ( 110 , 70 ) ; 39 TabStop = TRUE ; 40 }; 41 OKButton RID_PB_OK 42 { 43 Pos = MAP_APPFONT ( 122 , 6 ) ; 44 Size = MAP_APPFONT ( 50 , 14 ) ; 45 TabStop = TRUE ; 46 }; 47 CancelButton RID_PB_CANCEL 48 { 49 Pos = MAP_APPFONT ( 122 , 23 ) ; 50 Size = MAP_APPFONT ( 50 , 14 ) ; 51 TabStop = TRUE ; 52 }; 53 PushButton RID_PB_NEW 54 { 55 HelpID = "basctl:PushButton:RID_BASICIDE_BREAKPOINTDLG:RID_PB_NEW"; 56 Pos = MAP_APPFONT ( 122 , 57 ) ; 57 Size = MAP_APPFONT ( 50 , 14 ) ; 58 TabStop = TRUE ; 59 Text [ en-US ] = "New" ; 60 }; 61 PushButton RID_PB_DEL 62 { 63 HelpID = "basctl:PushButton:RID_BASICIDE_BREAKPOINTDLG:RID_PB_DEL"; 64 Pos = MAP_APPFONT ( 122 , 74 ) ; 65 Size = MAP_APPFONT ( 50 , 14 ) ; 66 /* ### ACHTUNG: Neuer Text in Resource? L�schen : L�schen */ 67 TabStop = TRUE ; 68 Text [ en-US ] = "Delete" ; 69 }; 70 CheckBox RID_CHKB_ACTIVE 71 { 72 HelpID = "basctl:CheckBox:RID_BASICIDE_BREAKPOINTDLG:RID_CHKB_ACTIVE"; 73 Pos = MAP_APPFONT ( 6 , 87 ) ; 74 Size = MAP_APPFONT ( 40 , 12 ) ; 75 TabStop = TRUE ; 76 Text [ en-US ] = "Active" ; 77 }; 78 FixedText RID_FT_PASS 79 { 80 Pos = MAP_APPFONT ( 6 , 102 ) ; 81 Size = MAP_APPFONT ( 75 , 10 ) ; 82 Text [ en-US ] = "Pass Count:" ; 83 }; 84 FixedText RID_FT_BRKPOINTS 85 { 86 Pos = MAP_APPFONT ( 6 , 3 ) ; 87 Size = MAP_APPFONT ( 110, 10 ) ; 88 Text [ en-US ] = "Breakpoints" ; 89 }; 90 NumericField RID_FLD_PASS 91 { 92 HelpID = "basctl:NumericField:RID_BASICIDE_BREAKPOINTDLG:RID_FLD_PASS"; 93 Border = TRUE ; 94 Pos = MAP_APPFONT ( 81 , 100 ) ; 95 Size = MAP_APPFONT ( 35 , 12 ) ; 96 TabStop = TRUE ; 97 }; 98 Text [ en-US ] = "Manage Breakpoints" ; 99}; 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132