home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Bin / DCLITE50.BPL / 0 / RCDATA / TFRMREPOSITORY / TFRMREPOSITORY.txt
Encoding:
Text File  |  1999-08-11  |  25.7 KB  |  574 lines

  1. object frmRepository: TfrmRepository
  2.   Left = 147
  3.   Top = 145
  4.   Width = 640
  5.   Height = 480
  6.   Caption = 'Translation Repository'
  7.   Color = clBtnFace
  8.   ParentFont = True
  9.   OldCreateOrder = False
  10.   OnCreate = FormCreate
  11.   OnDestroy = FormDestroy
  12.   OnHide = FormHide
  13.   OnResize = FormResize
  14.   OnShow = FormShow
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object LangToolBar: TITEToolBar
  18.     Left = 0
  19.     Top = 25
  20.     Width = 632
  21.     Height = 38
  22.     Align = alTop
  23.     BevelInner = bvSpace
  24.     BevelOuter = bvNone
  25.     Caption = 'Language'
  26.     ParentColor = True
  27.     TabOrder = 1
  28.     AllOfTheAbove = -1
  29.     MinButtonsDown = 0
  30.     OnButtonClick = LangToolBarButtonClick
  31.     SyncWithGrid = False
  32.   end
  33.   object FileToolBar: TToolBar
  34.     Left = 0
  35.     Top = 0
  36.     Width = 632
  37.     Height = 25
  38.     ButtonWidth = 25
  39.     EdgeInner = esNone
  40.     EdgeOuter = esNone
  41.     Flat = True
  42.     Images = ImageList
  43.     PopupMenu = TextLabelsPopup
  44.     TabOrder = 0
  45.     Wrapable = False
  46.     object NewButton: TToolButton
  47.       Left = 0
  48.       Top = 0
  49.       Action = NewRepository
  50.       Caption = 'New'
  51.       ParentShowHint = False
  52.       ShowHint = True
  53.     end
  54.     object OpenButton: TCommandButton
  55.       Left = 25
  56.       Top = 0
  57.       Width = 36
  58.       Height = 22
  59.       Action = OpenRepository
  60.       Caption = 'Open'
  61.       ParentShowHint = False
  62.       ShowHint = True
  63.       DropdownMenu = ClosedFilesPopup
  64.       Images = ImageList
  65.     end
  66.     object SaveButton: TToolButton
  67.       Left = 61
  68.       Top = 0
  69.       Action = SaveRepository
  70.       Caption = 'Save'
  71.       ParentShowHint = False
  72.       ShowHint = True
  73.     end
  74.     object SaveAsButton: TToolButton
  75.       Left = 86
  76.       Top = 0
  77.       Action = SaveAsRepository
  78.       Caption = 'Save As'
  79.       ParentShowHint = False
  80.       ShowHint = True
  81.     end
  82.     object Separator1: TToolButton
  83.       Left = 111
  84.       Top = 0
  85.       Width = 7
  86.       ImageIndex = 4
  87.       Style = tbsSeparator
  88.     end
  89.     object FindButton: TToolButton
  90.       Left = 118
  91.       Top = 0
  92.       Action = FindRepository
  93.       Caption = 'Find'
  94.       ParentShowHint = False
  95.       ShowHint = True
  96.     end
  97.     object Separator2: TToolButton
  98.       Left = 143
  99.       Top = 0
  100.       Width = 7
  101.       ImageIndex = 6
  102.       Style = tbsSeparator
  103.     end
  104.     object ImportButton: TToolButton
  105.       Left = 150
  106.       Top = 0
  107.       Action = ImportRepository
  108.       Caption = 'Import'
  109.       ParentShowHint = False
  110.       ShowHint = True
  111.     end
  112.     object ExportButton: TToolButton
  113.       Left = 175
  114.       Top = 0
  115.       Action = ExportRepository
  116.       Caption = 'Export'
  117.       ParentShowHint = False
  118.       ShowHint = True
  119.     end
  120.     object Separator3: TToolButton
  121.       Left = 200
  122.       Top = 0
  123.       Width = 7
  124.       Caption = 'Separator3'
  125.       ImageIndex = 7
  126.       Style = tbsSeparator
  127.     end
  128.     object HelpButton: TToolButton
  129.       Left = 207
  130.       Top = 0
  131.       Action = HelpRepository
  132.       Caption = 'Help'
  133.       ParentShowHint = False
  134.       ShowHint = True
  135.     end
  136.     object Separator4: TToolButton
  137.       Left = 232
  138.       Top = 0
  139.       Width = 8
  140.       Caption = 'Separator4'
  141.       ImageIndex = 9
  142.       Style = tbsSeparator
  143.     end
  144.     object ExitButton: TToolButton
  145.       Left = 240
  146.       Top = 0
  147.       Action = ExitRepository
  148.       Caption = 'Exit'
  149.       ParentShowHint = False
  150.       ShowHint = True
  151.     end
  152.   end
  153.   object OpenDialog: TOpenDialog
  154.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofEnableSizing]
  155.     Left = 368
  156.     Top = 400
  157.   end
  158.   object SaveAsDialog: TSaveDialog
  159.     Left = 400
  160.     Top = 400
  161.   end
  162.   object ActionList: TActionList
  163.     Images = ImageList
  164.     Left = 304
  165.     Top = 400
  166.     object NewRepository: TAction
  167.       Caption = '&New'
  168.       Hint = 'New'
  169.       ImageIndex = 0
  170.       OnExecute = NewButtonClick
  171.     end
  172.     object OpenRepository: TAction
  173.       Caption = '&Open...'
  174.       Hint = 'Open'
  175.       ImageIndex = 1
  176.       OnExecute = OpenButtonClick
  177.     end
  178.     object SaveRepository: TAction
  179.       Caption = '&Save'
  180.       Hint = 'Save'
  181.       ImageIndex = 2
  182.       OnExecute = SaveButtonClick
  183.     end
  184.     object SaveAsRepository: TAction
  185.       Caption = 'Save &As...'
  186.       Hint = 'Save As'
  187.       ImageIndex = 3
  188.       OnExecute = SaveAsButtonClick
  189.     end
  190.     object FindRepository: TAction
  191.       Caption = '&Find...'
  192.       Hint = 'Find'
  193.       ImageIndex = 4
  194.       ShortCut = 16454
  195.       OnExecute = FindRepositoryExecute
  196.     end
  197.     object FindNextRepository: TAction
  198.       Caption = 'Find &Next'
  199.       Hint = 'Find Next'
  200.       ShortCut = 114
  201.       OnExecute = FindNextRepositoryExecute
  202.     end
  203.     object ImportRepository: TAction
  204.       Caption = '&Import'
  205.       Hint = 'Import from XML file'
  206.       ImageIndex = 6
  207.       OnExecute = ImportRepositoryExecute
  208.     end
  209.     object ExportRepository: TAction
  210.       Caption = '&Export'
  211.       Hint = 'Export to XML file'
  212.       ImageIndex = 7
  213.       OnExecute = ExportRepositoryExecute
  214.     end
  215.     object HelpRepository: TAction
  216.       Caption = '&Help'
  217.       Hint = 'Help'
  218.       ImageIndex = 8
  219.       ShortCut = 112
  220.       OnExecute = HelpRepositoryExecute
  221.     end
  222.     object ExitRepository: TAction
  223.       Caption = 'E&xit'
  224.       Hint = 'Exit'
  225.       ImageIndex = 9
  226.       OnExecute = ExitRepositoryExecute
  227.     end
  228.     object CopyCell: TAction
  229.       Caption = '&Copy'
  230.       Hint = 'Copy'
  231.       ImageIndex = 5
  232.       ShortCut = 16451
  233.       OnExecute = CopyCellExecute
  234.     end
  235.     object ChangeFont: TAction
  236.       Caption = 'F&ont'
  237.       Hint = 'Font'
  238.       OnExecute = ChangeFontExecute
  239.     end
  240.     object HideColumn: TAction
  241.       Caption = '&Hide'
  242.       Hint = 'Hide'
  243.       OnExecute = HideColumnExecute
  244.     end
  245.   end
  246.   object ImageList: TImageList
  247.     Left = 336
  248.     Top = 400
  249.     Bitmap = {
  250.       494C01010A000E00040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  251.       0000000000003600000028000000400000004000000001001000000000000020
  252.       0000000000000000000000000000000000000000000000000000000000000000
  253.       0000000000000000000000000000000000000000000000000000000000000000
  254.       0000000000000000000000000000000000000000000000000000000000000000
  255.       0000000000000000000000000000000000000000000000000000000000000000
  256.       0000000000000000000000000000000000000000000000000000000000000000
  257.       0000000000000000000000000000000000000000000000000000000000000000
  258.       0000000000000000000000000000000000000000000000000000000000000000
  259.       0000000000000000000000000000000000000000000000000000000000000000
  260.       0000000000000000000000000000000000000000000000000000000000000000
  261.       0000000000000000000000000000000000000000000000000000000000000000
  262.       0000000000000000000000000000000000000000000000000000000000000000
  263.       0000000000000000000000000000000000000000000000000000000000000000
  264.       0000000000000000000000000000000000000000000000000000000000000000
  265.       0000000000000000000000000000000000000000000000000000000000000000
  266.       0000000000000000000000000000000000000000000000000000000000000000
  267.       0000000000000000000000000000000000000000000000000000000000000000
  268.       0000000000000000000000000000000000000000000000000000000000000000
  269.       0000000000000000000000000000000000000000000000000000000000000000
  270.       0000000000000000000000000000000000000000000000000000000000000000
  271.       0000000000000000000000000000000000000000000000000000000000000000
  272.       0000000000000000000000000000000000000000000000000000000000000000
  273.       0000000000000000000000000000000000000000000000000000000000000000
  274.       0000000000000000000000000000000000000000000000000000000000000000
  275.       0000000000000000000000000000000000000000000000000000000000000000
  276.       0000000000000000000000000000000000000000000000000000000000000000
  277.       0000000000000000000000000000000000000000000000000000000000000000
  278.       0000000000000000000000000000000000000000000000000000000000000000
  279.       0000000000000000000000000000000000000000000000000000000000000000
  280.       0000000000000000000000000000000000000000000000000000000000000000
  281.       0000000000000000000000000000000000000000000000000000000000000000
  282.       0000000000000000000000000000000000000000000000000000000000000000
  283.       0000000000000000000000000000000000000000000000000000000000000000
  284.       0000000000000000000000000000000000000000000000000000000000000000
  285.       0000000000000000000000000000000000000000000000000000000000000000
  286.       0000000000000000000000000000000000000000000000000000000000000000
  287.       0000000000000000000000000000000000000000000000000000000000000000
  288.       0000000000000000000000000000000000000000000000000000000000000000
  289.       0000000000000000000000000000000000000000000000000000000000000000
  290.       0000000000000000000000000000000000000000000000000000000000000000
  291.       0000000000000000000000000000000000000000000000000000000000000000
  292.       0000000000000000000000000000000000000000000000000000000000000000
  293.       0000000000000000000000000000000000000000000000000000000000000000
  294.       0000000000000000000000000000000000000000000000000000000000000000
  295.       0000000000000000000000000000000000000000000000000000000000000000
  296.       0000000000000000000000000000000000000000000000000000000000000000
  297.       0000000000000000000000000000000000000000000000000000000000000000
  298.       0000000000000000000000000000000000000000000000000000000000000000
  299.       0000000000000000000000000000000000000000000000000000000000000000
  300.       0000000000000000000000000000000000000000000000000000000000000000
  301.       0000000000000000000000000000000000000000000000000000000000000000
  302.       0000000000000000000000000000000000000000000000000000000000000000
  303.       0000000000000000000000000000000000000000000000000000000000000000
  304.       0000000000000000000000000000000000000000000000000000000000000000
  305.       0000000000000000000000000000000000000000000000000000000000000000
  306.       0000000000000000000000000000000000000000000000000000000000000000
  307.       0000000000000000000000000000000000000000000000000000000000000000
  308.       0000000000000000000000000000000000000000000000000000000000000000
  309.       0000000000000000000000000000000000000000000000000000000000000000
  310.       0000000000000000000000000000000000000000000000000000000000000000
  311.       0000000000000000000000000000000000000000000000000000000000000000
  312.       0000000000000000000000000000000000000000000000000000000000000000
  313.       0000000000000000000000000000000000000000000000000000000000000000
  314.       0000000000000000000000000000000000000000000000000000000000000000
  315.       0000000000000000000000000000000000000000000000000000000000000000
  316.       0000000000000000000000000000000000000000000000000000000000000000
  317.       0000000000000000000000000000000000001042104210421042104210421042
  318.       104210421042FF7F186310421863FF7F18630000000000000000000000000000
  319.       0000000000000000000000000000000000000000000000000000000000000000
  320.       0000000000000000000000000000000000000000000000000000000000000000
  321.       0000000000000000000000000000000000001042104210421042104210421042
  322.       1042104210421042FF7F1042FF7F104210420000000000000000000000000000
  323.       0000000000000000000000000000000000000000000000000000000000000000
  324.       0000000000000000000000000000000000000000000000000000000000000000
  325.       1040104010420000000000000000000000001000100010001000000000001042
  326.       10421042FF7FFF7FFF7F10001000100010000000000000000000000000000000
  327.       0000000000000000000000000000000000000000000000000000000000000000
  328.       0000000000000000000000000000000000000000000000000000000010401040
  329.       FF7FFF7F186310420000000000000000000000000000000010001F0010000000
  330.       00001042FF7FFF7FFF7F10000000000000000000000000000000000000000000
  331.       0000000000000000000000000000000000000000000000000000000000000000
  332.       00000000000000000000000000000000000000000000000010401040FF7FFF7F
  333.       000000001863186310420000000000000000000000000000100010001F001000
  334.       0000FF7FFF7FFF7FFF7F10000000000000000000000000000000000000000000
  335.       0000000000000000000000000000000000000000000000000000000000000000
  336.       000000000000000000000000000000000000104210401040FF7FFF7F00000000
  337.       10401040000018631863104200000000000000000000000010001F0010001F00
  338.       0000FF7FFF7FFF7FFF7F10000000000000000000000000000000000000000000
  339.       0000000000000000000000000000000000000000000000000000000000000000
  340.       00000000000000000000000000000000000010421040FF7F0000000010401040
  341.       104010401040000018631863104200000000000000000000100010001F001000
  342.       0000FF7FFF03FF7FFF0310000000000000000000000000000000000000000000
  343.       0000000000000000000000000000000000000000000000000000000000000000
  344.       0000000000000000000000000000000000001042000000001040104010400042
  345.       E07F1040104010400000186318631042000000000000000010001F0010001F00
  346.       0000FF03FF7FFF03FF7F10000000000000000000000000000000000000000000
  347.       0000000000000000000000000000000000000000000000000000000000000000
  348.       0000000000000000000000000000000000001042104010401040104010401040
  349.       004210401040104010400000186300000000000000000000100010001F001000
  350.       0000FF7FFF03FF7FFF0310000000000000000000000000000000000000000000
  351.       0000000000000000000000000000000000000000000000000000000000000000
  352.       00000000000000000000000000000000000000001040FF7F1040104010401040
  353.       1040E07FE07F10401040104000000000000000000000000010001F0010001F00
  354.       0000FF03FF7FFF03FF7F10000000000000000000000000000000000000000000
  355.       0000000000000000000000000000000000000000000000000000000000000000
  356.       000000000000000000000000000000000000000000001040FF7F104010401040
  357.       104010400042E07FE07F10401040000000000000000000001000100010001000
  358.       1000100010001000100010000000000000000000000000000000000000000000
  359.       0000000000000000000000000000000000000000000000000000000000000000
  360.       0000000000000000000000000000000000000000000000001040FF7F10401040
  361.       104000421040E07FE07F10401040104000000000000000000000000000000000
  362.       0000000000000000000000000000000000000000000000000000000000000000
  363.       0000000000000000000000000000000000000000000000000000000000000000
  364.       00000000000000000000000000000000000000000000000000001040FF7F1040
  365.       1040E07FE07FE07F104010401040000000000000000000000000000000000000
  366.       0000000000000000000000000000000000000000000000000000000000000000
  367.       0000000000000000000000000000000000000000000000000000000000000000
  368.       000000000000000000000000000000000000000000000000000000001040FF7F
  369.       1040104010401040104000000000000000000000000000000000000000000002
  370.       0002000200020000000000000000000000000000000000000000000000000000
  371.       0000000000000000000000000000000000000000000000000000000000000000
  372.       0000000000000000000000000000000000000000000000000000000000001040
  373.       FF7F104010400000000000000000000000000000000000000000000000000000
  374.       0000000000000000000000000000000000000000000000000000000000000000
  375.       0000000000000000000000000000000000000000000000000000000000000000
  376.       0000000000000000000000000000000000000000000000000000000000000000
  377.       1040104000000000000000000000000000000000000000000000000000000000
  378.       0000000000000000000000000000000000000000000000000000000000000000
  379.       0000000000000000000000000000000000000000000000000000000000000000
  380.       0000000000000000000000000000000000000000000000000000000000000000
  381.       0000000000000000000000000000000000000000000000000000000000000000
  382.       0000000000000000000000000000000000000000000000000000000000000000
  383.       0000000000000000000000000000000000000000000000000000000000000000
  384.       0000000000000000000000000000000000000000000000000000000000000000
  385.       0000000000000000000000000000000000000000000000000000000000000000
  386.       0000000000000000000000000000000000000000000000000000000000000000
  387.       00000000FF7FFF7FFF7FFF7FFF7FFF7F00000000FF7FFF7FFF7FFF7FFF7FFF7F
  388.       0000000000000000000000000000000000000000000000000000000000000000
  389.       0000000000000000000000000000000000000000000000000000000000000000
  390.       1000100010001000100010001000100010000000000000000000000000000000
  391.       0000000000000000000000000000FF7F00000000FF7F00000000000000000000
  392.       0000000000000000000000000000000000000000FF7F00000000000000000000
  393.       0000000000000000FF7F00000000000000000000000000000000000000000000
  394.       1000FF7FFF7FFF7FFF7FFF7FFF7FFF7F10000000000000000000000000000000
  395.       FF7FFF7FFF7FFF7FFF7FFF7F0000FF7F00000000FF7F0000FF7FFF7FFF7FFF7F
  396.       FF7FFF7F00000000000000000000000000000000FF7F00000000000000000000
  397.       0000000000000000FF7F00000000000000000000000000000000000000000000
  398.       1000FF7F00000000000000000000FF7F10000000000000000000000000000000
  399.       FF7FFF7FFF7FFF7FFF7FFF7F0000FF7F00000000FF7F0000FF7FFF7FFF7FFF7F
  400.       FF7FFF7F00000000000000000000000000000000000000000000000000000000
  401.       0000000000000000000000000000000000000000000000000000000000000000
  402.       1000FF7FFF7FFF7FFF7FFF7FFF7FFF7F10000000000000000000000000000000
  403.       FF7FFF7FFF7FFF7FFF7FFF7F0000FF7F00000000FF7F0000FF7FFF7FFF7FFF7F
  404.       FF7FFF7F000000000000000000000000000000000000FF7F0000000000000000
  405.       00000000FF7F00000000000000000000000000000000FF7FFF7FFF7FFF7FFF7F
  406.       1000FF7F00000000000000000000FF7F10000000000000000000000000000000
  407.       FF7FFF7FFF7FFF7FFF7FFF7F0000FF7F00000000FF7F0000FF7FFF7FFF7FFF7F
  408.       FF7FFF7F000000000000000000000000000000000000FF7F0000000000001863
  409.       00000000FF7F00000000000000000000000000000000FF7F0000000000000000
  410.       1000FF7FFF7FFF7FFF7FFF7FFF7FFF7F10000000000000000000000000000000
  411.       FF7FFF7FFF7FFF7FFF7FFF7F0000FF7F00000000FF7F0000FF7FFF7FFF7FFF7F
  412.       FF7FFF7F000000000000000000000000000000000000FF7F0000000000001863
  413.       00000000FF7F00000000000000000000000000000000FF7FFF7FFF7FFF7FFF7F
  414.       1000FF7F00000000FF7F10001000100010000000000000000000000000000000
  415.       FF7FFF7FFF7FFF7FFF7FFF7F0000FF7F00000000FF7F0000FF7FFF7FFF7FFF7F
  416.       FF7FFF7FFF7F0000000000000000000000000000000000000000000000000000
  417.       00000000000000000000000000000000000000000000FF7F0000000000000000
  418.       1000FF7FFF7FFF7FFF7F1000FF7F100000000000000000000000000000000000
  419.       FF7FFF7FFF7FFF7FFF7FFF7F0000FF7F00000000FF7F0000FF7FFF7FFF7FFF7F
  420.       FF7FFF7F1000100000000000000000000000000000000000FF7F000000000000
  421.       00000000FF7F00000000000000000000000000000000FF7FFF7FFF7FFF7FFF7F
  422.       1000FF7FFF7FFF7FFF7F1000100000000000000000000000000000000000FF7F
  423.       FF7FFF7FFF7FFF7FFF7FFF7F000000000000000000000000FF7FFF7FFF7FFF7F
  424.       FF7FFF7F10001000000000000000000000000000000000000000000000000000
  425.       00000000000000000000000000000000000000000000FF7F00000000FF7F0000
  426.       1000100010001000100010000000000000000000000000001000100010001000
  427.       FF7FFF7FFF7FFF7FFF7FFF7F000000000000000000000000FF7FFF7FFF7FFF7F
  428.       FF7FFF7F10001000100000000000000000000000000000000000000000000000
  429.       00000000000000000000000000000000000000000000FF7FFF7FFF7FFF7F0000
  430.       FF7F000000000000000000000000000000000000000000000000100010001000
  431.       FF7F000000000000000000000000000000000000000000000000000000000000
  432.       00000000FF7F1000100010000000000010000000000000000000FF7F00000000
  433.       000000000000FF7F0000000000000000000000000000FF7FFF7FFF7FFF7F0000
  434.       0000000000000000000000000000000000000000000000001000100010001000
  435.       0000000000000000000000000000000000000000000000000000000000000000
  436.       0000000000000000100010001000100010000000000000000000000000000000
  437.       0000000000000000000000000000000000000000000000000000000000000000
  438.       0000000000000000000000000000000000000000000010001000100000001000
  439.       0000000000000000000000000000000000000000000000000000000000000000
  440.       0000000000000000000000001000100010000000000000000000000000000000
  441.       0000000000000000000000000000000000000000000000000000000000000000
  442.       0000000000000000000000000000000000001000100010001000000000000000
  443.       0000000000000000000000000000000000000000000000000000000000000000
  444.       0000000000000000000010001000100010000000000000000000000000000000
  445.       0000000000000000000000000000000000000000000000000000000000000000
  446.       0000000000000000000000000000000000000000000000000000000000000000
  447.       0000000000000000000000000000000000000000000000000000000000000000
  448.       0000000000001042000010421042000000000000000000000000000000000000
  449.       0000000000000000000000000000000000000000000000000000000000000000
  450.       0000000000000000000000000000000000000000000000000000000000000000
  451.       0000000000000000000000000000000000000000000000000000000000000000
  452.       0000000000001863000018631863000000000000000000000000000000000000
  453.       0000000000000000000000000000000000000000000000000000000000000000
  454.       0000000000000000000000000000000000000000000000420042000000000000
  455.       0000000000001863186300000042000000000000000000000000000000000000
  456.       000000000000186318631863186300000000000000000000FF7FFF7FFF7FFF7F
  457.       FF7FFF7FFF7FFF7FFF7F00000000000000000000000000420042004200420042
  458.       0042004200420042000000000000000000000000000000420042000000000000
  459.       0000000000001863186300000042000000000000000000000000000000000000
  460.       000000000000000000000000000000000000000000000000FF7FFF7FFF7FFF7F
  461.       FF7FFF7FFF7FFF7FFF7F00000000000000000000E07F00000042004200420042
  462.       0042004200420042004200000000000000000000000000420042000000000000
  463.       0000000000001863186300000042000000000000000000000000000000000000
  464.       000000000000000000000000000000000000000000000000FF7FFF7FFF7FFF7F
  465.       FF7FFF7FFF7FFF7FFF7F00000000000000000000FF7FE07F0000004200420042
  466.       0042004200420042004200420000000000000000000000420042000000000000
  467.       0000000000000000000000000042000000000000FF7FFF7FFF7FFF7FFF7FFF7F
  468.       FF7F0000FF7FFF7FFF7FFF7FFF7FFF7F0000000000000000FF7FFF7FFF7FFF7F
  469.       FF7FFF7FFF7FFF7FFF7F00000000000000000000E07FFF7FE07F000000420042
  470.       0042004200420042004200420042000000000000000000420042004200420042
  471.       0042004200420042004200420042000000000000FF7FFF7FFF7FFF7FFF7FFF7F
  472.       FF7F0000FF7FFF7FFF7FFF7FFF7FFF7F0000000000000000FF7FFF7FFF7FFF7F
  473.       FF7FFF7FFF7FFF7FFF7F00000000000000000000FF7FE07FFF7FE07F00000000
  474.       0000000000000000000000000000000000000000000000420042000000000000
  475.       0000000000000000000000420042000000000000FF7F00000000FF7F00000000
  476.       186300001F001F001F00007C1F001F000000000000000000FF7FFF7FFF7FFF7F
  477.       FF7FFF7FFF7FFF7FFF7F00000000000000000000E07FFF7FE07FFF7FE07FFF7F
  478.       E07FFF7FE07F0000000000000000000000000000000000420000186318631863
  479.       1863186318631863186300000042000000000000FF7FFF7FFF7FFF7FFF7FFF7F
  480.       FF7FFF7F00000000007C007C007C00000000000000000000FF7FFF7FFF7FFF7F
  481.       FF7FFF7FFF7FFF7FFF7F00000000000000000000FF7FE07FFF7FE07FFF7FE07F
  482.       FF7FE07FFF7F0000000000000000000000000000000000420000186318631863
  483.       1863186318631863186300000042000000000000FF7F0000000000000000FF7F
  484.       0000FF7F0000007C007C007C007C007C0000000000000000FF7FFF7FFF7FFF7F
  485.       FF7FFF7FFF7FFF7FFF7F00000000000000000000E07FFF7FE07F000000000000
  486.       0000000000000000000000000000000000000000000000420000186318631863
  487.       1863186318631863186300000042000000000000FF7FFF7FFF7FFF7FFF7FFF7F
  488.       FF7FFF7F007C007C007C007C007C007C007C000000000000FF7FFF7FFF7FFF7F
  489.       FF7FFF7F00000000000000000000000000000000000000000000000000000000
  490.       0000000000000000000000000000000000000000000000420000186318631863
  491.       1863186318631863186300000042000000000000FF7F00000000FF7F00000000
  492.       0000000000000000007C007C007C00000000000000000000FF7FFF7FFF7FFF7F
  493.       FF7FFF7F0000FF7F000000000000000000000000000000000000000000000000
  494.       0000000000000000000000000000000000000000000000420000186318631863
  495.       1863186318631863186300000000000000000000FF7FFF7FFF7FFF7F0000FF7F
  496.       FF7F000000000000007C007C007C00000000000000000000FF7FFF7FFF7FFF7F
  497.       FF7FFF7F00000000000000000000000000000000000000000000000000000000
  498.       0000000000000000000000000000000000000000000000420000186318631863
  499.       1863186318631863186300001863000000000000FF7F00001863FF7F0000FF7F
  500.       0000000000001042007C007C007C000000000000000000000000000000000000
  501.       0000000000000000000000000000000000000000000000000000000000000000
  502.       0000000000000000000000000000000000000000000000000000000000000000
  503.       0000000000000000000000000000000000000000FF7FFF7FFF7FFF7F00000000
  504.       0000007C007C007C007C007C0000000000000000000000000000000000000000
  505.       0000000000000000000000000000000000000000000000000000000000000000
  506.       0000000000000000000000000000000000000000000000000000000000000000
  507.       0000000000000000000000000000000000000000000000000000000000000000
  508.       000000000000000000000000000000000000424D3E000000000000003E000000
  509.       2800000040000000400000000100010000000000000200000000000000000000
  510.       000000000000000000000000FFFFFF0000000000000000000000000000000000
  511.       0000000000000000000000000000000000000000000000000000000000000000
  512.       0000000000000000000000000000000000000000000000000000000000000000
  513.       0000000000000000000000000000000000000000000000000000000000000000
  514.       00000000000000000000000000000000FFFF000000000000FE3F000000000000
  515.       F81F000000000000E00FE007000000008007E007000000000003E00700000000
  516.       0001E007000000000000E007000000000001E007000000008001E00700000000
  517.       C001E00700000000E000FFFF00000000F000F81F00000000F803F81F00000000
  518.       FC0FF81F00000000FE3FFFFF00000000FFFFFFFFFF0000FFFFFFFFFFFF0000FF
  519.       07C1FE00FC00003F07C1FE00FC00003F07C1FE00FC00003F01018000FC00003F
  520.       00018000FC00003F00018000FC00003F00018000FC00003F80038001FC00001F
  521.       C1078003FC00001FC1078007E003C00FE38F807FF003C006E38F80FFE1FFFFE0
  522.       E38F81FFC5FFFFF8FFFFFFFF0FFFFFF0FFFFFFFFFFFFFF00FFFFFFFFC001FF00
  523.       C007001F8001FF00C007000F8001FF00C007000780010000C007000380010000
  524.       C007000180010000C007000080010000C007001F80010023C007001F80010001
  525.       C007001F80010000C0078FF180010023C00FFFF980010063C01FFF75800100C3
  526.       C03FFF8F80010107FFFFFFFFFFFF03FF00000000000000000000000000000000
  527.       000000000000}
  528.   end
  529.   object PopupMenu: TPopupMenu
  530.     Left = 272
  531.     Top = 400
  532.     object CopyMenu: TMenuItem
  533.       Action = CopyCell
  534.     end
  535.     object FontMenu: TMenuItem
  536.       Action = ChangeFont
  537.     end
  538.     object FindMenu: TMenuItem
  539.       Action = FindRepository
  540.     end
  541.     object FindNextMenu: TMenuItem
  542.       Action = FindNextRepository
  543.     end
  544.     object HideMenu: TMenuItem
  545.       Action = HideColumn
  546.     end
  547.   end
  548.   object FontDialog: TFontDialog
  549.     OnShow = FontDialogShow
  550.     Font.Charset = DEFAULT_CHARSET
  551.     Font.Color = clWindowText
  552.     Font.Height = -11
  553.     Font.Name = 'Default'
  554.     Font.Style = []
  555.     MinFontSize = 0
  556.     MaxFontSize = 0
  557.     Left = 432
  558.     Top = 400
  559.   end
  560.   object ClosedFilesPopup: TPopupMenu
  561.     OnPopup = ClosedFilesPopupPopup
  562.     Left = 240
  563.     Top = 400
  564.   end
  565.   object TextLabelsPopup: TPopupMenu
  566.     Left = 208
  567.     Top = 400
  568.     object TextLabelsItem: TMenuItem
  569.       Caption = 'Text &Labels'
  570.       OnClick = TextLabelsItemClick
  571.     end
  572.   end
  573. end
  574.