18e0a7b1bSAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 38e0a7b1bSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 48e0a7b1bSAndrew Rist * or more contributor license agreements. See the NOTICE file 58e0a7b1bSAndrew Rist * distributed with this work for additional information 68e0a7b1bSAndrew Rist * regarding copyright ownership. The ASF licenses this file 78e0a7b1bSAndrew Rist * to you under the Apache License, Version 2.0 (the 88e0a7b1bSAndrew Rist * "License"); you may not use this file except in compliance 98e0a7b1bSAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 118e0a7b1bSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 138e0a7b1bSAndrew Rist * Unless required by applicable law or agreed to in writing, 148e0a7b1bSAndrew Rist * software distributed under the License is distributed on an 158e0a7b1bSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 168e0a7b1bSAndrew Rist * KIND, either express or implied. See the License for the 178e0a7b1bSAndrew Rist * specific language governing permissions and limitations 188e0a7b1bSAndrew Rist * under the License. 19cdf0e10cSrcweir * 208e0a7b1bSAndrew Rist *************************************************************/ 218e0a7b1bSAndrew Rist 22cdf0e10cSrcweir#include "helpid.hrc" 23dd913a84Sdamjan#include "brkdlg.hrc" 24cdf0e10cSrcweirModalDialog RID_BASICIDE_BREAKPOINTDLG 25cdf0e10cSrcweir{ 26cdf0e10cSrcweir HelpId = "basctl:RID_BASICIDE_BREAKPOINTDLG" ; 27cdf0e10cSrcweir OutputSize = TRUE ; 28cdf0e10cSrcweir SVLook = TRUE ; 29cdf0e10cSrcweir Size = MAP_APPFONT ( 178, 116 ) ; 30cdf0e10cSrcweir Moveable = TRUE ; 31cdf0e10cSrcweir // Closeable = TRUE ; 32cdf0e10cSrcweir ComboBox RID_CB_BRKPOINTS 33cdf0e10cSrcweir { 34cdf0e10cSrcweir HelpID = "basctl:ComboBox:RID_BASICIDE_BREAKPOINTDLG:RID_CB_BRKPOINTS" ; 35cdf0e10cSrcweir Pos = MAP_APPFONT ( 6, 14 ) ; 36cdf0e10cSrcweir Size = MAP_APPFONT ( 110, 70 ) ; 37cdf0e10cSrcweir TabStop = TRUE ; 38cdf0e10cSrcweir }; 39cdf0e10cSrcweir OKButton RID_PB_OK 40cdf0e10cSrcweir { 41cdf0e10cSrcweir Pos = MAP_APPFONT ( 122, 6 ) ; 42cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 14 ) ; 43cdf0e10cSrcweir TabStop = TRUE ; 44cdf0e10cSrcweir }; 45cdf0e10cSrcweir CancelButton RID_PB_CANCEL 46cdf0e10cSrcweir { 47cdf0e10cSrcweir Pos = MAP_APPFONT ( 122, 23 ) ; 48cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 14 ) ; 49cdf0e10cSrcweir TabStop = TRUE ; 50cdf0e10cSrcweir }; 51cdf0e10cSrcweir PushButton RID_PB_NEW 52cdf0e10cSrcweir { 53cdf0e10cSrcweir HelpID = "basctl:PushButton:RID_BASICIDE_BREAKPOINTDLG:RID_PB_NEW" ; 54cdf0e10cSrcweir Pos = MAP_APPFONT ( 122, 57 ) ; 55cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 14 ) ; 56cdf0e10cSrcweir TabStop = TRUE ; 57cdf0e10cSrcweir Text [ en-US ] = "New" ; 58cdf0e10cSrcweir }; 59cdf0e10cSrcweir PushButton RID_PB_DEL 60cdf0e10cSrcweir { 61cdf0e10cSrcweir HelpID = "basctl:PushButton:RID_BASICIDE_BREAKPOINTDLG:RID_PB_DEL" ; 62cdf0e10cSrcweir Pos = MAP_APPFONT ( 122, 74 ) ; 63cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 14 ) ; 64cdf0e10cSrcweir TabStop = TRUE ; 65cdf0e10cSrcweir Text [ en-US ] = "Delete" ; 66cdf0e10cSrcweir }; 67cdf0e10cSrcweir CheckBox RID_CHKB_ACTIVE 68cdf0e10cSrcweir { 69cdf0e10cSrcweir HelpID = "basctl:CheckBox:RID_BASICIDE_BREAKPOINTDLG:RID_CHKB_ACTIVE" ; 70cdf0e10cSrcweir Pos = MAP_APPFONT ( 6, 87 ) ; 71cdf0e10cSrcweir Size = MAP_APPFONT ( 40, 12 ) ; 72cdf0e10cSrcweir TabStop = TRUE ; 73cdf0e10cSrcweir Text [ en-US ] = "Active" ; 74cdf0e10cSrcweir }; 75cdf0e10cSrcweir FixedText RID_FT_PASS 76cdf0e10cSrcweir { 77cdf0e10cSrcweir Pos = MAP_APPFONT ( 6, 102 ) ; 78cdf0e10cSrcweir Size = MAP_APPFONT ( 75, 10 ) ; 79cdf0e10cSrcweir Text [ en-US ] = "Pass Count:" ; 80cdf0e10cSrcweir }; 81cdf0e10cSrcweir FixedText RID_FT_BRKPOINTS 82cdf0e10cSrcweir { 83cdf0e10cSrcweir Pos = MAP_APPFONT ( 6, 3 ) ; 84cdf0e10cSrcweir Size = MAP_APPFONT ( 110, 10 ) ; 85cdf0e10cSrcweir Text [ en-US ] = "Breakpoints" ; 86cdf0e10cSrcweir }; 87cdf0e10cSrcweir NumericField RID_FLD_PASS 88cdf0e10cSrcweir { 89cdf0e10cSrcweir HelpID = "basctl:NumericField:RID_BASICIDE_BREAKPOINTDLG:RID_FLD_PASS" ; 90cdf0e10cSrcweir Border = TRUE ; 91cdf0e10cSrcweir Pos = MAP_APPFONT ( 81, 100 ) ; 92cdf0e10cSrcweir Size = MAP_APPFONT ( 35, 12 ) ; 93cdf0e10cSrcweir TabStop = TRUE ; 94cdf0e10cSrcweir }; 95cdf0e10cSrcweir Text [ en-US ] = "Manage Breakpoints" ; 96cdf0e10cSrcweir}; 97cdf0e10cSrcweir 98*ef4882fcSmseidel// ********************************************************************** EOF 99