@TextWhite.h 721 B

12345678910111213141516
  1. /******************************************************************************/
  2. /******************************************************************************/
  3. class TextWhite : TextStyle // text style which resets its color upon changing skin with preference to black
  4. {
  5. static ObjPtrs<TextWhite> texts;
  6. void skinChanged();
  7. TextWhite& reset ();
  8. TextWhite& operator= (C TextStyle&ts);
  9. TextWhite();
  10. ~TextWhite();
  11. };
  12. /******************************************************************************/
  13. /******************************************************************************/
  14. /******************************************************************************/