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