Changes between Version 47 and Version 48 of Docs/825gen2/Dev/UpdatingLegacyAppsToNewLook
- Timestamp:
- 05/07/24 08:47:18 (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/825gen2/Dev/UpdatingLegacyAppsToNewLook
v47 v48 262 262 Legacy code forms normally used fixed X,Y positions. It is often simpler and easier to maintain to just advance the positions. There are cases such as two column menus where at some point between FORM_ADD_BUTTON2 lines the rect position is reset to start the second column. 263 263 264 The style of the buttons is alsochanged from FORM_BUTTON_INVERT to FORM_BUTTON_SHADOW for the new 825gen2 button appearance.264 The style of the buttons should be changed from FORM_BUTTON_INVERT to FORM_BUTTON_SHADOW for the new 825gen2 button appearance. 265 265 266 266 Some apps, especially older ones may use lib825 instead of the newer lib825ev. In addition to CForm (FORM_INIT) a different method of creating forms exists in the older lib825 called !DynamicForm. These apps may also use a C++ class called the Application class. To update apps using lib825 to new style graphics it would be best to convert the app to a lib825ev (event style) app first. Depending on the size of the app this could be a much more involved process.