AboutUnit.pas 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. TIGCC IDE
  3. Copyright (C) 2000-2004 Sebastian Reichelt
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2, or (at your option)
  7. any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software Foundation,
  14. Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  15. }
  16. unit AboutUnit;
  17. interface
  18. uses
  19. Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  20. Buttons, ExtCtrls, URLLabelUnit;
  21. type
  22. TAboutForm = class(TForm)
  23. FramePanel: TPanel;
  24. ProgramIcon: TImage;
  25. ProductNameLabel: TLabel;
  26. VersionLabel: TLabel;
  27. OKButton: TButton;
  28. Label2: TLabel;
  29. Label3: TLabel;
  30. Label4: TLabel;
  31. Label5: TLabel;
  32. Label6: TLabel;
  33. URLLabel1: TURLLabel;
  34. URLLabel2: TURLLabel;
  35. URLLabel3: TURLLabel;
  36. URLLabel4: TURLLabel;
  37. URLLabel5: TURLLabel;
  38. Label1: TLabel;
  39. URLLabel6: TURLLabel;
  40. CopyrightLabel: TLabel;
  41. Label8: TLabel;
  42. Label9: TLabel;
  43. URLLabel7: TURLLabel;
  44. Label10: TLabel;
  45. URLLabel8: TURLLabel;
  46. Label7: TLabel;
  47. URLLabel9: TURLLabel;
  48. procedure FormCreate(Sender: TObject);
  49. private
  50. public
  51. end;
  52. implementation
  53. {$R *.DFM}
  54. uses
  55. VersionUnit;
  56. procedure TAboutForm.FormCreate(Sender: TObject);
  57. begin
  58. PixelsPerInch := 96;
  59. VersionLabel.Caption := 'Version ' + TIGCCLongVersion;
  60. end;
  61. end.