Changeset 70 for oup/current
- Timestamp:
- Jan 9, 2007, 10:16:16 PM (18 years ago)
- Location:
- oup/current
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
oup/current/Tools/RawEdit.dfm
r68 r70 138 138 Height = 114 139 139 Align = alClient 140 ColCount = 1140 ColCount = 2 141 141 DefaultColWidth = 80 142 142 DefaultRowHeight = 18 143 143 FixedCols = 0 144 144 RowCount = 8 145 FixedRows = 0146 145 Font.Charset = DEFAULT_CHARSET 147 146 Font.Color = clWindowText -
oup/current/Tools/RawEdit.pas
r69 r70 385 385 fileid := -1; 386 386 387 { 387 388 value_viewer.ColCount := 2; 388 389 value_viewer.RowCount := 8; 389 390 value_viewer.FixedRows := 1; 390 391 } 391 392 value_viewer.Cells[0, 0] := 'Type'; 392 393 value_viewer.Cells[1, 0] := 'Value'; … … 457 458 procedure TForm_RawEdit.panel_contentResize(Sender: TObject); 458 459 begin 459 // value_viewer.ColWidths[1] := value_viewer.Width - value_viewer.ColWidths[0] - 28; 460 if fileid >= 0 then 461 value_viewer.ColWidths[1] := value_viewer.Width - value_viewer.ColWidths[0] - 50; 460 462 end; 461 463 -
oup/current/Tools/Template.pas
r58 r70 368 368 procedure TForm_ToolTemplate.FormActivate(Sender: TObject); 369 369 begin 370 edit_filtername.SetFocus; 370 if edit_filtername.CanFocus then 371 edit_filtername.SetFocus 372 else 373 if content.CanFocus then 374 content.SetFocus; 371 375 end; 372 376
Note:
See TracChangeset
for help on using the changeset viewer.