Unit1.pas 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {========================================================================}
  2. {= (c) 1995-98 SwiftSoft Ronald Dittrich =}
  3. {========================================================================}
  4. {= All Rights Reserved =}
  5. {========================================================================}
  6. {= D 01099 Dresden = Fax.: +49 (0)351-8037944 =}
  7. {= Loewenstr.7a = info@swiftsoft.de =}
  8. {========================================================================}
  9. {= Actual versions on http://www.swiftsoft.de/mmtools.html =}
  10. {========================================================================}
  11. {= This code is for reference purposes only and may not be copied or =}
  12. {= distributed in any format electronic or otherwise except one copy =}
  13. {= for backup purposes. =}
  14. {= =}
  15. {= No Delphi Component Kit or Component individually or in a collection=}
  16. {= subclassed or otherwise from the code in this unit, or associated =}
  17. {= .pas, .dfm, .dcu, .asm or .obj files may be sold or distributed =}
  18. {= without express permission from SwiftSoft. =}
  19. {= =}
  20. {= For more licence informations please refer to the associated =}
  21. {= HelpFile. =}
  22. {========================================================================}
  23. {= $Date: 05.09.98 - 21:56:49 $ =}
  24. {========================================================================}
  25. unit Unit1;
  26. interface
  27. uses
  28. Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  29. MMObj, MMBmpLst, MMCtrl, MMBmpBtn, MMHook, MMForm;
  30. type
  31. TForm1 = class(TForm)
  32. MMBitmapList1: TMMBitmapList;
  33. Slider3: TMMBitmapSlider;
  34. Slider4: TMMBitmapSlider;
  35. Slider5: TMMBitmapSlider;
  36. Slider6: TMMBitmapSlider;
  37. MMBitmapButton1: TMMBitmapButton;
  38. MMBitmapButton2: TMMBitmapButton;
  39. MMBitmapButton3: TMMBitmapButton;
  40. MMBitmapButton4: TMMBitmapButton;
  41. MMBitmapButton5: TMMBitmapButton;
  42. MMBitmapButton6: TMMBitmapButton;
  43. MMBitmapButton7: TMMBitmapButton;
  44. MMBitmapSlider1: TMMBitmapSlider;
  45. MMBitmapSlider2: TMMBitmapSlider;
  46. MMFormStyler1: TMMFormStyler;
  47. private
  48. { Private-Deklarationen }
  49. public
  50. { Public-Deklarationen }
  51. end;
  52. var
  53. Form1: TForm1;
  54. implementation
  55. {$R *.DFM}
  56. end.