⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dxdockconsts.pas

📁 a voice guide client ,it is the second part of voice guide center
💻 PAS
字号:
{*******************************************************************}
{                                                                   }
{       Developer Express Visual Component Library                  }
{       ExpressDocking                                              }
{                                                                   }
{       Copyright (c) 2002-2005 Developer Express Inc.              }
{       ALL RIGHTS RESERVED                                         }
{                                                                   }
{   The entire contents of this file is protected by U.S. and       }
{   International Copyright Laws. Unauthorized reproduction,        }
{   reverse-engineering, and distribution of all or any portion of  }
{   the code contained in this file is strictly prohibited and may  }
{   result in severe civil and criminal penalties and will be       }
{   prosecuted to the maximum extent possible under the law.        }
{                                                                   }
{   RESTRICTIONS                                                    }
{                                                                   }
{   THIS SOURCE CODE AND ALL RESULTING INTERMEDIATE FILES           }
{   (DCU, OBJ, DLL, ETC.) ARE CONFIDENTIAL AND PROPRIETARY TRADE    }
{   SECRETS OF DEVELOPER EXPRESS INC. THE REGISTERED DEVELOPER IS   }
{   LICENSED TO DISTRIBUTE THE EXPRESSDOCKING AND ALL ACCOMPANYING  }
{   VCL CONTROLS AS PART OF AN EXECUTABLE PROGRAM ONLY.             }
{                                                                   }
{   THE SOURCE CODE CONTAINED WITHIN THIS FILE AND ALL RELATED      }
{   FILES OR ANY PORTION OF ITS CONTENTS SHALL AT NO TIME BE        }
{   COPIED, TRANSFERRED, SOLD, DISTRIBUTED, OR OTHERWISE MADE       }
{   AVAILABLE TO OTHER INDIVIDUALS WITHOUT EXPRESS WRITTEN CONSENT  }
{   AND PERMISSION FROM DEVELOPER EXPRESS INC.                      }
{                                                                   }
{   CONSULT THE END USER LICENSE AGREEMENT FOR INFORMATION ON       }
{   ADDITIONAL RESTRICTIONS.                                        }
{                                                                   }
{*******************************************************************}

unit dxDockConsts;

{$I cxVer.inc}

interface

const
  dxDefaultImageHeight = 16;
  dxDefaultImageWidth = 16;
  dxDockZonesWidth = 20;
  dxResizeZonesWidth = 3;
  dxSelectionFrameWidth = 4;
  dxAutoHideInterval = 500;
  dxAutoHideMovingInterval = 1;
  dxAutoHideMovingSize = 20;
  dxAutoShowInterval = 300;
  dxTabsScrollInterval = 300;

resourcestring
{  sdxInvalidLayoutSiteDeleting = 'You cannot delete a TdxLayoutDockSite.';
  sdxInvalidFloatSiteDeleting = 'You cannot delete a TdxFloatDockSite.';
  sdxInvalidFloatingDeleting = 'You cannot delete a TdxCustomDockSite in floating mode.';
  sdxInvalidParentAssigning = 'You cannot set the parent for this component.';
  sdxInvalidOwner = 'The Owner of the TdxCustomDockControl must be TCustomForm.';
  sdxInvalidParent = 'The Parent of the %s must be TdxCustomDockControl.';
  sdxInvalidDockSiteParent = 'The Parent of the TdxDockSite cannot be TdxCustomDockControl.';
  sdxInvalidFloatSiteParent = 'The Parent of the TdxFloatDockSite can only be TdxFloatForm.';
  sdxInvalidPanelChild = 'You cannot insert a TdxCustomDockControl into TdxDockPanel (%s is being inserted).';
  sdxInvalidSiteChild = 'You can only insert a TdxCustomDockControl into TdxCustomDockSite (%s is being inserted).';
  sdxInvaldZoneOwner = 'You cannot create a TdxZone without the owning TdxCustomDockControl.';
  sdxInternalErrorAutoHide = 'Internal error while autohide controls.';  
  sdxInternalErrorPainter = 'Internal error in the TdxCustomDockControl painter.';
  sdxInternalErrorLayout = 'Internal error in the %s object layout.';
  sdxInternalErrorCreateLayout = 'Internal error while creating a %s object layout.';
  sdxInternalErrorDestroyLayout = 'Internal error while destroying a %s object layout.';
  sdxManagerError = 'You cannot have more than one TdxDockingManager instance on a Form.';
  sdxAncestorError = 'Docking and auto hiding operations are not available for controls declared in an ancestor form.';
}

	sdxInvalidLayoutSiteDeleting = '你不能删除此TdxLayoutDockSite.';                                                                                                                                        
	sdxInvalidFloatSiteDeleting = '你不能删除此TdxFloatDockSite.';                                                                                                                                          
	sdxInvalidFloatingDeleting = '在浮动模式下,你不能删除此TdxCustomDockSite.';                                                                                                                             
	sdxInvalidParentAssigning = '你不能给此组件设置parent.';                                                                                                                                                
	sdxInvalidOwner = '此TdxCustomDockControl的拥有者必需是TCustomForm.';                                                                                                                               
	sdxInvalidParent = '你不能给此组件设置parent.';                                                                                                                                                         
	sdxInvalidDockSiteParent = '此TdxDockSite的Parent不能是TdxCustomDockControl.';                                                                                                                          
	sdxInvalidFloatSiteParent = '此TdxFloatDockSite的Parent不能是TdxFloatForm';                                                                                                                             
	sdxInvalidPanelChild = '你不能把 %s 插入到TdxDockPanel.';                                                                                                                                               
	sdxInvalidSiteChild = '你不能把 %s 插入到TdxCustomDockSite.';                                                                                                                                           
	sdxInvaldZoneOwner = '在没有TdxCustomDockControl时不能创建TdxZone.';                                                                                                                                    
  sdxInternalErrorAutoHide = 'Internal error while autohide controls.';                                                                                                                                 
	sdxInternalErrorPainter = '内部错误in the TdxCustomDockControl painter.';                                                                                                                               
	sdxInternalErrorLayout = '内部错误in the %s object layout.';                                                                                                                                            
	sdxInternalErrorCreateLayout = '内部错误while creating a %s object layout.';                                                                                                                            
	sdxInternalErrorDestroyLayout = '内部错误while destroying a %s object layout.';                                                                                                                         
	sdxManagerError = '您不能创建TdxDockingManager的多个实例.';                                                                                                                                             
  sdxAncestorError = '停靠和自动隐藏对父窗口中的控件无效.';

implementation

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -