Changeset 26 for trunk/Forms/UFormNew.pas
- Timestamp:
- Dec 22, 2016, 5:07:02 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormNew.pas
r14 r26 7 7 uses 8 8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, Spin, 9 StdCtrls, ActnList, U Graphic;9 StdCtrls, ActnList, UFGraphics; 10 10 11 11 type … … 45 45 procedure TFormNew.SpinEditWidthChange(Sender: TObject); 46 46 var 47 ColorFormat: T GColorFormat;47 ColorFormat: TColorFormat; 48 48 begin 49 ColorFormat := Color Manager.Formats[ComboBoxColorFormat.ItemIndex];49 ColorFormat := ColorFormatManager.Formats[ComboBoxColorFormat.ItemIndex]; 50 50 LabelMemRequire.Caption := IntToStr(SpinEditWidth.Value * SpinEditHeight.Value * 51 51 ColorFormat.BitDepth div 8) + ' bytes'; … … 54 54 procedure TFormNew.FormShow(Sender: TObject); 55 55 var 56 ColorFormat: T GColorFormat;56 ColorFormat: TColorFormat; 57 57 I: Integer; 58 58 begin 59 59 ComboBoxColorFormat.Clear; 60 for I := 0 to Color Manager.FormatCount - 1 do begin61 ColorFormat := Color Manager.Formats[I];60 for I := 0 to ColorFormatManager.FormatCount - 1 do begin 61 ColorFormat := ColorFormatManager.Formats[I]; 62 62 ComboBoxColorFormat.AddItem(ColorFormat.Name, nil); 63 63 end;
Note:
See TracChangeset
for help on using the changeset viewer.