cdr2svg_mainform.lfm 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. object Form1: TForm1
  2. Left = 216
  3. Height = 240
  4. Top = 192
  5. Width = 240
  6. Caption = 'cdr2svg'
  7. ClientHeight = 240
  8. ClientWidth = 240
  9. LCLVersion = '0.9.29'
  10. object Label1: TLabel
  11. Left = 8
  12. Height = 14
  13. Top = 80
  14. Width = 215
  15. Caption = 'Location of the Input Corel Draw (*.cdr) file:'
  16. ParentColor = False
  17. end
  18. object Label2: TLabel
  19. Left = 8
  20. Height = 59
  21. Top = 8
  22. Width = 224
  23. AutoSize = False
  24. Caption = 'This example project uses fpvectorial to convert a Corel Draw file (*.cdr) to an SVG (*.svg) vectorial graphics file.'
  25. ParentColor = False
  26. WordWrap = True
  27. end
  28. object editInput: TFileNameEdit
  29. Left = 8
  30. Height = 21
  31. Top = 104
  32. Width = 192
  33. DialogOptions = []
  34. FilterIndex = 0
  35. HideDirectories = False
  36. ButtonWidth = 23
  37. NumGlyphs = 0
  38. MaxLength = 0
  39. TabOrder = 0
  40. end
  41. object Label3: TLabel
  42. Left = 8
  43. Height = 14
  44. Top = 138
  45. Width = 154
  46. Caption = 'Full path of the Output SVG file:'
  47. ParentColor = False
  48. end
  49. object editOutput: TFileNameEdit
  50. Left = 8
  51. Height = 21
  52. Top = 160
  53. Width = 192
  54. DialogOptions = []
  55. FilterIndex = 0
  56. HideDirectories = False
  57. ButtonWidth = 23
  58. NumGlyphs = 0
  59. MaxLength = 0
  60. TabOrder = 1
  61. end
  62. object buttonConvert: TButton
  63. Left = 32
  64. Height = 25
  65. Top = 200
  66. Width = 75
  67. Caption = 'Convert'
  68. OnClick = buttonConvertClick
  69. TabOrder = 2
  70. end
  71. object buttonQuit: TButton
  72. Left = 136
  73. Height = 25
  74. Top = 200
  75. Width = 75
  76. Caption = 'Quit'
  77. OnClick = buttonQuitClick
  78. TabOrder = 3
  79. end
  80. end