| 787 | #ifdef USE_PLACES_FEATURE |
| 788 | private: |
| 789 | struct PlaceStruct { |
| 790 | std::string name; // name of the place |
| 791 | // todo: the path could be relative, better if the app is moved but place path can be outside of the app |
| 792 | std::string path; // absolute path of the place |
| 793 | bool canBeSaved = true; // defined by code, can be used for prevent serialization / deserialization |
| 794 | FileStyle style; |
| 795 | float thickness = 0.0f; // when more than 0.0f, is a separator |
| 796 | }; |
| 797 | |
| 798 | struct GroupStruct { |
| 799 | bool canBeSaved = false; // defined by code, can be used for prevent serialization / deserialization |
nothing calls this directly
no outgoing calls
no test coverage detected