| 147 | void refreshExpandedSubtrees(); |
| 148 | |
| 149 | struct SavedState |
| 150 | { |
| 151 | QString main_tree; |
| 152 | QString current_tab_name; |
| 153 | QTransform view_transform; |
| 154 | QRectF view_area; |
| 155 | std::map<QString, QByteArray> json_states; |
| 156 | bool operator ==( const SavedState& other) const; |
| 157 | bool operator !=( const SavedState& other) const { return !( *this == other); } |
| 158 | }; |
| 159 | |
| 160 | void loadSavedStateFromJson(SavedState state); |
| 161 |
nothing calls this directly
no outgoing calls
no test coverage detected