home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Komunik / News / Xnews / Xnews.exe / 0 / RCDATA / TFOLDERSWINDOW / TFOLDERSWINDOW.txt < prev   
Text File  |  1999-11-08  |  3KB  |  134 lines

  1. object FoldersWindow: TFoldersWindow
  2.   Left = 133
  3.   Top = 84
  4.   Width = 696
  5.   Height = 480
  6.   Caption = 'Folders'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -13
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   FormStyle = fsMDIChild
  14.   Icon.Data = {<image000.ico>}
  15.   KeyPreview = True
  16.   Menu = MainMenu
  17.   OldCreateOrder = False
  18.   Position = poDefault
  19.   Visible = True
  20.   OnActivate = FormActivate
  21.   OnClose = FormClose
  22.   OnCloseQuery = FormCloseQuery
  23.   OnCreate = FormCreate
  24.   OnDeactivate = FormDeactivate
  25.   OnKeyPress = FormKeyPress
  26.   OnShow = FormShow
  27.   PixelsPerInch = 120
  28.   TextHeight = 16
  29.   object LV: TMyListView
  30.     Left = 0
  31.     Top = 0
  32.     Width = 688
  33.     Height = 426
  34.     Align = alClient
  35.     Columns = <
  36.       item
  37.         Caption = 'Name'
  38.         Width = 300
  39.       end
  40.       item
  41.         Caption = 'File'
  42.         Width = 200
  43.       end>
  44.     DragMode = dmAutomatic
  45.     Font.Charset = DEFAULT_CHARSET
  46.     Font.Color = clWindowText
  47.     Font.Height = -17
  48.     Font.Name = 'MS Sans Serif'
  49.     Font.Style = []
  50.     GridLines = True
  51.     HideSelection = False
  52.     HotTrackStyles = []
  53.     OwnerData = True
  54.     OwnerDraw = True
  55.     ReadOnly = True
  56.     RowSelect = True
  57.     ParentFont = False
  58.     SmallImages = XnewsFrame.TaskBarImages
  59.     TabOrder = 0
  60.     ViewStyle = vsReport
  61.     OnColumnClick = LVColumnClick
  62.     OnData = LVData
  63.     OnDataFind = LVDataFind
  64.     OnDblClick = LVDblClick
  65.     OnDrawItem = LVDrawItem
  66.     OnEnter = LVEnter
  67.     OnKeyPress = LVKeyPress
  68.     OnKeyUp = LVKeyUp
  69.     OnMouseUp = LVMouseUp
  70.     SaveSettings.RegistryKey = 'Software\Xnews\Folders\Columns'
  71.   end
  72.   object MainMenu: TMainMenu
  73.     Left = 96
  74.     Top = 184
  75.     object mnFolder: TMenuItem
  76.       Caption = '&Folder'
  77.       GroupIndex = 1
  78.       object AddFolder1: TMenuItem
  79.         Action = acfAdd
  80.         Caption = 'Add'
  81.       end
  82.       object DeleteFolder1: TMenuItem
  83.         Action = acfDel
  84.         Caption = 'Delete'
  85.       end
  86.       object N1: TMenuItem
  87.         Caption = '-'
  88.       end
  89.       object RenameFolder1: TMenuItem
  90.         Action = acfRename
  91.         Caption = 'Rename'
  92.       end
  93.       object ChangeFile1: TMenuItem
  94.         Action = acfChangeFile
  95.       end
  96.     end
  97.   end
  98.   object FActions: TActionList
  99.     Left = 200
  100.     Top = 192
  101.     object acfAdd: TAction
  102.       Category = 'Folders'
  103.       Caption = 'Add Folder'
  104.       ShortCut = 45
  105.       OnExecute = acfAddExecute
  106.     end
  107.     object acfDel: TAction
  108.       Category = 'Folders'
  109.       Caption = 'Delete Folder'
  110.       ShortCut = 46
  111.       OnExecute = acfDelExecute
  112.     end
  113.     object acfRename: TAction
  114.       Category = 'Folders'
  115.       Caption = 'Rename Folder'
  116.       ShortCut = 113
  117.       OnExecute = acfRenameExecute
  118.     end
  119.     object acfChangeFile: TAction
  120.       Category = 'Folders'
  121.       Caption = 'Change File'
  122.       ShortCut = 115
  123.       OnExecute = acfChangeFileExecute
  124.     end
  125.   end
  126.   object OpenDialog: TOpenDialog
  127.     Filter = 'Mbx files|*.mbx|All files|*.*'
  128.     FilterIndex = 0
  129.     Options = [ofHideReadOnly, ofFileMustExist, ofEnableSizing]
  130.     Left = 176
  131.     Top = 312
  132.   end
  133. end
  134.