Changes between Version 50 and Version 51 of Docs/825gen2/Dev/DeveloperNews


Ignore:
Timestamp:
04/11/25 15:53:26 (8 days ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/825gen2/Dev/DeveloperNews

    v50 v51  
    1313}}}
    1414
    15 Buttons that have bitmap images included may not appear properly in dark mode. Most of the standard app button images such as the zero button image // /usr/images/icon_app_btn_zeroX.bmp// are black, white, gray will appear very good when the colors are inverted. However, bitmaps with color pixels may not appear as well. Specific bitmaps may be used in this case for dark mode.
     15Buttons that have bitmap images included may not appear properly in dark mode. Most of the standard app button images such as the zero button image // /usr/images/icon_app_btn_zeroX.bmp// have only black, white, and gray pixels. These images will appear very good when the colors are inverted.
     16
     17A new flag value for CFormButton is provided //FORM_BUTTON_BITMAP_NO_INVERT// to prevent the automatic bitmap color invert when in dark mode.
     18
     19Bitmaps with color pixels may not appear as very well when the colors are automatically inverted. Different bitmaps may be specified for the app to use when in dark mode.
    1620{{{
    1721const char* bitmapFile;
     
    2125   bitmapFile = “/usr/images/mybitmap.bmp”;
    2226}
    23 // Then bitmapFile can be used in FORM_ADD_BUTTON2 be sure to OR the flag FORM_BUTTON_BITMAP_NO_INVERT
     27// Use bitmapFile can be in FORM_ADD_BUTTON2 and be sure to OR the flag FORM_BUTTON_BITMAP_NO_INVERT
    2428}}}
    2529