home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / SBAREDIT.DFM / SBAREDIT.txt
Text File  |  1997-02-28  |  4KB  |  204 lines

  1. object StatusBarEditor: TStatusBarEditor
  2.   Left = 200
  3.   Top = 108
  4.   BorderStyle = bsDialog
  5.   Caption = 'StatusBar Panels Editor'
  6.   ClientHeight = 210
  7.   ClientWidth = 393
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   OnCreate = FormCreate
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object HelpButton: TButton
  17.     Left = 310
  18.     Top = 176
  19.     Width = 75
  20.     Height = 25
  21.     Caption = '&Help'
  22.     TabOrder = 5
  23.     OnClick = HelpButtonClick
  24.   end
  25.   object ApplyButton: TButton
  26.     Left = 230
  27.     Top = 176
  28.     Width = 75
  29.     Height = 25
  30.     Caption = '&Apply'
  31.     Enabled = False
  32.     TabOrder = 4
  33.     OnClick = ApplyButtonClick
  34.   end
  35.   object CancelButton: TButton
  36.     Left = 150
  37.     Top = 176
  38.     Width = 75
  39.     Height = 25
  40.     Cancel = True
  41.     Caption = 'Cancel'
  42.     TabOrder = 3
  43.     OnClick = CancelButtonClick
  44.   end
  45.   object OkButton: TButton
  46.     Left = 70
  47.     Top = 176
  48.     Width = 75
  49.     Height = 25
  50.     Caption = 'OK'
  51.     Default = True
  52.     TabOrder = 2
  53.     OnClick = OkButtonClick
  54.   end
  55.   object GroupBox2: TGroupBox
  56.     Left = 152
  57.     Top = 4
  58.     Width = 233
  59.     Height = 157
  60.     Caption = 'Panel properties'
  61.     TabOrder = 1
  62.     object Label1: TLabel
  63.       Left = 12
  64.       Top = 21
  65.       Width = 24
  66.       Height = 13
  67.       Caption = '&Text:'
  68.       FocusControl = PanelText
  69.     end
  70.     object Label2: TLabel
  71.       Left = 12
  72.       Top = 47
  73.       Width = 31
  74.       Height = 13
  75.       Caption = '&Width:'
  76.       FocusControl = PanelWidth
  77.     end
  78.     object Label3: TLabel
  79.       Left = 12
  80.       Top = 73
  81.       Width = 26
  82.       Height = 13
  83.       Caption = '&Style:'
  84.       FocusControl = PanelStyle
  85.     end
  86.     object Label4: TLabel
  87.       Left = 12
  88.       Top = 99
  89.       Width = 30
  90.       Height = 13
  91.       Caption = '&Bevel:'
  92.       FocusControl = PanelBevel
  93.     end
  94.     object Label5: TLabel
  95.       Left = 12
  96.       Top = 125
  97.       Width = 49
  98.       Height = 13
  99.       Caption = 'A&lignment:'
  100.       FocusControl = PanelAlignment
  101.     end
  102.     object PanelText: TEdit
  103.       Left = 68
  104.       Top = 18
  105.       Width = 145
  106.       Height = 21
  107.       TabOrder = 0
  108.       OnChange = PanelEditChange
  109.       OnExit = PanelControlExit
  110.     end
  111.     object PanelWidth: TEdit
  112.       Left = 68
  113.       Top = 44
  114.       Width = 145
  115.       Height = 21
  116.       TabOrder = 1
  117.       OnChange = PanelEditChange
  118.       OnExit = PanelControlExit
  119.     end
  120.     object PanelStyle: TComboBox
  121.       Left = 68
  122.       Top = 70
  123.       Width = 145
  124.       Height = 21
  125.       Style = csDropDownList
  126.       ItemHeight = 13
  127.       Items.Strings = (
  128.         'Text'
  129.         'OwnerDraw')
  130.       TabOrder = 2
  131.       OnChange = PanelComboChange
  132.       OnExit = PanelControlExit
  133.     end
  134.     object PanelBevel: TComboBox
  135.       Left = 68
  136.       Top = 96
  137.       Width = 145
  138.       Height = 21
  139.       Style = csDropDownList
  140.       ItemHeight = 13
  141.       Items.Strings = (
  142.         'None'
  143.         'Lowered'
  144.         'Raised')
  145.       TabOrder = 3
  146.       OnChange = PanelComboChange
  147.       OnExit = PanelControlExit
  148.     end
  149.     object PanelAlignment: TComboBox
  150.       Left = 68
  151.       Top = 122
  152.       Width = 145
  153.       Height = 21
  154.       Style = csDropDownList
  155.       ItemHeight = 13
  156.       Items.Strings = (
  157.         'Left justify'
  158.         'Right justify'
  159.         'Center')
  160.       TabOrder = 4
  161.       OnChange = PanelComboChange
  162.       OnExit = PanelControlExit
  163.     end
  164.   end
  165.   object GroupBox1: TGroupBox
  166.     Left = 8
  167.     Top = 4
  168.     Width = 137
  169.     Height = 157
  170.     Caption = '&Panels'
  171.     TabOrder = 0
  172.     object PanelList: TListBox
  173.       Left = 8
  174.       Top = 16
  175.       Width = 121
  176.       Height = 101
  177.       ItemHeight = 13
  178.       TabOrder = 0
  179.       OnClick = PanelListClick
  180.       OnDragDrop = PanelListDragDrop
  181.       OnDragOver = PanelListDragOver
  182.       OnMouseDown = PanelListMouseDown
  183.     end
  184.     object NewButton: TButton
  185.       Left = 8
  186.       Top = 124
  187.       Width = 57
  188.       Height = 25
  189.       Caption = '&New'
  190.       TabOrder = 1
  191.       OnClick = NewButtonClick
  192.     end
  193.     object DeleteButton: TButton
  194.       Left = 72
  195.       Top = 124
  196.       Width = 57
  197.       Height = 25
  198.       Caption = '&Delete'
  199.       TabOrder = 2
  200.       OnClick = DeleteButtonClick
  201.     end
  202.   end
  203. end
  204.