am2000.pas
上传用户:powellwoo
上传日期:2007-01-07
资源大小:109k
文件大小:3k
源码类别:

Delphi控件源码

开发平台:

C++ Builder

  1. {*******************************************************}
  2. {                                                       }
  3. {       AnimatedMenus/2000                              }
  4. {       Version 2.2 (build 655)                         }
  5. {       Compiled 01.09.99 16:53                         }
  6. {                                                       }
  7. {       Copyright (c) 1997-99 AnimatedMenus.com         }
  8. {       All rights reserved.                            }
  9. {                                                       }
  10. {*******************************************************}
  11. unit am2000;
  12. {
  13.    This is Microsoft Office2000-styled menus component pack.
  14.    *********************************************************************
  15.      Website:  http://www.animatedmenus.com/
  16.    *********************************************************************
  17.    *********************************************************************
  18.      Thanks to Victor Santos for participation in the development
  19.      of this version.
  20.    *********************************************************************
  21.      Thanks to all users and betatesters.
  22.      Thanks to everyone who helps in development of this component.
  23.    *********************************************************************
  24. }
  25. {$BOOLEVAL OFF}
  26. {$RANGECHECKS OFF}
  27. {$TYPEDADDRESS OFF}
  28. {$WRITEABLECONST ON}
  29. {$I am2000.inc}
  30. interface
  31. uses
  32.   am2000menubar, am2000mainmenu, am2000popupmenu;
  33. type
  34.   TMainMenu2000 = class(TCustomMainMenu2000)
  35.   published
  36.     property Items;
  37. {$IFNDEF Delphi4OrHigher}
  38.     property Images;
  39. {$ENDIF}
  40.   end;
  41.   TMenuBar2000 = class(TCustomMenuBar2000)
  42.   published
  43.     property Options;
  44.     property Menu;
  45.     property AlignParent;
  46.     property Font;
  47.     property Align;
  48.     property ParentFont;
  49.     property ShowHint;
  50.     property ParentShowHint;
  51.     property SystemFont;
  52.     property PopupMenu;
  53.     property Ctl3D;
  54.     property StatusBar;
  55.     property StatusBarIndex;
  56.     property Transparent;
  57.     property OnMenuCommand;
  58.     property OnMenuClose;
  59.     property OnCloseQuery;
  60.   end;
  61.   TPopupMenu2000 = class(TCustomPopupMenu2000)
  62.   published
  63.     property StatusBar;
  64.     property StatusBarIndex;
  65.     property ShowHint;
  66.     property ParentShowHint;
  67.     property Font;
  68.     property ParentFont;
  69.     property SystemFont;
  70.     property Options;
  71.     property Ctl3D;
  72. {$IFNDEF Delphi4OrHigher}
  73.     property Images;
  74. {$ENDIF}
  75.     property OnMenuCommand;
  76.     property OnMenuClose;
  77.     property OnCloseQuery;
  78.   end;
  79. implementation
  80. {$R am2000.res}
  81. {$R AutoBitmaps.res}
  82. initialization
  83.   Randomize;
  84. end.