TB2Consts.pas 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. unit TB2Consts;
  2. { $jrsoftware: tb2k/Source/TB2Consts.pas,v 1.7 2002/11/14 18:07:19 jr Exp $ }
  3. interface
  4. {$I TB2Ver.inc}
  5. resourcestring
  6. { Exceptions }
  7. STBToolbarIndexOutOfBounds = 'Toolbar item index out of range';
  8. STBToolbarItemReinserted = 'Toolbar item already inserted';
  9. STBViewerNotFound = 'An item viewer associated the specified item could not be found';
  10. { TTBChevronItem }
  11. STBChevronItemMoreButtonsHint = 'More Buttons|';
  12. {$IFNDEF MPEXCLUDE}
  13. { TTBMRUListItem }
  14. STBMRUListItemDefCaption = '(MRU List)';
  15. {$ENDIF}
  16. {$IFNDEF MPEXCLUDE}
  17. { TTBMDIWindowItem }
  18. STBMDIWindowItemDefCaption = '(Window List)';
  19. {$ENDIF}
  20. { TTBDock exception messages }
  21. STBDockParentNotAllowed = 'A TTBDock control cannot be placed inside a tool window or another TTBDock';
  22. STBDockCannotChangePosition = 'Cannot change Position of a TTBDock if it already contains controls';
  23. { TTBCustomDockableWindow exception messages }
  24. STBToolwinNameNotSet = 'Cannot save dockable window''s position because Name property is not set';
  25. STBToolwinDockedToNameNotSet = 'Cannot save dockable window''s position because DockedTo''s Name property not set';
  26. implementation
  27. end.