Rxlconst.pas
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:2k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. {*******************************************************}
  2. {                                                       }
  3. {         Delphi VCL Extensions (RX)                    }
  4. {                                                       }
  5. {         Copyright (c) 1995, 1996 AO ROSNO             }
  6. {         Copyright (c) 1997 Master-Bank                }
  7. {                                                       }
  8. {*******************************************************}
  9. unit RXLConst;
  10. { RX Library constants }
  11. {
  12.   Reserved diapasone
  13.   from MaxExtStrID + 10
  14.   to   MaxExtStrID - 20
  15. }
  16. interface
  17. const
  18. { The minimal VCL's used string ID is 61440. The custom IDs must be
  19.   less that above. }
  20.   MaxExtStrID = 61300;
  21. const
  22. { Component pages }
  23.   srRXControls         = MaxExtStrID;
  24.   srRXDBAware          = MaxExtStrID - 1;
  25.   srRXTools            = MaxExtStrID - 2;
  26. { TImageList component editor }
  27.   srSaveImageList      = MaxExtStrID - 3;
  28. { TFormStorage component editor }
  29.   srStorageDesigner    = MaxExtStrID - 4;
  30. { TPageManager component editor }
  31.   srProxyEditor        = MaxExtStrID - 5;
  32.   srPageProxies        = MaxExtStrID - 6;
  33.   srProxyName          = MaxExtStrID - 7;
  34.   srPageName           = MaxExtStrID - 8;
  35. { TSpeedbar component editor }
  36.   srSBItemNotCreate    = MaxExtStrID - 9;
  37.   srConfirmSBDelete    = MaxExtStrID - 10;
  38.   srSpeedbarDesigner   = MaxExtStrID - 11;
  39.   srNewSectionName     = MaxExtStrID - 12;
  40. { TRxTimerList component editor }
  41.   srEventNotCreate     = MaxExtStrID - 13;
  42.   srTimerDesigner      = MaxExtStrID - 14;
  43.   srTimerEvents        = MaxExtStrID - 15;
  44. { TAnimatedImage component editor }
  45.   srAniCurFilter       = MaxExtStrID - 16;
  46.   srEditPicture        = MaxExtStrID - 17;
  47.   srLoadAniCursor      = MaxExtStrID - 18;
  48. { TIconList property editor }
  49.   srLoadIcon           = MaxExtStrID - 19;
  50. { TRxGradientCaption component editor }
  51.   srCaptionDesigner    = MaxExtStrID - 20;
  52.   srGradientCaptions   = MaxExtStrID + 10;
  53. { TMemoryTable & TRxMemoryData component editor }
  54.   srBorrowStructure    = MaxExtStrID + 9;
  55. implementation
  56. {$IFDEF WIN32}
  57.  {$R *.R32}
  58. {$ELSE}
  59.  {$R *.R16}
  60. {$ENDIF}
  61. end.