object MainForm: TMainForm
  Left = 402
  Top = 146
  Caption = 'DEMO 6 - MathParser'
  ClientHeight = 397
  ClientWidth = 543
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -15
  Font.Name = 'Arial'
  Font.Style = []
  OldCreateOrder = True
  OnCreate = FormCreate
  DesignSize = (
    543
    397)
  PixelsPerInch = 120
  TextHeight = 17
  object Label2: TLabel
    Left = 8
    Top = 6
    Width = 271
    Height = 17
    Caption = 'Expression (including variables "x" and "y"'
  end
  object Label3: TLabel
    Left = 8
    Top = 310
    Width = 7
    Height = 17
    Anchors = [akLeft, akBottom]
    Caption = 'x'
  end
  object Label4: TLabel
    Left = 8
    Top = 62
    Width = 79
    Height = 17
    Caption = 'Original tree'
  end
  object Label5: TLabel
    Left = 458
    Top = 62
    Width = 79
    Height = 17
    Alignment = taRightJustify
    Anchors = [akTop, akRight]
    Caption = 'Cloned Tree'
  end
  object Label6: TLabel
    Left = 8
    Top = 341
    Width = 7
    Height = 17
    Anchors = [akLeft, akBottom]
    Caption = 'y'
  end
  object Label7: TLabel
    Left = 314
    Top = 310
    Width = 83
    Height = 17
    Alignment = taRightJustify
    Anchors = [akLeft, akBottom]
    Caption = 'Original Tree'
  end
  object Label8: TLabel
    Left = 409
    Top = 310
    Width = 8
    Height = 17
    Anchors = [akLeft, akBottom]
    Caption = '0'
  end
  object Label9: TLabel
    Left = 318
    Top = 342
    Width = 79
    Height = 17
    Alignment = taRightJustify
    Anchors = [akLeft, akBottom]
    Caption = 'Cloned Tree'
  end
  object Label10: TLabel
    Left = 409
    Top = 342
    Width = 8
    Height = 17
    Anchors = [akLeft, akBottom]
    Caption = '0'
  end
  object Label1: TLabel
    Left = 8
    Top = 372
    Width = 269
    Height = 17
    Anchors = [akLeft, akBottom]
    Caption = #169' Copyright 2013, 2014 Michel Deslierres'
  end
  object Edit1: TEdit
    Left = 8
    Top = 31
    Width = 441
    Height = 25
    Anchors = [akLeft, akTop, akRight]
    PopupMenu = PopupMenu1
    TabOrder = 0
    Text = 'sin(2*y*3) * cos(4+x+6)'
    OnChange = Edit1Change
  end
  object Button1: TButton
    Left = 460
    Top = 31
    Width = 75
    Height = 25
    Anchors = [akTop, akRight]
    Caption = 'Parse'
    TabOrder = 1
    OnClick = Button1Click
    OnMouseDown = Button1MouseDown
  end
  object Button2: TButton
    Left = 463
    Top = 369
    Width = 72
    Height = 25
    Anchors = [akRight, akBottom]
    Caption = 'Close'
    TabOrder = 2
    OnClick = Button2Click
  end
  object Edit2: TEdit
    Left = 38
    Top = 307
    Width = 147
    Height = 25
    Anchors = [akLeft, akBottom]
    TabOrder = 3
    Text = '0'
  end
  object Panel1: TPanel
    Left = 8
    Top = 85
    Width = 529
    Height = 134
    Anchors = [akLeft, akTop, akRight, akBottom]
    BevelOuter = bvNone
    TabOrder = 4
    object Splitter1: TSplitter
      Left = 249
      Top = 0
      Width = 6
      Height = 134
      ExplicitLeft = 201
      ExplicitHeight = 143
    end
    object tvLeft: TTreeView
      Left = 0
      Top = 0
      Width = 249
      Height = 134
      Align = alLeft
      Indent = 19
      TabOrder = 0
    end
    object tvRight: TTreeView
      Left = 255
      Top = 0
      Width = 274
      Height = 134
      Align = alClient
      Indent = 19
      TabOrder = 1
    end
  end
  object Edit3: TEdit
    Left = 38
    Top = 338
    Width = 147
    Height = 25
    Anchors = [akLeft, akBottom]
    TabOrder = 5
    Text = '0'
  end
  object Button3: TButton
    Left = 207
    Top = 323
    Width = 75
    Height = 25
    Anchors = [akLeft, akBottom]
    Caption = 'Eval'
    TabOrder = 6
    OnClick = Button3Click
  end
  object RadioButton1: TRadioButton
    Left = 312
    Top = 6
    Width = 73
    Height = 17
    Caption = 'Clone'
    Checked = True
    TabOrder = 7
    TabStop = True
    OnClick = RadioButton1Click
  end
  object RadioButton2: TRadioButton
    Left = 391
    Top = 6
    Width = 113
    Height = 17
    Caption = 'Optimize'
    TabOrder = 8
    OnClick = RadioButton1Click
  end
  object Memo: TMemo
    Left = 8
    Top = 227
    Width = 527
    Height = 69
    Anchors = [akLeft, akRight, akBottom]
    ScrollBars = ssVertical
    TabOrder = 9
  end
  object Button4: TButton
    Left = 325
    Top = 369
    Width = 124
    Height = 25
    Anchors = [akRight, akBottom]
    Caption = 'User Functions'
    TabOrder = 10
    OnClick = Button4Click
  end
  object PopupMenu1: TPopupMenu
    Left = 272
    Top = 62
    object Createoverflow1: TMenuItem
      Caption = 'Create overflow'
      OnClick = Createoverflow1Click
    end
    object Createunderflow1: TMenuItem
      Caption = 'Create underflow'
      OnClick = Createunderflow1Click
    end
  end
end
