xref: /trunk/main/basctl/source/basicide/brkdlg.src (revision 31bbceb0f9d64c0c2c3b22a794a1666c1f33396e)
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        TabStop = TRUE ;
67        Text [ en-US ] = "Delete" ;
68    };
69    CheckBox RID_CHKB_ACTIVE
70    {
71        HelpID = "basctl:CheckBox:RID_BASICIDE_BREAKPOINTDLG:RID_CHKB_ACTIVE" ;
72        Pos = MAP_APPFONT ( 6, 87 ) ;
73        Size = MAP_APPFONT ( 40, 12 ) ;
74        TabStop = TRUE ;
75        Text [ en-US ] = "Active" ;
76    };
77    FixedText RID_FT_PASS
78    {
79        Pos = MAP_APPFONT ( 6, 102 ) ;
80        Size = MAP_APPFONT ( 75, 10 ) ;
81        Text [ en-US ] = "Pass Count:" ;
82    };
83    FixedText RID_FT_BRKPOINTS
84    {
85        Pos = MAP_APPFONT ( 6, 3 ) ;
86        Size = MAP_APPFONT ( 110, 10 ) ;
87        Text [ en-US ] = "Breakpoints" ;
88    };
89    NumericField RID_FLD_PASS
90    {
91        HelpID = "basctl:NumericField:RID_BASICIDE_BREAKPOINTDLG:RID_FLD_PASS" ;
92        Border = TRUE ;
93        Pos = MAP_APPFONT ( 81, 100 ) ;
94        Size = MAP_APPFONT ( 35, 12 ) ;
95        TabStop = TRUE ;
96    };
97    Text [ en-US ] = "Manage Breakpoints" ;
98};
99
100// ********************************************************************** EOF
101