TB2Consts.pas 1006 B

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