| 895 | bool isExpanded() const { return mFlags.test(Expanded); } |
| 896 | bool isEditorOnly() const { return mFlags.test( EditorOnly ); } |
| 897 | bool isNameChangeAllowed() const { return !mFlags.test( NoNameChange ); } |
| 898 | bool isAutoDeleted() const { return mFlags.test( AutoDelete ); } |
| 899 | void setSelected(bool sel); |
| 900 | void setExpanded(bool exp) { if(exp) mFlags.set(Expanded); else mFlags.clear(Expanded); } |