Componentes.Terceros.DevExp.../official/x.44/ExpressWeb Framework/Sources/cxWebConsts.pas

104 lines
6.6 KiB
ObjectPascal

{*******************************************************************}
{ }
{ ExpressWeb Framework by Developer Express }
{ Runtime and designtime constants }
{ }
{ Copyright (c) 2000-2009 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 EXPRESSWEB FRAMEWORK AND ALL }
{ ACCOMPANYING VCL CLASSES AS PART OF AN EXECUTABLE WEB }
{ APPLICATION 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 cxWebConsts;
interface
const
cxWebConstsVersion = '1.44';
// Script files
scxScriptFileExtention = 'js';
scxCalendarScriptName = 'calendar' + '_' + cxWebConstsVersion + '.' + scxScriptFileExtention;
scxCommonScriptName = 'common' + '_' + cxWebConstsVersion + '.' + scxScriptFileExtention;
scxDataControllerScriptName = 'datacontroller' + '_' + cxWebConstsVersion + '.' + scxScriptFileExtention;
scxDataControlsScriptName = 'datacontrols' + '_' + cxWebConstsVersion + '.' + scxScriptFileExtention;
scxDataEngineScriptName = 'dataengine' + '_' + cxWebConstsVersion + '.' + scxScriptFileExtention;
scxDataNavigatorScriptName = 'datanavigator' + '_' + cxWebConstsVersion + '.' + scxScriptFileExtention;
scxDateEditScriptName = 'dateedit' + '_' + cxWebConstsVersion + '.' + scxScriptFileExtention;
scxGridScriptName = 'grid' + '_' + cxWebConstsVersion + '.' + scxScriptFileExtention;
scxGridPainterScriptName = 'gridpainter' + '_' + cxWebConstsVersion + '.' + scxScriptFileExtention;
scxLookupScriptName = 'lookup' + '_' + cxWebConstsVersion + '.' + scxScriptFileExtention;
scxMenuScriptName = 'menu' + '_' + cxWebConstsVersion + '.' + scxScriptFileExtention;
scxMenuGlobalScriptName = 'menuglobal' + '_' + cxWebConstsVersion + '.' + scxScriptFileExtention;
scxTimerScriptName = 'timer' + '_' + cxWebConstsVersion + '.' + scxScriptFileExtention;
scxTreeViewScriptName = 'treeview' + '_' + cxWebConstsVersion + '.' + scxScriptFileExtention;
scxNavBarScriptName = 'navbar' + '_' + cxWebConstsVersion + '.' + scxScriptFileExtention;
scxModuleScriptName = 'module' + '_' + cxWebConstsVersion + '.' + scxScriptFileExtention;
// Image files
scx1x1ImageName = '1x1.gif';
scxcMonthLeftImageName = 'cmonthleft.gif';
scxcMonthRightImageName = 'cmonthright.gif';
scxdeDownImageName = 'dedown.gif';
scxgaDownImageName = 'gadown.gif';
scxgaUpImageName = 'gaup.gif';
scxgbCancelImageName = 'gbcancel.gif';
scxgbCollapseImageName = 'gbcollapse.gif';
scxgbCursorImageName = 'gbcursor.gif';
scxgbDeleteImageName = 'gbdelete.gif';
scxgbExpandImageName = 'gbexpand.gif';
scxgbInsertImageName = 'gbinsert.gif';
scxgbNodeImageName = 'gbnode.gif';
scxgbPostImageName = 'gbpost.gif';
scxgiAscendingImageName = 'giascending.gif';
scxgiDescendingImageName = 'gidescending.gif';
scxgiNoneImageName = 'ginone.gif';
scxmToLeftImageName = 'mtoleft.gif';
scxmToRightImageName = 'mtoright.gif';
scxnbCancelImageName = 'nbcancel.gif';
scxnbDeleteImageName = 'nbdelete.gif';
scxnbEditImageName = 'nbedit.gif';
scxnbFirstImageName = 'nbfirst.gif';
scxnbInsertImageName = 'nbinsert.gif';
scxnbLastImageName = 'nblast.gif';
scxnbNextImageName = 'nbnext.gif';
scxnbNextPageImageName = 'nbnextpage.gif';
scxnbPgSizeImageName = 'nbpgsize.gif';
scxnbPostImageName = 'nbpost.gif';
scxnbPriorImageName = 'nbprior.gif';
scxnbPriorPageImageName = 'nbpriorpage.gif';
scxnbRefreshImageName = 'nbrefresh.gif';
scxScrlDownImageName = 'scrldown.gif';
scxScrlUpImageName = 'scrlup.gif';
scxtvCollapseImageName = 'tvcollapse.gif';
scxtvExpandImageName = 'tvexpand.gif';
scxnbLeftCollapsedImageName = 'navbleftcollapsed.gif';
scxnbLeftExpandedImageName = 'navbleftexpanded.gif';
scxnbRightCollapsedImageName = 'navbrightcollapsed.gif';
scxnbRightExpandedImageName = 'navbrightexpanded.gif';
implementation
end.