home *** CD-ROM | disk | FTP | other *** search
/ PC World Plus! (NZ) 2001 June / HDC50.iso / Runimage / Delphi50 / Demos / Resxplor / RXMAIN.DFM / RXMAIN.txt < prev   
Text File  |  1999-08-11  |  6KB  |  269 lines

  1. object MainForm: TMainForm
  2.   Left = 223
  3.   Top = 151
  4.   Width = 577
  5.   Height = 260
  6.   Caption = 'Resource Explorer'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Icon.Data = {<image000.ico>}
  14.   Menu = MainMenu
  15.   OldCreateOrder = True
  16.   OnCreate = FormCreate
  17.   OnDestroy = FormDestroy
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object StatusBar: TStatusBar
  21.     Left = 0
  22.     Top = 190
  23.     Width = 567
  24.     Height = 19
  25.     Panels = <
  26.       item
  27.         Width = 150
  28.       end
  29.       item
  30.         Width = 500
  31.       end>
  32.     SimplePanel = False
  33.   end
  34.   object TreeViewPanel: TPanel
  35.     Left = 0
  36.     Top = 0
  37.     Width = 185
  38.     Height = 190
  39.     Align = alLeft
  40.     BevelOuter = bvNone
  41.     TabOrder = 1
  42.     object Panel1: TPanel
  43.       Left = 0
  44.       Top = 0
  45.       Width = 185
  46.       Height = 21
  47.       Align = alTop
  48.       Alignment = taLeftJustify
  49.       BevelInner = bvLowered
  50.       BevelOuter = bvNone
  51.       BorderWidth = 1
  52.       Caption = ' Resources'
  53.       TabOrder = 0
  54.     end
  55.     object TreeView: TTreeView
  56.       Left = 0
  57.       Top = 21
  58.       Width = 185
  59.       Height = 169
  60.       Align = alClient
  61.       Images = Small
  62.       Indent = 19
  63.       ReadOnly = True
  64.       TabOrder = 1
  65.       OnChange = TreeViewChange
  66.     end
  67.   end
  68.   object Splitter: TPanel
  69.     Left = 185
  70.     Top = 0
  71.     Width = 2
  72.     Height = 190
  73.     Cursor = crHSplit
  74.     Align = alLeft
  75.     BevelOuter = bvNone
  76.     TabOrder = 2
  77.     OnMouseDown = SplitterMouseDown
  78.     OnMouseMove = SplitterMouseMove
  79.     OnMouseUp = SplitterMouseUp
  80.   end
  81.   object ListViewPanel: TPanel
  82.     Left = 187
  83.     Top = 0
  84.     Width = 380
  85.     Height = 190
  86.     Align = alClient
  87.     BevelOuter = bvNone
  88.     TabOrder = 3
  89.     object ListViewCaption: TPanel
  90.       Left = 0
  91.       Top = 0
  92.       Width = 380
  93.       Height = 21
  94.       Align = alTop
  95.       Alignment = taLeftJustify
  96.       BevelInner = bvLowered
  97.       BevelOuter = bvNone
  98.       BorderWidth = 1
  99.       TabOrder = 0
  100.     end
  101.     object Notebook: TNotebook
  102.       Left = 0
  103.       Top = 21
  104.       Width = 380
  105.       Height = 169
  106.       Align = alClient
  107.       Color = clBtnFace
  108.       PageIndex = 1
  109.       ParentColor = False
  110.       TabOrder = 1
  111.       OnEnter = NotebookEnter
  112.       object TPage
  113.         Left = 0
  114.         Top = 0
  115.         Caption = 'ListViewPage'
  116.         object ListView: TListView
  117.           Left = 0
  118.           Top = 0
  119.           Width = 382
  120.           Height = 175
  121.           Align = alClient
  122.           Columns = <
  123.             item
  124.               Caption = 'Name'
  125.               Width = 150
  126.             end
  127.             item
  128.               Caption = 'Offset'
  129.               Width = 80
  130.             end
  131.             item
  132.               Caption = 'Size'
  133.               Width = 80
  134.             end>
  135.           ColumnClick = False
  136.           LargeImages = Large
  137.           ReadOnly = True
  138.           SmallImages = Small
  139.           TabOrder = 0
  140.           ViewStyle = vsReport
  141.           OnEnter = ListViewEnter
  142.         end
  143.       end
  144.       object TPage
  145.         Left = 0
  146.         Top = 0
  147.         Caption = 'ImageViewPage'
  148.         object ImageViewer: TImage
  149.           Left = 0
  150.           Top = 0
  151.           Width = 380
  152.           Height = 169
  153.           Align = alClient
  154.           Center = True
  155.         end
  156.       end
  157.       object TPage
  158.         Left = 0
  159.         Top = 0
  160.         Caption = 'StringViewPage'
  161.         object StringViewer: TMemo
  162.           Left = 0
  163.           Top = 0
  164.           Width = 382
  165.           Height = 175
  166.           Align = alClient
  167.           ReadOnly = True
  168.           ScrollBars = ssBoth
  169.           TabOrder = 0
  170.           WantReturns = False
  171.           WordWrap = False
  172.         end
  173.       end
  174.       object TPage
  175.         Left = 0
  176.         Top = 0
  177.         Caption = 'OtherViewPage'
  178.       end
  179.     end
  180.   end
  181.   object MainMenu: TMainMenu
  182.     Left = 530
  183.     Top = 161
  184.     object miFile: TMenuItem
  185.       Caption = '&File'
  186.       object miFileOpen: TMenuItem
  187.         Caption = '&Open...'
  188.         OnClick = FileOpen
  189.       end
  190.       object miFileSave: TMenuItem
  191.         Caption = '&Save Resource...'
  192.         OnClick = SaveResource
  193.       end
  194.       object miN1: TMenuItem
  195.         Caption = '-'
  196.       end
  197.       object miFileExit: TMenuItem
  198.         Caption = 'E&xit'
  199.         OnClick = FileExit
  200.       end
  201.     end
  202.     object miView: TMenuItem
  203.       Caption = '&View'
  204.       OnClick = ViewMenuDropDown
  205.       object miViewStatusBar: TMenuItem
  206.         Caption = 'Status &Bar'
  207.         OnClick = ToggleStatusBar
  208.       end
  209.       object N6: TMenuItem
  210.         Caption = '-'
  211.       end
  212.       object miViewLargeIcons: TMenuItem
  213.         Caption = 'Lar&ge Icons'
  214.         GroupIndex = 1
  215.         RadioItem = True
  216.         OnClick = SelectListViewType
  217.       end
  218.       object miViewSmallIcons: TMenuItem
  219.         Tag = 1
  220.         Caption = 'S&mall Icons'
  221.         GroupIndex = 1
  222.         RadioItem = True
  223.         OnClick = SelectListViewType
  224.       end
  225.       object miViewList: TMenuItem
  226.         Tag = 2
  227.         Caption = '&List'
  228.         GroupIndex = 1
  229.         RadioItem = True
  230.         OnClick = SelectListViewType
  231.       end
  232.       object miViewDetails: TMenuItem
  233.         Tag = 3
  234.         Caption = '&Details'
  235.         GroupIndex = 1
  236.         RadioItem = True
  237.         OnClick = SelectListViewType
  238.       end
  239.     end
  240.     object miHelp: TMenuItem
  241.       Caption = '&Help'
  242.       object miHelpAbout: TMenuItem
  243.         Caption = '&About'
  244.         OnClick = ShowAboutBox
  245.       end
  246.     end
  247.   end
  248.   object FileOpenDialog: TOpenDialog
  249.     Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist]
  250.     Left = 497
  251.     Top = 161
  252.   end
  253.   object FileSaveDialog: TSaveDialog
  254.     Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist]
  255.     Left = 463
  256.     Top = 161
  257.   end
  258.   object Small: TImageList
  259.     Left = 384
  260.     Top = 161
  261.   end
  262.   object Large: TImageList
  263.     Height = 32
  264.     Width = 32
  265.     Left = 417
  266.     Top = 161
  267.   end
  268. end
  269.