home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / APP.DFM / APP.txt
Text File  |  1997-01-16  |  10KB  |  433 lines

  1. object AppExpert: TAppExpert
  2.   Left = 218
  3.   Top = 131
  4.   BorderStyle = bsDialog
  5.   Caption = 'Application Expert'
  6.   ClientHeight = 281
  7.   ClientWidth = 528
  8.   Font.Color = clBlack
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   OnCreate = FormCreate
  14.   OnDestroy = FormDestroy
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Sample: TPaintBox
  18.     Left = 4
  19.     Top = 5
  20.     Width = 107
  21.     Height = 72
  22.     OnPaint = SamplePaint
  23.   end
  24.   object CancelBtn: TButton
  25.     Left = 444
  26.     Top = 256
  27.     Width = 77
  28.     Height = 21
  29.     Cancel = True
  30.     Caption = 'Cancel'
  31.     ModalResult = 2
  32.     TabOrder = 0
  33.   end
  34.   object PrevButton: TButton
  35.     Left = 275
  36.     Top = 256
  37.     Width = 77
  38.     Height = 21
  39.     Caption = '< &Back'
  40.     Enabled = False
  41.     TabOrder = 1
  42.     OnClick = NextPrevClick
  43.   end
  44.   object NextButton: TButton
  45.     Left = 352
  46.     Top = 256
  47.     Width = 77
  48.     Height = 21
  49.     Caption = '&Next >'
  50.     TabOrder = 2
  51.     OnClick = NextPrevClick
  52.   end
  53.   object PageControl: TPageControl
  54.     Left = 112
  55.     Top = 4
  56.     Width = 409
  57.     Height = 245
  58.     ActivePage = Extensions
  59.     TabOrder = 3
  60.     TabStop = False
  61.     object Menus: TTabSheet
  62.       Caption = 'Menus'
  63.       TabVisible = False
  64.       object Label1: TLabel
  65.         Left = 8
  66.         Top = 7
  67.         Width = 385
  68.         Height = 45
  69.         AutoSize = False
  70.         Caption = 
  71.           'Your application can contain a menu bar by checking one or more ' +
  72.           'of the following standard Windows menus:'
  73.         WordWrap = True
  74.       end
  75.       object Label2: TLabel
  76.         Left = 32
  77.         Top = 59
  78.         Width = 336
  79.         Height = 13
  80.         AutoSize = False
  81.         Caption = 'The file menu contains items such as Open, Save and Exit.'
  82.       end
  83.       object Label3: TLabel
  84.         Left = 32
  85.         Top = 103
  86.         Width = 326
  87.         Height = 13
  88.         AutoSize = False
  89.         Caption = 'The Edit menu contains Undo, Cut, Copy and Paste items'
  90.       end
  91.       object Label4: TLabel
  92.         Left = 32
  93.         Top = 147
  94.         Width = 335
  95.         Height = 29
  96.         AutoSize = False
  97.         Caption = 
  98.           'The Window menu contains window management functions specficiall' +
  99.           'y designed for MDI applications.'
  100.         WordWrap = True
  101.       end
  102.       object Label5: TLabel
  103.         Left = 32
  104.         Top = 201
  105.         Width = 354
  106.         Height = 33
  107.         AutoSize = False
  108.         Caption = 
  109.           'The Help menu provides access to your application'#39's help file, a' +
  110.           's well as an item to show the About box.'
  111.         WordWrap = True
  112.       end
  113.       object cbFileMenu: TCheckBox
  114.         Left = 12
  115.         Top = 39
  116.         Width = 133
  117.         Height = 17
  118.         Caption = '&File menu'
  119.         TabOrder = 0
  120.         OnClick = MenuClicked
  121.       end
  122.       object cbEditMenu: TCheckBox
  123.         Left = 12
  124.         Top = 83
  125.         Width = 133
  126.         Height = 17
  127.         Caption = '&Edit menu'
  128.         TabOrder = 1
  129.         OnClick = MenuClicked
  130.       end
  131.       object cbWindowMenu: TCheckBox
  132.         Left = 12
  133.         Top = 127
  134.         Width = 129
  135.         Height = 17
  136.         Caption = '&Window menu'
  137.         TabOrder = 2
  138.         OnClick = MenuClicked
  139.       end
  140.       object cbHelpMenu: TCheckBox
  141.         Left = 12
  142.         Top = 187
  143.         Width = 97
  144.         Height = 17
  145.         Caption = '&Help menu'
  146.         TabOrder = 3
  147.         OnClick = MenuClicked
  148.       end
  149.     end
  150.     object Extensions: TTabSheet
  151.       Caption = 'Extensions'
  152.       TabVisible = False
  153.       object Label6: TLabel
  154.         Left = 8
  155.         Top = 5
  156.         Width = 385
  157.         Height = 45
  158.         AutoSize = False
  159.         Caption = 
  160.           'The table below allows you to define the file extensions to be u' +
  161.           'sed by the File Open and File Save dialog boxes.  Press Add to c' +
  162.           'reate a new entry in the table.'
  163.         FocusControl = ExtListBox
  164.         WordWrap = True
  165.       end
  166.       object Panel1: TPanel
  167.         Left = 8
  168.         Top = 52
  169.         Width = 313
  170.         Height = 180
  171.         BevelOuter = bvLowered
  172.         Caption = 'Panel1'
  173.         TabOrder = 0
  174.         object ExtHeader: THeader
  175.           Left = 1
  176.           Top = 1
  177.           Width = 311
  178.           Height = 21
  179.           BorderStyle = bsNone
  180.           Font.Color = clBlack
  181.           Font.Height = -11
  182.           Font.Name = 'MS Sans Serif'
  183.           Font.Style = []
  184.           ParentFont = False
  185.           Sections.Sections = (
  186.             #0'150'#0'Description'
  187.             #0'64'#0'Extension')
  188.           TabOrder = 0
  189.           OnSized = HeaderSized
  190.         end
  191.         object ExtListBox: TListBox
  192.           Left = -2
  193.           Top = 18
  194.           Width = 309
  195.           Height = 156
  196.           BorderStyle = bsNone
  197.           Ctl3D = False
  198.           ItemHeight = 16
  199.           ParentCtl3D = False
  200.           Style = lbOwnerDrawFixed
  201.           TabOrder = 1
  202.           OnDrawItem = DrawExtension
  203.         end
  204.       end
  205.       object AddButton: TButton
  206.         Left = 332
  207.         Top = 65
  208.         Width = 65
  209.         Height = 25
  210.         Caption = '&Add'
  211.         TabOrder = 1
  212.         OnClick = AddClick
  213.       end
  214.       object EditButton: TButton
  215.         Left = 332
  216.         Top = 97
  217.         Width = 65
  218.         Height = 25
  219.         Caption = '&Edit'
  220.         TabOrder = 2
  221.         OnClick = EditClick
  222.       end
  223.       object DeleteButton: TButton
  224.         Left = 332
  225.         Top = 129
  226.         Width = 65
  227.         Height = 25
  228.         Caption = '&Delete'
  229.         TabOrder = 3
  230.         OnClick = DeleteClick
  231.       end
  232.       object UpButton: TButton
  233.         Left = 332
  234.         Top = 177
  235.         Width = 65
  236.         Height = 25
  237.         Caption = '&Up'
  238.         TabOrder = 4
  239.         OnClick = MoveClick
  240.       end
  241.       object DownButton: TButton
  242.         Left = 332
  243.         Top = 207
  244.         Width = 65
  245.         Height = 25
  246.         Caption = 'D&own'
  247.         TabOrder = 5
  248.         OnClick = MoveClick
  249.       end
  250.     end
  251.     object Speedbtns: TTabSheet
  252.       Caption = 'Speedbtns'
  253.       TabVisible = False
  254.       object Label7: TLabel
  255.         Left = 6
  256.         Top = 6
  257.         Width = 385
  258.         Height = 45
  259.         AutoSize = False
  260.         Caption = 
  261.           'You can create a speedbar for your application by selecting spee' +
  262.           'd buttons from the Available commands list, and pressing Insert ' +
  263.           'to add them to the speedbar.  Press Space to add spacers.'
  264.         WordWrap = True
  265.       end
  266.       object Speedbar: TPaintBox
  267.         Left = 9
  268.         Top = 51
  269.         Width = 387
  270.         Height = 43
  271.         OnMouseDown = SpeedMouseDown
  272.         OnPaint = SpeedbarPaint
  273.       end
  274.       object Label8: TLabel
  275.         Left = 10
  276.         Top = 102
  277.         Width = 42
  278.         Height = 13
  279.         AutoSize = False
  280.         Caption = '&Menus:'
  281.         FocusControl = MenuList
  282.       end
  283.       object Label9: TLabel
  284.         Left = 138
  285.         Top = 102
  286.         Width = 120
  287.         Height = 13
  288.         AutoSize = False
  289.         Caption = 'Available &commands:'
  290.         FocusControl = MenuItemList
  291.       end
  292.       object MenuList: TListBox
  293.         Left = 6
  294.         Top = 114
  295.         Width = 121
  296.         Height = 113
  297.         ItemHeight = 13
  298.         Items.Strings = (
  299.           'File'
  300.           'Edit'
  301.           'Window'
  302.           'Help')
  303.         TabOrder = 0
  304.         OnClick = MenuListClick
  305.       end
  306.       object MenuItemList: TListBox
  307.         Left = 138
  308.         Top = 118
  309.         Width = 185
  310.         Height = 113
  311.         ItemHeight = 26
  312.         Style = lbOwnerDrawFixed
  313.         TabOrder = 1
  314.         OnDrawItem = DrawMenuItem
  315.       end
  316.       object Button1: TButton
  317.         Left = 330
  318.         Top = 118
  319.         Width = 65
  320.         Height = 25
  321.         Caption = 'Insert'
  322.         TabOrder = 2
  323.         OnClick = InsertClick
  324.       end
  325.       object Button2: TButton
  326.         Left = 330
  327.         Top = 146
  328.         Width = 65
  329.         Height = 25
  330.         Caption = 'Remove'
  331.         TabOrder = 3
  332.         OnClick = RemoveClick
  333.       end
  334.       object Button3: TButton
  335.         Left = 330
  336.         Top = 174
  337.         Width = 65
  338.         Height = 25
  339.         Caption = 'Space'
  340.         TabOrder = 4
  341.         OnClick = SpaceClick
  342.       end
  343.     end
  344.     object AppInfo: TTabSheet
  345.       Caption = 'AppInfo'
  346.       TabVisible = False
  347.       object Label13: TLabel
  348.         Left = 19
  349.         Top = 80
  350.         Width = 274
  351.         Height = 13
  352.         AutoSize = False
  353.         Caption = 'Enter the &path in which to store this application:'
  354.         FocusControl = AppPath
  355.       end
  356.       object Label10: TLabel
  357.         Left = 19
  358.         Top = 28
  359.         Width = 251
  360.         Height = 13
  361.         AutoSize = False
  362.         Caption = 'Enter the &name to assign to this application:'
  363.         FocusControl = AppName
  364.       end
  365.       object Label15: TLabel
  366.         Left = 7
  367.         Top = 8
  368.         Width = 345
  369.         Height = 13
  370.         AutoSize = False
  371.         Caption = 'The Application Expert is ready to generate your application!'
  372.       end
  373.       object GroupBox1: TGroupBox
  374.         Left = 19
  375.         Top = 124
  376.         Width = 365
  377.         Height = 93
  378.         Caption = 'Options'
  379.         TabOrder = 0
  380.         object cbMDIApp: TCheckBox
  381.           Left = 12
  382.           Top = 20
  383.           Width = 257
  384.           Height = 17
  385.           Caption = 'Create &MDI application'
  386.           TabOrder = 0
  387.         end
  388.         object cbStatusLine: TCheckBox
  389.           Left = 12
  390.           Top = 44
  391.           Width = 237
  392.           Height = 17
  393.           Caption = 'Create a &status line'
  394.           TabOrder = 1
  395.         end
  396.         object cbHints: TCheckBox
  397.           Left = 12
  398.           Top = 68
  399.           Width = 253
  400.           Height = 17
  401.           Caption = 'Enable &hints'
  402.           TabOrder = 2
  403.         end
  404.       end
  405.       object AppPath: TEdit
  406.         Left = 19
  407.         Top = 96
  408.         Width = 273
  409.         Height = 21
  410.         TabOrder = 1
  411.         Text = 'AppPath'
  412.       end
  413.       object PathBrowse: TButton
  414.         Left = 303
  415.         Top = 94
  416.         Width = 81
  417.         Height = 25
  418.         Caption = 'Browse...'
  419.         TabOrder = 2
  420.         OnClick = BrowseClick
  421.       end
  422.       object AppName: TEdit
  423.         Left = 19
  424.         Top = 44
  425.         Width = 249
  426.         Height = 21
  427.         TabOrder = 3
  428.         Text = 'AppName'
  429.       end
  430.     end
  431.   end
  432. end
  433.