home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 October / CMCD1004.ISO / Software / Freeware / Programare / alite / D7 / sSkinProps.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2004-06-24  |  5.8 KB  |  119 lines

  1. unit sSkinProps;
  2.  
  3. interface
  4.  
  5. const
  6.  
  7. // Images
  8.   BordersMask                           = 'BORDERSMASK';
  9.   BordersMaskPlus                       = 'BORDERSMASK+'; // For additional painting (in TsPageControl for sample)
  10.   StatusBarGrip                         = 'GRIPIMAGE';
  11.   StatusPanelBordersMask                = 'STATUSPANELMASK';
  12.   SliderChannelMask                     = 'SLIDERCHANNEL';
  13.  
  14.   ActiveTab                             = 'ACTIVETABBORDERSMASK';
  15.   ActiveTabPlus                         = 'ACTIVETABBORDERSMASK+';
  16.   InActiveTab                           = 'INACTIVETABBORDERSMASK';
  17.  
  18.   PatternFile                           = 'IMAGEFILE';
  19.   HotPatternFile                        = 'HOTIMAGEFILE';
  20.  
  21.   TitleBorder                           = 'TITLEBORDER';
  22.   NormalTitleBar                        = 'TITLEBAR';
  23.   MenuLineBg                            = 'LINEPATTERN';
  24.  
  25.   BorderIconClose                       = 'BICONCLOSE';
  26.   BorderIconMaximize                    = 'BICONMAX';
  27.   BorderIconNormalize                   = 'BICONNORM';
  28.   BorderIconMinimize                    = 'BICONMIN';
  29.   BorderIconHelp                        = 'BICONHELP';
  30.  
  31.   SmallIconMinimize                     = 'BICONMIN';    //'SICONMIN';
  32.   SmallIconMaximize                     = 'BICONMAX';    //'SICONMAX';
  33.   SmallIconClose                        = 'BICONCLOSE';  //'SICONCLOSE';
  34.  
  35.   ComboBoxGlyph                         = 'GLYPHMASK';
  36.   ItemGlyph                             = 'GLYPHMASK';
  37.   GaugeHorProgress                      = 'GAUGEPROGRESSMASK';
  38.   GlyphChecked                          = 'GLYPHCHECKED';
  39.   GlyphUnChecked                        = 'GLYPHUNCHECKED';
  40.   SliderHorzMask                        = 'SLIDERMASK';
  41.   SliderVertMask                        = 'SLIDERVMASK';
  42.  
  43.  
  44. // General properties
  45.   // Text and text contours colors
  46.   FColor                                = 'FONTCOLOR';
  47.   TCLeft                                = 'TCLEFT';
  48.   TCTop                                 = 'TCTOP';
  49.   TCRight                               = 'TCRIGHT';
  50.   TCBottom                              = 'TCBOTTOM';
  51.   // Hot text and text contours colors
  52.   HotFColor                             = 'HOTFONTCOLOR';
  53.   HotTCLeft                             = 'HOTTCLEFT';
  54.   HotTCTop                              = 'HOTTCTOP';
  55.   HotTCRight                            = 'HOTTCRIGHT';
  56.   HotTCBottom                           = 'HOTTCBOTTOM';
  57.  
  58.   ReservedBoolean                       = 'RESERVEDBOOLEAN';
  59.  
  60.   SectionName                           = 'SectionName';
  61.   ParentClassName                       = 'ParentClassName';
  62.   PaintingColor                         = 'PaintingColor';
  63.   PaintingBevel                         = 'PaintingBevel';
  64.   PaintingBevelWidth                    = 'PaintingBevelWidth';
  65.   ShadowBlur                            = 'ShadowBlur';
  66.   ShadowColor                           = 'ShadowColor';
  67.   ShadowDontUse                         = 'ShadowDontUse';
  68.   ShadowEnabled                         = 'ShadowEnabled';
  69.   ShadowOffset                          = 'ShadowOffset';
  70.   ShadowTransparency                    = 'ShadowTransparency';
  71.   FontColor                             = 'FontColor';
  72.   HotFontColor                          = 'HotFontColor';
  73.   PaintingTransparency                  = 'PaintingTransparency';
  74.   GradientPercent                       = 'GradientPercent';
  75.   GradientData                          = 'GradientData';
  76.   ImagePercent                          = 'ImagePercent';
  77.   ShowFocus                             = 'ShowFocus';
  78.   FadingEnabled                         = 'FadingEnabled';
  79.   FadingIntervalIn                      = 'FadingIntervalIn';
  80.   FadingIntervalOut                     = 'FadingIntervalOut';
  81.   FadingIterations                      = 'FadingIterations';
  82.   HotPaintingColor                      = 'HotPaintingColor';
  83.   HotPaintingTransparency               = 'HotPaintingTransparency';
  84.   HotPaintingBevel                      = 'HotPaintingBevel';
  85.   HotPaintingBevelWidth                 = 'HotPaintingBevelWidth';
  86.   HotGradientPercent                    = 'HotGradientPercent';
  87.   HotGradientData                       = 'HotGradientData';
  88.   HotImagePercent                       = 'HotImagePercent';
  89.   PaintingColorBorderTop                = 'PaintingColorBorderTop';
  90.   PaintingColorBorderBottom             = 'PaintingColorBorderBottom';
  91.   SelectionBorderBevel                  = 'SelectionBorderBevel';
  92.   SelectionBorderWidth                  = 'SelectionBorderWidth';
  93.   SelectionColor                        = 'SelectionColor';
  94.  
  95.  
  96. // Default sections
  97.   FormTitle                             = 'FORMTITLE';
  98.   NormalForm                            = 'FORM';
  99.   MDIArea                               = 'MDIAREA';
  100.   MainMenu                              = 'MAINMENU';
  101.   MenuLine                              = 'MENULINE';
  102.   MenuItem                              = 'MENUITEM';
  103.   ScrollBar1            = 'SCROLLBAR1';   // After creation added 'H' or 'V' for horizontal or vertical kinds
  104.   ScrollBar2            = 'SCROLLBAR2';   // After creation added 'H' or 'V' for horizontal or vertical kinds
  105.   ScrollSlider          = 'SCROLLSLIDER'; // After creation added 'H' or 'V' for horizontal or vertical kinds
  106.   ArrowLeft                             = 'SCROLLBTNLEFT';
  107.   ArrowTop                              = 'SCROLLBTNTOP';
  108.   ArrowRight                            = 'SCROLLBTNRIGHT';
  109.   ArrowBottom                           = 'SCROLLBTNBOTTOM';
  110.   Divider                               = 'DIVIDER';
  111.   ColHeader                             = 'COLHEADER';
  112.  
  113. // When pagecontrol have TabPosition <> tpTop then to SkinSection added suffix "Bottom", "Left", or "Right"
  114. // Sample - TsPageControlLeft. And Also to TsTabSheet added such suffixes (Sample - "TsTabSheetLeft") 
  115.  
  116. implementation
  117.  
  118. end.
  119.