fpvc_mainform.lfm 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. object formVectorialConverter: TformVectorialConverter
  2. Left = 216
  3. Height = 439
  4. Top = 192
  5. Width = 240
  6. BorderStyle = bsSingle
  7. Caption = 'FP Vectorial Converter'
  8. ClientHeight = 439
  9. ClientWidth = 240
  10. LCLVersion = '0.9.31'
  11. object Label1: TLabel
  12. Left = 8
  13. Height = 18
  14. Top = 112
  15. Width = 172
  16. Caption = 'Location of the Input file:'
  17. ParentColor = False
  18. end
  19. object Label2: TLabel
  20. Left = 11
  21. Height = 104
  22. Top = 8
  23. Width = 229
  24. AutoSize = False
  25. Caption = 'This converter application use the fpvectorial library to convert between various different vectorial graphics formats. The type is detected from the extension and the supported types are: PDF (*.pdf), SVG (*.svg) and Corel Draw file (*.cdr).'
  26. Font.Height = -12
  27. ParentColor = False
  28. ParentFont = False
  29. WordWrap = True
  30. end
  31. object editInput: TFileNameEdit
  32. Left = 8
  33. Height = 25
  34. Top = 128
  35. Width = 192
  36. DialogOptions = []
  37. FilterIndex = 0
  38. HideDirectories = False
  39. ButtonWidth = 23
  40. NumGlyphs = 0
  41. MaxLength = 0
  42. TabOrder = 0
  43. end
  44. object Label3: TLabel
  45. Left = 8
  46. Height = 18
  47. Top = 152
  48. Width = 184
  49. Caption = 'Full path of the Output file:'
  50. ParentColor = False
  51. end
  52. object editOutput: TFileNameEdit
  53. Left = 8
  54. Height = 25
  55. Top = 168
  56. Width = 192
  57. DialogOptions = []
  58. FilterIndex = 0
  59. HideDirectories = False
  60. ButtonWidth = 23
  61. NumGlyphs = 0
  62. MaxLength = 0
  63. TabOrder = 1
  64. end
  65. object buttonConvert: TButton
  66. Left = 87
  67. Height = 25
  68. Top = 192
  69. Width = 67
  70. Caption = 'Convert'
  71. OnClick = buttonConvertClick
  72. TabOrder = 2
  73. end
  74. object buttonQuit: TButton
  75. Left = 176
  76. Height = 25
  77. Top = 192
  78. Width = 59
  79. Caption = 'Quit'
  80. OnClick = buttonQuitClick
  81. TabOrder = 3
  82. end
  83. object imagePreview: TImage
  84. Left = 8
  85. Height = 210
  86. Top = 224
  87. Width = 224
  88. end
  89. object buttonVisualize: TButton
  90. Left = 8
  91. Height = 25
  92. Top = 192
  93. Width = 59
  94. Caption = 'Visualize'
  95. OnClick = buttonVisualizeClick
  96. TabOrder = 4
  97. end
  98. end