home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 September / Chip_2001-09_cd1.bin / zkuste / delphi / kolekce / d12345 / CHEMPLOT.ZIP / TPlot / Functons.dfm / Functons.txt
Text File  |  2001-05-28  |  3KB  |  129 lines

  1. object FunctionsForm: TFunctionsForm
  2.   Left = 286
  3.   Top = 359
  4.   Width = 350
  5.   Height = 362
  6.   HelpContext = 4000
  7.   HorzScrollBar.Range = 444
  8.   HorzScrollBar.Visible = False
  9.   VertScrollBar.Range = 325
  10.   VertScrollBar.Visible = False
  11.   ActiveControl = HelpBitBtn
  12.   AutoScroll = False
  13.   Caption = 'Create New Function'
  14.   Font.Color = clWindowText
  15.   Font.Height = 21
  16.   Font.Name = 'MS Sans Serif'
  17.   Font.Pitch = fpVariable
  18.   Font.Style = []
  19.   PixelsPerInch = 120
  20.   OnCreate = FormCreate
  21.   TextHeight = 20
  22.   object SeriesLabel: TLabel
  23.     Left = 10
  24.     Top = 10
  25.     Width = 104
  26.     Height = 25
  27.     Caption = 'SeriesN := '
  28.   end
  29.   object FunctionHintLabel: TLabel
  30.     Left = 10
  31.     Top = 260
  32.     Width = 170
  33.     Height = 25
  34.     Caption = 'FunctionHintLabel'
  35.   end
  36.   object HelpBitBtn: TBitBtn
  37.     Left = 10
  38.     Top = 294
  39.     Width = 94
  40.     Height = 31
  41.     HelpContext = 1860
  42.     TabOrder = 0
  43.     Kind = bkHelp
  44.   end
  45.   object CancelBitBtn: TBitBtn
  46.     Left = 240
  47.     Top = 294
  48.     Width = 94
  49.     Height = 31
  50.     TabOrder = 1
  51.     Kind = bkCancel
  52.   end
  53.   object OKBitBtn: TBitBtn
  54.     Left = 120
  55.     Top = 294
  56.     Width = 94
  57.     Height = 31
  58.     TabOrder = 2
  59.     Kind = bkOK
  60.   end
  61.   object FunctionMemo: TMemo
  62.     Left = 10
  63.     Top = 40
  64.     Width = 321
  65.     Height = 171
  66.     Hint = 'Type your expression in here'
  67.     TabOrder = 3
  68.   end
  69.   object FunctionComboBox: TComboBox
  70.     Left = 110
  71.     Top = 220
  72.     Width = 101
  73.     Height = 28
  74.     Hint = 'The available functions to insert or apply'
  75.     Style = csDropDownList
  76.     ItemHeight = 20
  77.     Items.Strings = (
  78.       'PI'
  79.       'COS'
  80.       'SIN'
  81.       'SINH'
  82.       'COSH'
  83.       'TAN'
  84.       'COTAN'
  85.       'ARCTAN'
  86.       'ARG'
  87.       'EXP'
  88.       'LN'
  89.       'LOG10'
  90.       'LOG2'
  91.       'LOGN'
  92.       'SQRT'
  93.       'SQR'
  94.       'POWER'
  95.       'INTPOWER'
  96.       'MIN'
  97.       'MAX'
  98.       'ABS'
  99.       'TRUNC'
  100.       'INT'
  101.       'CEIL'
  102.       'FLOOR'
  103.       'HEAV (=1 for x=>0, 0 for x<0),'
  104.       'SIGN (= 1 for x>1, 0 for x=0, -1 for x<0),'
  105.       'ZERO (= 0 for x=0, 1 for x<>0),'
  106.       'PH (= x - 2*pi*round(x/2/pi))'
  107.       'RND (= int(x) * Random)'
  108.       'RANDOM')
  109.     ParentShowHint = False
  110.     ShowHint = True
  111.     TabOrder = 4
  112.     OnClick = FunctionComboBoxClick
  113.   end
  114.   object InsertBitBtn: TBitBtn
  115.     Left = 10
  116.     Top = 220
  117.     Width = 94
  118.     Height = 31
  119.     Hint = 
  120.       'Insert the chosen function at the cursor, or apply it to the sel' +
  121.       'ected text'
  122.     Caption = '&Insert:'
  123.     ParentShowHint = False
  124.     ShowHint = True
  125.     TabOrder = 5
  126.     OnClick = InsertBitBtnClick
  127.   end
  128. end
  129.