home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 November / CDVD1105.ISO / Software / Freeware / programare / graphics32 / Examples / Clx / ImgView_Layers_Ex / NewImageUnit.dfm / NewImageUnit.txt
Encoding:
Text File  |  2004-07-13  |  2.4 KB  |  143 lines

  1. object NewImageForm: TNewImageForm
  2.   Left = 282
  3.   Top = 194
  4.   BorderStyle = bsDialog
  5.   Caption = 'New Image'
  6.   ClientHeight = 194
  7.   ClientWidth = 250
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'Tahoma'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poScreenCenter
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Label1: TLabel
  19.     Left = 24
  20.     Top = 27
  21.     Width = 32
  22.     Height = 13
  23.     Caption = 'Width:'
  24.     FocusControl = ImageWidth
  25.   end
  26.   object Label2: TLabel
  27.     Left = 24
  28.     Top = 67
  29.     Width = 35
  30.     Height = 13
  31.     Caption = 'Height:'
  32.     FocusControl = ImageHeight
  33.   end
  34.   object Label3: TLabel
  35.     Left = 200
  36.     Top = 27
  37.     Width = 27
  38.     Height = 13
  39.     Caption = 'pixels'
  40.   end
  41.   object Label4: TLabel
  42.     Left = 200
  43.     Top = 67
  44.     Width = 27
  45.     Height = 13
  46.     Caption = 'pixels'
  47.   end
  48.   object Label5: TLabel
  49.     Left = 24
  50.     Top = 116
  51.     Width = 88
  52.     Height = 13
  53.     Caption = 'Background Color:'
  54.   end
  55.   object ImageWidth: TEdit
  56.     Left = 72
  57.     Top = 24
  58.     Width = 97
  59.     Height = 21
  60.     TabOrder = 0
  61.     Text = '640'
  62.   end
  63.   object UpDown1: TUpDown
  64.     Left = 169
  65.     Top = 24
  66.     Width = 18
  67.     Height = 21
  68.     Associate = ImageWidth
  69.     Min = 1
  70.     Max = 2000
  71.     Position = 640
  72.     TabOrder = 1
  73.     Wrap = False
  74.   end
  75.   object ImageHeight: TEdit
  76.     Left = 72
  77.     Top = 64
  78.     Width = 97
  79.     Height = 21
  80.     TabOrder = 2
  81.     Text = '480'
  82.   end
  83.   object UpDown2: TUpDown
  84.     Left = 169
  85.     Top = 64
  86.     Width = 18
  87.     Height = 21
  88.     Associate = ImageHeight
  89.     Min = 1
  90.     Max = 2000
  91.     Position = 480
  92.     TabOrder = 3
  93.     Wrap = False
  94.   end
  95.   object Panel1: TPanel
  96.     Left = 120
  97.     Top = 112
  98.     Width = 67
  99.     Height = 21
  100.     BevelOuter = bvNone
  101.     BorderStyle = bsSingle
  102.     Color = clWhite
  103.     TabOrder = 4
  104.   end
  105.   object Button1: TButton
  106.     Left = 192
  107.     Top = 112
  108.     Width = 35
  109.     Height = 20
  110.     Caption = 'Select'
  111.     TabOrder = 5
  112.     TabStop = False
  113.     OnClick = Button1Click
  114.   end
  115.   object Button2: TButton
  116.     Left = 104
  117.     Top = 164
  118.     Width = 65
  119.     Height = 22
  120.     Caption = 'OK'
  121.     Default = True
  122.     ModalResult = 1
  123.     TabOrder = 6
  124.   end
  125.   object Button3: TButton
  126.     Left = 176
  127.     Top = 164
  128.     Width = 65
  129.     Height = 22
  130.     Cancel = True
  131.     Caption = 'Cancel'
  132.     ModalResult = 2
  133.     TabOrder = 7
  134.   end
  135.   object ColorDialog1: TColorDialog
  136.     Ctl3D = True
  137.     Color = clWhite
  138.     Options = [cdFullOpen]
  139.     Left = 196
  140.     Top = 132
  141.   end
  142. end
  143.