home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Shareware / Comunicatii / thebat / the_bat2.04.07.exe / thebat.exe / 0 / RCDATA / TVIEWMODESETUP / TVIEWMODESETUP.txt
Encoding:
Text File  |  2004-02-23  |  7.2 KB  |  305 lines

  1. object ViewModeSetup: TViewModeSetup
  2.   Left = 339
  3.   Top = 158
  4.   BorderStyle = bsDialog
  5.   BorderWidth = 3
  6.   Caption = 'View Mode Setup'
  7.   ClientHeight = 445
  8.   ClientWidth = 417
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   Position = poScreenCenter
  17.   OnClose = FormClose
  18.   OnCreate = FormCreate
  19.   OnDestroy = FormDestroy
  20.   PixelsPerInch = 96
  21.   TextHeight = 13
  22.   object pBottom: TPanel
  23.     Left = 0
  24.     Top = 408
  25.     Width = 417
  26.     Height = 39
  27.     Align = alTop
  28.     BevelOuter = bvNone
  29.     TabOrder = 1
  30.     object btnOK: TButton
  31.       Left = 136
  32.       Top = 8
  33.       Width = 89
  34.       Height = 25
  35.       Caption = '&OK'
  36.       Default = True
  37.       ModalResult = 1
  38.       TabOrder = 0
  39.       OnClick = btnOKClick
  40.     end
  41.     object btnCancel: TButton
  42.       Left = 232
  43.       Top = 8
  44.       Width = 89
  45.       Height = 25
  46.       Cancel = True
  47.       Caption = 'Cancel'
  48.       ModalResult = 2
  49.       TabOrder = 1
  50.     end
  51.     object btnHelp: TButton
  52.       Left = 328
  53.       Top = 8
  54.       Width = 89
  55.       Height = 25
  56.       Caption = '&Help'
  57.       Enabled = False
  58.       TabOrder = 2
  59.     end
  60.   end
  61.   object pTop: TPanel
  62.     Left = 0
  63.     Top = 0
  64.     Width = 417
  65.     Height = 408
  66.     Align = alTop
  67.     BevelOuter = bvNone
  68.     TabOrder = 0
  69.     object pcVM: TPageControl
  70.       Left = 0
  71.       Top = 0
  72.       Width = 417
  73.       Height = 404
  74.       ActivePage = tsGeneral
  75.       TabOrder = 0
  76.       object tsGeneral: TTabSheet
  77.         Caption = 'General'
  78.         object pMain: TPanel
  79.           Left = 0
  80.           Top = 45
  81.           Width = 409
  82.           Height = 331
  83.           Align = alTop
  84.           BevelOuter = bvNone
  85.           TabOrder = 1
  86.           object Label4: TLabel
  87.             Left = 224
  88.             Top = 222
  89.             Width = 36
  90.             Height = 13
  91.             Caption = 'S&ort by:'
  92.             FocusControl = cobSortBy
  93.           end
  94.           object Label3: TLabel
  95.             Left = 224
  96.             Top = 116
  97.             Width = 66
  98.             Height = 13
  99.             Caption = '&Column width:'
  100.             FocusControl = eWidth
  101.           end
  102.           object Label2: TLabel
  103.             Left = 8
  104.             Top = 96
  105.             Width = 43
  106.             Height = 13
  107.             Caption = 'Co&lumns:'
  108.             FocusControl = clbColumns
  109.           end
  110.           object Label1: TLabel
  111.             Left = 8
  112.             Top = 52
  113.             Width = 51
  114.             Height = 13
  115.             Caption = '&Thread by:'
  116.             FocusControl = cobThreadBy
  117.           end
  118.           object eWidth: TXSpinEdit
  119.             Left = 312
  120.             Top = 112
  121.             Width = 89
  122.             Height = 21
  123.             TabOrder = 4
  124.             Text = '0'
  125.             OnChange = eWidthChange
  126.             MinValue = 0
  127.             MaxValue = 10000
  128.             Value = 0
  129.             Step = 1
  130.           end
  131.           object cobSortBy: TComboBox
  132.             Left = 224
  133.             Top = 242
  134.             Width = 177
  135.             Height = 21
  136.             Style = csDropDownList
  137.             DropDownCount = 20
  138.             ItemHeight = 13
  139.             TabOrder = 7
  140.           end
  141.           object cobThreadBy: TComboBox
  142.             Left = 8
  143.             Top = 67
  144.             Width = 393
  145.             Height = 21
  146.             Style = csDropDownList
  147.             ItemHeight = 13
  148.             TabOrder = 2
  149.             OnChange = cobThreadByChange
  150.             Items.Strings = (
  151.               'None'
  152.               'References'
  153.               'Subject'
  154.               'Sender'
  155.               'Recipient')
  156.           end
  157.           object clbColumns: TCheckListBox
  158.             Left = 8
  159.             Top = 116
  160.             Width = 205
  161.             Height = 212
  162.             OnClickCheck = clbColumnsClickCheck
  163.             DragMode = dmAutomatic
  164.             ItemHeight = 13
  165.             TabOrder = 3
  166.             OnClick = clbColumnsSelChanged
  167.             OnDragDrop = clbColumnsDragDrop
  168.             OnDragOver = clbColumnsDragOver
  169.           end
  170.           object btnUp: TButton
  171.             Tag = -1
  172.             Left = 220
  173.             Top = 148
  174.             Width = 81
  175.             Height = 25
  176.             Caption = 'Move &up'
  177.             Enabled = False
  178.             TabOrder = 5
  179.             OnClick = btnUpClick
  180.           end
  181.           object btnDown: TButton
  182.             Tag = 1
  183.             Left = 312
  184.             Top = 148
  185.             Width = 89
  186.             Height = 25
  187.             Caption = 'Move &down'
  188.             Enabled = False
  189.             TabOrder = 6
  190.             OnClick = btnDownClick
  191.           end
  192.           object cbExpandAllThreads: TCheckBox
  193.             Left = 8
  194.             Top = 3
  195.             Width = 389
  196.             Height = 17
  197.             Caption = '&Expand all threads'
  198.             TabOrder = 0
  199.           end
  200.           object cbAutoSize: TCheckBox
  201.             Left = 8
  202.             Top = 27
  203.             Width = 385
  204.             Height = 17
  205.             Caption = '&AutoSize'
  206.             TabOrder = 1
  207.           end
  208.           object cbReverseOrder: TCheckBox
  209.             Left = 224
  210.             Top = 275
  211.             Width = 177
  212.             Height = 17
  213.             Caption = 'De&scending order'
  214.             TabOrder = 8
  215.           end
  216.           object cbNewThreadSorting: TCheckBox
  217.             Left = 224
  218.             Top = 296
  219.             Width = 173
  220.             Height = 17
  221.             Caption = 'Ne&w thread sorting'
  222.             TabOrder = 9
  223.           end
  224.         end
  225.         object pVMSpecific: TPanel
  226.           Left = 0
  227.           Top = 0
  228.           Width = 409
  229.           Height = 45
  230.           Align = alTop
  231.           BevelOuter = bvNone
  232.           TabOrder = 0
  233.           object Label5: TLabel
  234.             Left = 7
  235.             Top = 3
  236.             Width = 31
  237.             Height = 13
  238.             Caption = '&Name:'
  239.             FocusControl = edName
  240.           end
  241.           object edName: TEdit
  242.             Left = 7
  243.             Top = 19
  244.             Width = 390
  245.             Height = 21
  246.             AutoSize = False
  247.             TabOrder = 0
  248.             OnChange = edNameChange
  249.           end
  250.         end
  251.       end
  252.       object tsFilters: TTabSheet
  253.         Caption = 'Filter'
  254.         ImageIndex = 1
  255.         inline cfFilter: TConditionFrame
  256.           Left = 0
  257.           Top = 25
  258.           Width = 409
  259.           Height = 351
  260.           Align = alClient
  261.           TabOrder = 0
  262.           inherited sbIF: TScrollBox
  263.             Width = 409
  264.             Height = 328
  265.           end
  266.           inherited pnButtons: TPanel
  267.             Top = 328
  268.             Width = 409
  269.             inherited bAdd: TSpeedButton
  270.               Left = 12
  271.               Width = 75
  272.             end
  273.             inherited bBlock: TSpeedButton
  274.               Left = 80
  275.               Width = 75
  276.             end
  277.             inherited bDelete: TSpeedButton
  278.               Left = 156
  279.               Width = 75
  280.             end
  281.           end
  282.         end
  283.         object Panel1: TPanel
  284.           Left = 0
  285.           Top = 0
  286.           Width = 409
  287.           Height = 25
  288.           Align = alTop
  289.           BevelOuter = bvNone
  290.           TabOrder = 1
  291.           object cbUseFilter: TCheckBox
  292.             Left = 4
  293.             Top = 4
  294.             Width = 437
  295.             Height = 17
  296.             Caption = 'Use filter'
  297.             TabOrder = 0
  298.             OnClick = cbUseFilterClick
  299.           end
  300.         end
  301.       end
  302.     end
  303.   end
  304. end
  305.