home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / Reuse / ReusableComponentsEx / AlertPanel.wo / AlertPanel.wos < prev    next >
Encoding:
Text File  |  1996-02-10  |  477 b   |  31 lines

  1. ////////////////////////
  2. //  AlertPanel
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6.  
  7. id alertString;
  8. id alertFontColor;
  9. id alertFontSize;
  10.  
  11. id infoString;
  12. id infoFontColor;
  13. id infoFontSize;
  14.  
  15. id borderSize;
  16. id tableWidth;
  17.  
  18. - awake
  19. {
  20.     alertString = @"Alert!";
  21.     alertFontColor = @"#ff0000";
  22.     alertFontSize = 6;
  23.  
  24.     infoString = @"User should provide an infoString";
  25.     infoFontColor = @"#ff0000";
  26.     infoFontSize = 4;
  27.  
  28.     borderSize = 2;
  29.     tableWidth = @"50%";
  30. }
  31.