TB2Consts.pas 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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. { TTBMRUListItem }
  13. STBMRUListItemDefCaption = '(MRU List)';
  14. { TTBMDIWindowItem }
  15. STBMDIWindowItemDefCaption = '(Window List)';
  16. { TTBDock exception messages }
  17. STBDockParentNotAllowed = 'A TTBDock control cannot be placed inside a tool window or another TTBDock';
  18. STBDockCannotChangePosition = 'Cannot change Position of a TTBDock if it already contains controls';
  19. { TTBCustomDockableWindow exception messages }
  20. STBToolwinNameNotSet = 'Cannot save dockable window''s position because Name property is not set';
  21. STBToolwinDockedToNameNotSet = 'Cannot save dockable window''s position because DockedTo''s Name property not set';
  22. implementation
  23. end.